Sign in
dawn
/
dawn
/
45cd391d56356c62c08672f6f86fe7fdd30e4e13
/
.
/
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
;
}