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