Sign in
dawn
/
dawn
/
c908e43a0890bded45ae548468d24cda7ba3fabe
/
.
/
test
/
tint
/
ptr_ref
/
load
/
param
/
function
/
i32.wgsl.expected.msl
blob: 65e221139708b2ed5c7a41a8d61227f0a3549b70 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
func
(
thread
int
*
const
pointer
)
{
return
(*
pointer
);
}
kernel
void
v
()
{
int
F
=
0
;
int
const
r
=
func
((&
F
));
}