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