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