blob: fbe00f8a0827f499dcb407f72f8c8fd495da7f95 [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();
}