dawn-cmake/test/tint/expressions/zero_init/struct/array.wgsl.expected.msl

16 lines
161 B
Plaintext
Raw Normal View History

#include <metal_stdlib>
using namespace metal;
struct tint_array_wrapper {
float arr[4];
};
struct S {
tint_array_wrapper a;
};
void f() {
S v = {};
}