blob: c9962909c13feb94d2b8e7ba0df7e5edabcd3a60 [file] [log] [blame]
fn sin_67b03c() {
const arg_0 = vec3(1.57079632679000003037);
var res = sin(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
sin_67b03c();
return vec4<f32>();
}
@fragment
fn fragment_main() {
sin_67b03c();
}
@compute @workgroup_size(1)
fn compute_main() {
sin_67b03c();
}