blob: 472008bd2f6c60ea94a2515c2e31f6073d6ca69f [file] [log] [blame]
fn frexp_6fb3ad() {
var res = frexp(vec2(1.0));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
frexp_6fb3ad();
return vec4<f32>();
}
@fragment
fn fragment_main() {
frexp_6fb3ad();
}
@compute @workgroup_size(1)
fn compute_main() {
frexp_6fb3ad();
}