dawn-cmake/test/intrinsics/gen/abs/467cd1.wgsl.expected.wgsl

20 lines
278 B
WebGPU Shading Language
Raw Normal View History

fn abs_467cd1() {
var res : u32 = abs(1u);
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
abs_467cd1();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
abs_467cd1();
}
[[stage(compute)]]
fn compute_main() {
abs_467cd1();
}