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