dawn-cmake/test/tint/builtins/gen/literal/fma/e17c5c.wgsl.expected.glsl
dan sinclair 724ad2a290 Const eval for fma
This CL adds const-eval for the `fma` builtin.

Bug: tint:1581
Change-Id: Ia4df818fec9d5d969b364b2c165400d787a9e275
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/111584
Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
2022-11-24 21:54:00 +00:00

50 lines
729 B
GLSL

#version 310 es
void fma_e17c5c() {
vec3 res = vec3(2.0f);
}
vec4 vertex_main() {
fma_e17c5c();
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;
void fma_e17c5c() {
vec3 res = vec3(2.0f);
}
void fragment_main() {
fma_e17c5c();
}
void main() {
fragment_main();
return;
}
#version 310 es
void fma_e17c5c() {
vec3 res = vec3(2.0f);
}
void compute_main() {
fma_e17c5c();
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
compute_main();
return;
}