Sign in
dawn
/
dawn
/
3505ed4c5fc1eb6532562b14a77627249839843e
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_with_matrix.wgsl.expected.ir.msl
blob: 1975889293b6343eccce65abfe161797d025cd40 [
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
];
}