Sign in
dawn
/
dawn
/
refs/heads/chromium/5074
/
.
/
test
/
tint
/
expressions
/
index
/
var
/
literal
/
matrix.wgsl.expected.hlsl
blob: 7b1ea5a0e11051185a235a847f97b7363075cd12 [
file
] [
log
] [
blame
] [
edit
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
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
];
}