mirror of
https://github.com/RPCS3/glslang.git
synced 2025-01-14 14:58:00 +00:00
11 lines
139 B
Plaintext
11 lines
139 B
Plaintext
|
#version 310 es
|
||
|
|
||
|
#ifdef GL_ES
|
||
|
precision mediump float;
|
||
|
#endif
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
float f[-2]; // cannot declare arrays with negative size
|
||
|
}
|