Sign in
dawn
/
dawn
/
144ebed4c7ee7c6ecddeedfa81d607bbf256e8f2
/
.
/
test
/
tint
/
builtins
/
frexp
/
scalar
/
const.wgsl.expected.dxc.hlsl
blob: 88afcbf118c3042a1f1c10c025c14876366cf051 [
file
] [
log
] [
blame
]
struct
frexp_result_f32
{
float
fract
;
int
exp
;
};
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
frexp_result_f32 res
=
{
0.625f
,
1
};
float
fract
=
res
.
fract
;
int
exp
=
res
.
exp
;
return
;
}