Sign in
dawn
/
dawn
/
8527c135e2d9aade0ea08374f6da72aeba49aa45
/
.
/
test
/
tint
/
ptr_ref
/
load
/
param
/
ptr.wgsl.expected.ir.msl
blob: 6b500df2eb23edce5912a0e524b47fe916735626 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
func
(
int
value
,
thread
int
*
const
pointer
)
{
return
(
value
+
(*
pointer
));
}
kernel
void
tint_symbol
()
{
int
i
=
123
;
int
const
r
=
func
(
i
,
(&
i
));
}