Sign in
dawn
/
dawn
/
e2f35ba8e0a4f8f234660c980a1917f5504482a3
/
.
/
test
/
bug
/
tint
/
492.wgsl.expected.wgsl
blob: 181e7e6c8ac738d74e1662a2c056a1358009361d [
file
] [
log
] [
blame
]
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
;
}