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