Sign in
dawn
/
dawn
/
26cba1cb3925a46e2be60656d2e407e10ce243a1
/
.
/
test
/
tint
/
statements
/
compound_assign
/
function.wgsl.expected.msl
blob: 608c013c0080abfce9f28e553591980857a7984c [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
void
foo
()
{
int
a
=
0
;
float4 b
=
0.0f
;
float2x2 c
=
float2x2
(
0.0f
);
a
=
(
a
/
2
);
b
=
(
b
*
float4x4
());
c
=
(
c
*
2.0f
);
}