dawn-cmake/test/tint/builtins/gen/literal/atan2/d983ab.wgsl.expected.wgsl

22 lines
325 B
WebGPU Shading Language
Raw Normal View History

enable f16;
fn atan2_d983ab() {
var res : vec4<f16> = atan2(vec4<f16>(f16()), vec4<f16>(f16()));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan2_d983ab();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atan2_d983ab();
}
@compute @workgroup_size(1)
fn compute_main() {
atan2_d983ab();
}