Sign in
dawn
/
dawn
/
563fe25db020e87742d09b0a11db3ec423fa5285
/
.
/
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
);
}