Sign in
dawn
/
dawn
/
34a2d6574f5cac23a470da7d6496153cfacb09ed
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
var
/
literal
/
matrix.wgsl.expected.msl
blob: 298cde8b9c602d14205f8cec8c9befdb7545a2f5 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
float3 f
()
{
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
));
int
i
=
1
;
return
m
[
i
];
}