blob: a4ce7b9ae75d256b18f8014017a610ea89b70b93 [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);
}