blob: 4b7c4d614143942b5755c071c74f714f54f21832 [file] [log] [blame]
enable f16;
fn floor_84658c() {
var res : vec2<f16> = floor(vec2<f16>(1.5h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
floor_84658c();
return vec4<f32>();
}
@fragment
fn fragment_main() {
floor_84658c();
}
@compute @workgroup_size(1)
fn compute_main() {
floor_84658c();
}