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