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

11 lines
97 B
HLSL

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