* 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
21 lines
274 B
GLSL
21 lines
274 B
GLSL
#version 310 es
|
|
|
|
#define X 1
|
|
|
|
#if X
|
|
#ifdef Y
|
|
#error This should not show up in pp output.
|
|
#endif
|
|
#error This should show up in pp output.
|
|
#else
|
|
#error This should not show up in pp output.
|
|
#endif
|
|
|
|
#def X
|
|
#if Y
|
|
|
|
#extension a
|
|
|
|
int main() {
|
|
}
|