blob: fee1a69f80ac4892545742856b2146b10c865908 [file] [log] [blame]
struct frexp_result_f32 {
f : f32,
}
var<private> a : frexp_result_f32;
var<private> b = frexp(1);
@fragment
fn main() -> @location(0) vec4f {
return vec4f(a.f, b.fract, 0, 0);
}