blob: ac0d7a34a0ee1a4cbcea0c531a91572a029dd245 [file] [log] [blame]
fn sin_15b2c6() {
var res = sin(vec4(1.57079632679));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
sin_15b2c6();
return vec4<f32>();
}
@fragment
fn fragment_main() {
sin_15b2c6();
}
@compute @workgroup_size(1)
fn compute_main() {
sin_15b2c6();
}