12 lines
124 B
HLSL
12 lines
124 B
HLSL
|
struct S {
|
||
|
int m;
|
||
|
};
|
||
|
|
||
|
static S A[4] = (S[4])0;
|
||
|
|
||
|
void f() {
|
||
|
const S tint_symbol = {1};
|
||
|
A[0] = tint_symbol;
|
||
|
return;
|
||
|
}
|