dawn-cmake/test/intrinsics/gen/acos/a610c4.wgsl.expected.wgsl

20 lines
298 B
WebGPU Shading Language
Raw Normal View History

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