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