dawn-cmake/test/intrinsics/gen/floor/66f154.wgsl.expected.wgsl

20 lines
289 B
WebGPU Shading Language

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