Sign in
dawn
/
dawn
/
b82f788f9d8dfc3f7c35723f0a9a1a36ff8fe97f
/
.
/
test
/
tint
/
builtins
/
frexp.wgsl
blob: bef5b8d85378e1bf16a2f7e79efc8e9529afadf8 [
file
] [
log
] [
blame
]
@compute
@workgroup_size
(
1
)
fn main
()
{
let
res
=
frexp
(
1.23
);
let
exp
:
i32
=
res
.
exp
;
let
fract
:
f32
=
res
.
fract
;
}