dawn-cmake/test/tint/builtins/gen/var/asin/064953.wgsl.expected.wgsl

21 lines
326 B
WebGPU Shading Language
Raw Normal View History

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