Sign in
dawn
/
dawn
/
144ebed4c7ee7c6ecddeedfa81d607bbf256e8f2
/
.
/
test
/
tint
/
builtins
/
modf
/
vector
/
const.wgsl.expected.fxc.hlsl
blob: 5bf91602f6488814b94f78cc35a3f49be8b98184 [
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
;
return
;
}