Sign in
dawn
/
dawn
/
4682cb33b38544e8fdbff058b0a42eec05ffed63
/
.
/
test
/
tint
/
ptr_ref
/
store
/
param
/
function
/
vec4_f32.wgsl.expected.msl
blob: 277a19af9bdaebc551aaa1e7d854ac079565dbe2 [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
void
func
(
thread float4
*
const
pointer
)
{
(*
pointer
)
=
float4
(
0.0f
);
}
[[
max_total_threads_per_threadgroup
(
1
)]]
kernel
void
v
()
{
float4 F
=
0.0f
;
(
func
((&
F
)));
}