Sign in
dawn
/
dawn
/
08f33fe5c6daea5cede4c1a5ac891fd3bf975c31
/
.
/
test
/
tint
/
identifiers
/
underscore
/
prefix
/
lower
/
var.wgsl.expected.dxc.hlsl
blob: 87778e3d2ade0faa0e240e2b523e901b57bfd4dc [
file
] [
log
] [
blame
]
RWByteAddressBuffer
s
:
register
(
u0
);
static
int
a
=
1
;
static
int
_a
=
2
;
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
int
b
=
a
;
int
_b
=
_a
;
s
.
Store
(
0u
,
asuint
((
b
+
_b
)));
return
;
}