dawn-cmake/test/tint/builtins/gen/var/atanh/7997d8.wgsl.expected.glsl
Ben Clayton 95dd428c75 tint/intrinsics.def: Add @test_value() annotation
Specifies the value to use for argument values when generating end-to-end tests.

Use this to provide a legal value for atanh().

Change-Id: I008050c856f9d687ab918c68e90678c4e74f3a1d
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/106887
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
2022-10-25 13:08:45 +00:00

65 lines
1.0 KiB
GLSL

#version 310 es
float tint_atanh(float x) {
return ((x >= 1.0f) ? 0.0f : atanh(x));
}
void atanh_7997d8() {
float arg_0 = 0.5f;
float res = tint_atanh(arg_0);
}
vec4 vertex_main() {
atanh_7997d8();
return vec4(0.0f);
}
void main() {
gl_PointSize = 1.0;
vec4 inner_result = vertex_main();
gl_Position = inner_result;
gl_Position.y = -(gl_Position.y);
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
return;
}
#version 310 es
precision mediump float;
float tint_atanh(float x) {
return ((x >= 1.0f) ? 0.0f : atanh(x));
}
void atanh_7997d8() {
float arg_0 = 0.5f;
float res = tint_atanh(arg_0);
}
void fragment_main() {
atanh_7997d8();
}
void main() {
fragment_main();
return;
}
#version 310 es
float tint_atanh(float x) {
return ((x >= 1.0f) ? 0.0f : atanh(x));
}
void atanh_7997d8() {
float arg_0 = 0.5f;
float res = tint_atanh(arg_0);
}
void compute_main() {
atanh_7997d8();
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
compute_main();
return;
}