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