blob: 2d79ef832d63ef0ad04cd1a76d07c5d7c244e173 [file] [log] [blame]
enable f16;
fn modf_a545b9() {
var res = modf(vec2<f16>(-(1.5h)));
}
@fragment
fn fragment_main() {
modf_a545b9();
}
@compute @workgroup_size(1)
fn compute_main() {
modf_a545b9();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
modf_a545b9();
return out;
}