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