blob: e8efa0ef7b0afe22a33c4b1083ccab534de1ff53 [file] [log] [blame]
fn radians_09b7fc() {
var res : vec4<f32> = radians(vec4<f32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
radians_09b7fc();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
radians_09b7fc();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
radians_09b7fc();
}