Sign in
dawn
/
dawn
/
144ebed4c7ee7c6ecddeedfa81d607bbf256e8f2
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
param
/
matrix.wgsl.expected.ir.msl
blob: 9be4acfaa8e0cf09933faf8f1ff80843278ff47d [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
float3 f
(
int
i
)
{
float3x3
const
m
=
float3x3
(
float3
(
1.0f
,
2.0f
,
3.0f
),
float3
(
4.0f
,
5.0f
,
6.0f
),
float3
(
7.0f
,
8.0f
,
9.0f
));
return
m
[
i
];
}