Sign in
dawn
/
dawn
/
refs/heads/chromium/5074
/
.
/
test
/
tint
/
expressions
/
index
/
var
/
literal
/
matrix.wgsl.expected.msl
blob: e37137bb74a532d08e60c58c86451f54b4f7f0b4 [
file
] [
log
] [
blame
] [
edit
]
#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
];
}