Sign in
dawn
/
dawn
/
131cbcc6af3cf7e34d41a0e3429e7b8804105ff3
/
.
/
test
/
ptr_ref
/
store
/
param
/
ptr.spvasm.expected.hlsl
blob: 5fafc805b44b716762e9077ea1e54fb4e7c88b87 [
file
] [
log
] [
blame
]
void
func
(
int
value
,
inout
int
pointer
)
{
pointer
=
value
;
return
;
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
int
i
=
0
;
i
=
123
;
func
(
123
,
i
);
return
;
}