blob: 4b354c06dc8dd2c4045e3ef14d31fbe7e75e7209 [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();
}