Sign in
dawn
/
tint.git
/
131cbcc6af3cf7e34d41a0e3429e7b8804105ff3
/
.
/
test
/
bug
/
tint
/
492.wgsl
blob: 453796bf188eaccefa647e2c8bf4702a28c2376b [
file
] [
log
] [
blame
]
[[
block
]]
struct
S
{
a
:
i32
;
};
[[
group
(
0
),
binding
(
0
)]]
var
<storage>
buf
:
[[
access
(
read_write
)]]
S
;
[[
stage
(
compute
)]]
fn main
()
{
let
p
:
ptr
<
storage
,
i32
>
=
&
buf
.
a
;
*
p
=
12
;
}