Skip to content

Commit 823ad4d

Browse files
committed
fix grammar references
1 parent 947c2af commit 823ad4d

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

glsl-transformer/src/main/antlr/GLSLParser.g4

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ translationUnit: versionStatement? externalDeclaration* EOF;
3636
//allows for EXT_null_initializer
3737
versionStatement:
3838
NR VERSION version = (
39-
NR_GL_110
40-
| NR_GL_120
41-
| NR_GLES_100
42-
| NR_GL_130
43-
| NR_GL_140
44-
| NR_GL_150
45-
| NR_GL_330
46-
| NR_GLES_300
47-
| NR_GLES_310
48-
| NR_GLES_320
49-
| NR_GL_400
50-
| NR_GL_410
51-
| NR_GL_420
52-
| NR_GL_430
53-
| NR_GL_440
54-
| NR_GL_450
55-
| NR_GL_460
39+
NR_GLSL_110
40+
| NR_GLSL_120
41+
| NR_GLSLES_100
42+
| NR_GLSL_130
43+
| NR_GLSL_140
44+
| NR_GLSL_150
45+
| NR_GLSL_330
46+
| NR_GLSLES_300
47+
| NR_GLSLES_310
48+
| NR_GLSLES_320
49+
| NR_GLSL_400
50+
| NR_GLSL_410
51+
| NR_GLSL_420
52+
| NR_GLSL_430
53+
| NR_GLSL_440
54+
| NR_GLSL_450
55+
| NR_GLSL_460
5656
) profile = (NR_CORE | NR_COMPATIBILITY | NR_ES)? NR_EOL;
5757

5858
externalDeclaration:

0 commit comments

Comments
 (0)