* Update SPIRV libraries - Update `spirv-cross` - Update `spirv-tools` - Update `glslang` `spirv-tools` contains a fix for an issue we reported (unnecessary promotions to highp in certain expressions). * Add SPIRV-Tools dependency to matinfo
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
|
|
}
|