blob: 26ed357687250095bd9c9457b19ec3b96c88d353 [file] [log] [blame]
fn frexp_34bbfb() {
var res = frexp(vec4(1.0));
}
@fragment
fn fragment_main() {
frexp_34bbfb();
}
@compute @workgroup_size(1)
fn compute_main() {
frexp_34bbfb();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
frexp_34bbfb();
return out;
}