bloat-buster/dependencies/glslang-15.0.0/Test/negativeArraySize.comp
David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

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
}