Sign in
dawn
/
dawn
/
4fea9d0fbbcd1a88cf59e8b39ff7064a16e46a19
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
literal
/
matrix.wgsl.expected.fxc.hlsl
blob: ad2d36bf305608b1c096a54a9b7bce7a0fe070e2 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
float3 f
()
{
const
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
];
}