Sign in
dawn
/
dawn
/
1ddb39c14b3aff8d9099e75bebb1ed3efa75a46b
/
.
/
test
/
tint
/
expressions
/
index
/
var
/
struct_with_matrix.wgsl.expected.msl
blob: 47a1ae9661b38771f7008c37b0d0067220ace85b [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
S
{
int
m
;
float4x4 n
;
};
float
f
()
{
S a
=
S
{};
return
a
.
n
[
2
][
1
];
}