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