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