13 lines
119 B
Plaintext
13 lines
119 B
Plaintext
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
const int a = 1;
|
||
|
void f() {
|
||
|
int b = a;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
f();
|
||
|
return;
|
||
|
}
|