Sign in
dawn
/
dawn
/
84749a8ee541b57578758d68ba4a5a034edfaacb
/
.
/
test
/
tint
/
ptr_sugar
/
vector_member.wgsl.expected.dxc.hlsl
blob: b9ff0dcebe02c2cd677d7a971645cc27a938b822 [
file
] [
log
] [
blame
]
void
deref
()
{
int3 a
=
int3
(
0
,
0
,
0
);
int
b
=
a
.
x
;
a
.
x
=
42
;
}
void
no_deref
()
{
int3 a
=
int3
(
0
,
0
,
0
);
int
b
=
a
.
x
;
a
.
x
=
42
;
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
deref
();
no_deref
();
return
;
}