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