blob: 6600c703052efc305b62e0c89e376476fdc6dc00 [file] [log] [blame]
fn floor_3bccc4() {
var arg_0 = vec4<f32>(1.0f);
var res : vec4<f32> = floor(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
floor_3bccc4();
return vec4<f32>();
}
@fragment
fn fragment_main() {
floor_3bccc4();
}
@compute @workgroup_size(1)
fn compute_main() {
floor_3bccc4();
}