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