Sign in
chromium
/
external
/
github.com
/
google
/
glslang
/
58d6905ea01f7c44652eb082d26b662ca811df25
/
.
/
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
}