Sign in
dawn
/
dawn
/
c223ae26ec19db3a1b3a5ce0c8c19e234037da1d
/
.
/
test
/
tint
/
builtins
/
modf
/
vector
/
const.wgsl.expected.fxc.hlsl
blob: 4802ed2943293bf8c8215ff85dd259fb75cc71a7 [
file
] [
log
] [
blame
]
struct
modf_result_vec2_f32
{
float2 fract
;
float2 whole
;
};
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
const
modf_result_vec2_f32 res
=
{
float2
(
0.25f
,
0.75f
),
float2
(
1.0f
,
3.0f
)};
const
float2 fract
=
res
.
fract
;
const
float2 whole
=
res
.
whole
;
return
;
}