blob: 44474e21d72ca54dd27f06140cdf4985bdfcd49b [file] [log] [blame]
fn sin_68d3ab() {
var res = sin(vec2(1.57079632679000003037));
}
@fragment
fn fragment_main() {
sin_68d3ab();
}
@compute @workgroup_size(1)
fn compute_main() {
sin_68d3ab();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
sin_68d3ab();
return out;
}