blob: 2ab46123e55d24b9f25b3a1e9465d7bbc0b798c5 [file] [log] [blame]
fn modf_4bfced() {
var res = modf(vec4<f32>(-(1.5f)));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
modf_4bfced();
return vec4<f32>();
}
@fragment
fn fragment_main() {
modf_4bfced();
}
@compute @workgroup_size(1)
fn compute_main() {
modf_4bfced();
}