mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +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
|
||
|
}
|