Sign in
dawn
/
dawn
/
e2f35ba8e0a4f8f234660c980a1917f5504482a3
/
.
/
test
/
expressions
/
index
/
let
/
param
/
matrix.wgsl.expected.hlsl
blob: 5609c2a96df9b7c673c71a66a0cd0e61871677cd [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
float3 f
(
int
i
)
{
const
float3x3 m
=
float3x3
(
1.0f
,
2.0f
,
3.0f
,
4.0f
,
5.0f
,
6.0f
,
7.0f
,
8.0f
,
9.0f
);
return
m
[
i
];
}