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