Sign in
dawn
/
dawn
/
3ddc07a18b8a22570ffe1e93f0a11d036462c192
/
.
/
test
/
tint
/
expressions
/
index
/
var
/
literal
/
matrix.wgsl.expected.ir.msl
blob: 9983768db2d561e16842e4d3e94b6cd361d5d7e5 [
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
));
return
m
[
1
];
}