blob: 0168f26375e4773228b075db043075a9bc3cbcce [file] [log] [blame]
fn sin_fc8bc4() {
var arg_0 = vec2<f32>();
var res : vec2<f32> = sin(arg_0);
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
sin_fc8bc4();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
sin_fc8bc4();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
sin_fc8bc4();
}