Sign in
dawn
/
tint
/
b1d2b84f7dcbe753f625c17885866233732e3148
/
.
/
test
/
expressions
/
index
/
let
/
let
/
param
/
array.wgsl
blob: b4f524bfc852070c395d8e2f31c5a938408da89d [
file
] [
log
] [
blame
]
fn f
(
x
:
i32
)
->
i32
{
let
a
=
array
<
i32
,
8
>(
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
);
let
i
=
x
;
return
a
[
i
];
}