Sign in
dawn
/
dawn
/
68439bfe9ab50197f3727dfc0bdd878be609eefc
/
.
/
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
];
}