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