enable f16; | |
fn frexp_5257dd() { | |
var res = frexp(1.0h); | |
} | |
@fragment | |
fn fragment_main() { | |
frexp_5257dd(); | |
} | |
@compute @workgroup_size(1) | |
fn compute_main() { | |
frexp_5257dd(); | |
} | |
struct VertexOutput { | |
@builtin(position) | |
pos : vec4<f32>, | |
} | |
@vertex | |
fn vertex_main() -> VertexOutput { | |
var out : VertexOutput; | |
out.pos = vec4<f32>(); | |
frexp_5257dd(); | |
return out; | |
} |