mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 09:35:57 +00:00
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>
65 lines
1.1 KiB
GLSL
65 lines
1.1 KiB
GLSL
#version 310 es
|
|
|
|
vec2 tint_atanh(vec2 x) {
|
|
return mix(atanh(x), vec2(0.0f), greaterThanEqual(x, vec2(1.0f)));
|
|
}
|
|
|
|
void atanh_c0e634() {
|
|
vec2 arg_0 = vec2(0.5f);
|
|
vec2 res = tint_atanh(arg_0);
|
|
}
|
|
|
|
vec4 vertex_main() {
|
|
atanh_c0e634();
|
|
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;
|
|
|
|
vec2 tint_atanh(vec2 x) {
|
|
return mix(atanh(x), vec2(0.0f), greaterThanEqual(x, vec2(1.0f)));
|
|
}
|
|
|
|
void atanh_c0e634() {
|
|
vec2 arg_0 = vec2(0.5f);
|
|
vec2 res = tint_atanh(arg_0);
|
|
}
|
|
|
|
void fragment_main() {
|
|
atanh_c0e634();
|
|
}
|
|
|
|
void main() {
|
|
fragment_main();
|
|
return;
|
|
}
|
|
#version 310 es
|
|
|
|
vec2 tint_atanh(vec2 x) {
|
|
return mix(atanh(x), vec2(0.0f), greaterThanEqual(x, vec2(1.0f)));
|
|
}
|
|
|
|
void atanh_c0e634() {
|
|
vec2 arg_0 = vec2(0.5f);
|
|
vec2 res = tint_atanh(arg_0);
|
|
}
|
|
|
|
void compute_main() {
|
|
atanh_c0e634();
|
|
}
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void main() {
|
|
compute_main();
|
|
return;
|
|
}
|