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