blob: 2b68c9a79bd2be14cc3fac87e379559fb5e94460 [file] [log] [blame]
fn reflect_bba2d0() {
const arg_0 = vec2(1.0);
const arg_1 = vec2(1.0);
var res = reflect(arg_0, arg_1);
}
@fragment
fn fragment_main() {
reflect_bba2d0();
}
@compute @workgroup_size(1)
fn compute_main() {
reflect_bba2d0();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
reflect_bba2d0();
return out;
}