18 lines
198 B
Plaintext
18 lines
198 B
Plaintext
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
struct S {
|
||
|
int m;
|
||
|
};
|
||
|
|
||
|
S A[4] = S[4](S(0), S(0), S(0), S(0));
|
||
|
void f() {
|
||
|
S tint_symbol = S(1);
|
||
|
A[0] = tint_symbol;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
f();
|
||
|
return;
|
||
|
}
|