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