Sign in
dawn
/
dawn
/
08f33fe5c6daea5cede4c1a5ac891fd3bf975c31
/
.
/
test
/
tint
/
identifiers
/
underscore
/
prefix
/
lower
/
const.wgsl.expected.wgsl
blob: 9897019a8675b9b6eb2e6929604a529813ceef26 [
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
);
}