Sign in
dawn
/
dawn
/
ab0f7da790c91c8a46925f9d40c2443a94de59ee
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_with_vector.wgsl.expected.msl
blob: 4954dedb1f45ac3c61b4afae608fff9b466156f5 [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
S
{
int
m
;
uint3 n
;
};
uint
f
()
{
S
const
a
=
S
{};
return
a
.
n
.
z
;
}
[[
max_total_threads_per_threadgroup
(
1
)]]
kernel
void
v
()
{
f
();
}