dawn-cmake/test/tint/builtins/gen/var/floor/66f154.wgsl.expected.wgsl

21 lines
317 B
WebGPU Shading Language
Raw Normal View History

fn floor_66f154() {
var arg_0 = 1.0;
var res : f32 = floor(arg_0);
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
floor_66f154();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
floor_66f154();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
floor_66f154();
}