Sign in
dawn
/
tint
/
refs/heads/chromium/4867
/
.
/
test
/
bug
/
tint
/
492.wgsl
blob: 48ae3df84e28e5f580c2f06be1b3225ea9e2ea1b [
file
] [
log
] [
blame
] [
edit
]
struct
S
{
a
:
i32
;
};
@group
(
0
)
@binding
(
0
)
var
<
storage
,
read_write
>
buf
:
S
;
@stage
(
compute
)
@workgroup_size
(
1
)
fn main
()
{
let
p
:
ptr
<
storage
,
i32
,
read_write
>
=
&
buf
.
a
;
*
p
=
12
;
}