Sign in
dawn
/
dawn
/
a5ded402136cc3e734bcf5692c3534f7aa2e5afd
/
.
/
test
/
tint
/
builtins
/
frexp.wgsl.expected.dxc.hlsl
blob: 83b4db5602a9af9d19efc3fefb6834635b2f3d85 [
file
] [
log
] [
blame
]
struct
frexp_result_f32
{
float
fract
;
int
exp
;
};
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
frexp_result_f32 res
=
{
0.61500000953674316406f
,
1
};
int
exp
=
res
.
exp
;
float
fract
=
res
.
fract
;
return
;
}