Sign in
dawn
/
dawn
/
b95a03a6a7304c7d935569fec0687bd384c940fb
/
.
/
test
/
tint
/
ptr_ref
/
store
/
param
/
ptr.wgsl.expected.ir.dxc.hlsl
blob: 66f4786183577afdff0f890fa1ad2ce42e4741d2 [
file
] [
log
] [
blame
]
void
func
(
int
value
,
inout
int
pointer
)
{
pointer
=
value
;
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
int
i
=
int
(
123
);
func
(
int
(
123
),
i
);
}