dawn-cmake/test/intrinsics/gen/atan/a8b696.wgsl.expected.wgsl

20 lines
317 B
WebGPU Shading Language
Raw Normal View History

fn atan_a8b696() {
var res : vec4<f32> = atan(vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
atan_a8b696();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
atan_a8b696();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
atan_a8b696();
}