mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
c555dddd53
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31508 e7fa87d3-cd2b-0410-9028-fcbf551c1848
40 lines
316 B
GLSL
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
|
|
|