Sign in
dawn
/
dawn
/
59a72c3ed02671b658ce4e20b4abcd550e66fb4e
/
.
/
test
/
tint
/
ptr_ref
/
store
/
param
/
function
/
i32.wgsl.expected.msl
blob: 973574cb2e61ffcbf5ada70468a38ba062d8cb92 [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
void
func
(
thread
int
*
const
pointer
)
{
(*
pointer
)
=
42
;
}
kernel
void
v
()
{
int
F
=
0
;
func
((&
F
));
}