dawn-cmake/test/tint/builtins/gen/var/smoothstep/586e12.wgsl.expected.wgsl

25 lines
389 B
WebGPU Shading Language

enable f16;
fn smoothstep_586e12() {
var arg_0 = 1.0h;
var arg_1 = 1.0h;
var arg_2 = 1.0h;
var res : f16 = smoothstep(arg_0, arg_1, arg_2);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
smoothstep_586e12();
return vec4<f32>();
}
@fragment
fn fragment_main() {
smoothstep_586e12();
}
@compute @workgroup_size(1)
fn compute_main() {
smoothstep_586e12();
}