Sign in
dawn
/
tint.git
/
9566742f2ab367ea61fd22ee4ec4fc3cc365a800
/
.
/
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
;
}