dawn-cmake/test/builtins/gen/atan/02979a.wgsl.expected.wgsl

20 lines
291 B
WebGPU Shading Language
Raw Normal View History

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