dawn-cmake/test/tint/builtins/gen/literal/length/3f0e13.wgsl.expected.wgsl
Antonio Maiorano 92d858ac3c tint: const eval of length builtin
Bug: tint:1581
Change-Id: Ie6dc9da6b48c606af03da023c835ec36a99dd362
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/110981
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
2022-11-23 00:00:45 +00:00

22 lines
305 B
WebGPU Shading Language

enable f16;
fn length_3f0e13() {
var res : f16 = length(vec2<f16>(0.0h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
length_3f0e13();
return vec4<f32>();
}
@fragment
fn fragment_main() {
length_3f0e13();
}
@compute @workgroup_size(1)
fn compute_main() {
length_3f0e13();
}