Sign in
dawn
/
dawn.git
/
b6a3a7e82c4e91c5ac9aeae3e754edf513b5e491
/
.
/
test
/
tint
/
shadowing
/
struct
/
param.wgsl.expected.msl
blob: a1b54083674ec466a0e42303751afc2459ba9caf [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
a
{
int
a
;
};
void
f
(
a a_1
)
{
a
const
b
=
a_1
;
}
[[
max_total_threads_per_threadgroup
(
1
)]]
kernel
void
v
()
{
f
(
a
{});
}