Sign in
dawn
/
dawn
/
81d4ed0d9c0e87962a46ee4cdec69adcb0247217
/
.
/
test
/
bug
/
tint
/
492.wgsl
blob: 855a8d5919d19eb248fca01c858b412dd09a94a0 [
file
] [
log
] [
blame
]
[[
block
]]
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
;
}