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