Sign in
dawn
/
dawn
/
9803d6c955ca2de17c0155011f228fa5c0fb325f
/
.
/
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
;
}