blob: 26fd4da046a94901f61bb75eedbe1272d45f48a9 [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)]]
fn compute_main() {
sin_fc8bc4();
}