Sign in
dawn
/
tint
/
refs/heads/chromium/4875
/
.
/
test
/
builtins
/
arrayLength
/
simple.wgsl.expected.wgsl
blob: f9fdd9145e09475fb6db645de35ae1e9d22d9409 [
file
] [
log
] [
blame
] [
edit
]
struct
S
{
a
:
array
<i32>
;
}
@group
(
0
)
@binding
(
0
)
var
<
storage
,
read
>
G
:
S
;
@stage
(
compute
)
@workgroup_size
(
1
)
fn main
()
{
let
l1
:
u32
=
arrayLength
(&(
G
.
a
));
}