blob: 30e0918779e624520e9d7d5293acef4d3c1d8e34 [file] [log] [blame]
fn sin_fc8bc4() {
var res : vec2<f32> = sin(vec2<f32>());
}
@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();
}