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

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() {
}