Sign in
dawn
/
tint
/
b4cd255c6ecc8db6d49274b8de378b33c478c629
/
.
/
test
/
expressions
/
index
/
let
/
literal
/
matrix.wgsl.expected.msl
blob: 92a23c43b303b5118d98b8aeebca4c75feed6d0c [
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
));
return
m
[
1
];
}