dawn-cmake/test/intrinsics/gen/trunc/562d05.wgsl.expected.wgsl

20 lines
303 B
WebGPU Shading Language

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