dawn-cmake/test/tint/builtins/gen/literal/asinh/180015.wgsl.expected.wgsl

20 lines
267 B
WebGPU Shading Language

fn asinh_180015() {
var res = asinh(1);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
asinh_180015();
return vec4<f32>();
}
@fragment
fn fragment_main() {
asinh_180015();
}
@compute @workgroup_size(1)
fn compute_main() {
asinh_180015();
}