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