Sign in
dawn
/
dawn
/
ec3114d8dfea35324bcc4e76c8eb45976c2751a2
/
.
/
test
/
tint
/
expressions
/
index
/
var
/
param
/
matrix.wgsl.expected.fxc.hlsl
blob: 6bdc009b25f875a5acf65a11b9dad58ea28a0985 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
float3 f
(
int
i
)
{
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
[
min
(
uint
(
i
),
2u
)];
}