Sign in
dawn
/
dawn
/
3ddc07a18b8a22570ffe1e93f0a11d036462c192
/
.
/
test
/
tint
/
identifiers
/
underscore
/
double
/
const.wgsl
blob: c360515c1ac9b3aec0930dee89cdc0c98cc554ff [
file
] [
log
] [
blame
]
@group
(
0
)
@binding
(
0
)
var
<
storage
,
read_write
>
s
:
i32
;
const
a
:
i32
=
1
;
const
a__
:
i32
=
2
;
@compute
@workgroup_size
(
1
)
fn f
()
{
const
b
=
a
;
const
b__
=
a__
;
s
=
b
+
b__
;
}