Sign in
dawn
/
dawn
/
81850b7c94de7d14e9c58323b1840d658714a139
/
.
/
test
/
tint
/
identifiers
/
underscore
/
prefix
/
upper
/
fn.wgsl.expected.msl
blob: fcd5d0fc6ea287cff090329f30b3b4d6f4f46d4e [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
void
A
()
{
}
void
_A
()
{
}
void
B
()
{
(
A
());
}
void
_B
()
{
(
_A
());
}
[[
max_total_threads_per_threadgroup
(
1
)]]
kernel
void
v
()
{
(
B
());
(
_B
());
}