dawn-cmake/test/var/initialization/function/struct.wgsl.expected.hlsl

12 lines
102 B
HLSL

struct S {
int a;
float b;
};
[numthreads(1, 1, 1)]
void main() {
S v = (S)0;
v;
return;
}