blob: a6572f7b07cf4e8c1c4890d243cea489413df42b [file] [log] [blame]
fn radians_524a91() {
const arg_0 = vec4(1.0);
var res = radians(arg_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;
}