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