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