Sign in
dawn
/
dawn.git
/
0d9a1c7b4e86bb74e4c6dbf78bf0d1facf2bc5fa
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
vec3-vec3
/
i32.wgsl.expected.fxc.hlsl
blob: 46dc2f9c10e1fb934141af47de5c926c8c123df8 [
file
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
int3 a
=
int3
(
int
(
1
),
int
(
2
),
int
(
3
));
int3 b
=
int3
(
int
(
4
),
int
(
5
),
int
(
6
));
int3 r
=
asint
((
asuint
(
a
)
-
asuint
(
b
)));
}