Sign in
dawn
/
dawn
/
6251598ad2954427c352c7c36db7af27934cdc9c
/
.
/
test
/
tint
/
statements
/
decrement
/
split.wgsl.expected.msl
blob: e55cc92f0808fda89fda8259f65313b8faff856c [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
tint_unary_minus
(
const
int
v
)
{
return
select
(-
v
,
v
,
v
==
-
2147483648
);
}
void
tint_symbol
()
{
int
b
=
2
;
int
c
=
as_type
<int>
((
as_type
<uint>
(
b
)
-
as_type
<uint>
(
tint_unary_minus
(
b
))));
}