Sign in
chromium
/
external
/
github.com
/
KhronosGroup
/
glslang.git
/
HEAD
/
.
/
Test
/
negativeArraySize.comp
blob: 20636c0a7d01c99bf03d1f7a0a98d0d1c70086f3 [
file
] [
log
] [
blame
]
#version 310 es
#ifdef
GL_ES
precision mediump
float
;
#endif
void
main
()
{
float
f
[-
2
];
// cannot declare arrays with negative size
}