Sign in
dawn
/
dawn
/
f6f72521a6ea899eaaa7ee972bb828d8eeb51fc6
/
.
/
test
/
tint
/
statements
/
compound_assign
/
function.wgsl.expected.ir.msl
blob: 77453be4481e48b39fbed13405eb87138c2c87a9 [
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
(
float4
(
0.0f
),
float4
(
0.0f
),
float4
(
0.0f
),
float4
(
0.0f
)));
c
=
(
c
*
2.0f
);
}