blob: e7c63f297b2a74537e42a93e9e7f0f29210b7e23 [file] [log] [blame]
fn sqrt_4ac2c5() {
var res = sqrt(vec4(1.0));
}
@fragment
fn fragment_main() {
sqrt_4ac2c5();
}
@compute @workgroup_size(1)
fn compute_main() {
sqrt_4ac2c5();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
sqrt_4ac2c5();
return out;
}