20 lines
158 B
Plaintext
20 lines
158 B
Plaintext
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
struct S2 {
|
||
|
int m;
|
||
|
};
|
||
|
|
||
|
struct S1 {
|
||
|
S2 m;
|
||
|
};
|
||
|
|
||
|
void f() {
|
||
|
S1 v = S1(S2(0));
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
f();
|
||
|
return;
|
||
|
}
|