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