dawn-cmake/test/tint/builtins/gen/literal/saturate/cd2028.wgsl.expected.wgsl

22 lines
322 B
WebGPU Shading Language
Raw Normal View History

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