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