dawn-cmake/test/intrinsics/gen/sin/fc8bc4.wgsl.expected.wgsl

20 lines
293 B
WebGPU Shading Language

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