Sign in
dawn
/
dawn
/
7d34de88f1752c1119f33a444b5383c8510e78e5
/
.
/
test
/
tint
/
expressions
/
binary
/
mod
/
scalar-vec3
/
i32.wgsl.expected.fxc.hlsl
blob: 847b0fbbe280f804cbddefa95e6c04ccb591ab41 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
int
a
=
4
;
const
int3 b
=
int3
(
1
,
2
,
3
);
const
int3 r
=
(
a
%
(
b
==
int3
(
0
,
0
,
0
)
?
int3
(
1
,
1
,
1
)
:
b
));
return
;
}