Files
filament/third_party/glslang/Test/preprocessor.line.vert
Romain Guy 9f2592ed9d Update SPIRV libraries (#99)
* 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
2018-08-15 12:59:17 -07:00

40 lines
316 B
GLSL

#line 300
#line 2
#line __LINE__ + 3
#line __FILE__ + 2
#line __FILE__ * __LINE__
#define X 4
#line X
#undef X
#define X(y) y + 3 + 2
#line X(3)
void main() {
gl_Position = vec4(__LINE__);
}
#line X(3) 4
#define Z(y, q) \
y*q*2 q
#line Z(2, 3)
#line 1