Fix for ID: 3109711 - GL_DOUBLE_MATNxM undeclared

git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@633 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
nigels 2010-11-17 16:43:27 +00:00
parent a758e323b6
commit 1abca93f6a
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ my %regex = (
prefix => qr/^(?:[aw]?gl|glX)/, # gl | agl | wgl | glX prefix => qr/^(?:[aw]?gl|glX)/, # gl | agl | wgl | glX
tprefix => qr/^(?:[AW]?GL|GLX)_/, # GL_ | AGL_ | WGL_ | GLX_ tprefix => qr/^(?:[AW]?GL|GLX)_/, # GL_ | AGL_ | WGL_ | GLX_
section => compile_regex('^(', join('|', @sections), ')$'), # sections in spec section => compile_regex('^(', join('|', @sections), ')$'), # sections in spec
token => qr/^([A-Z0-9][A-Z0-9_]*):?\s+((?:0x)?[0-9A-F]+)(.*)$/, # define tokens token => qr/^([A-Z0-9][A-Z0-9_x]*):?\s+((?:0x)?[0-9A-F]+)(.*)$/, # define tokens
types => compile_regex('\b(', join('|', keys %typemap), ')\b'), # var types types => compile_regex('\b(', join('|', keys %typemap), ')\b'), # var types
voidtype => compile_regex('\b(', keys %voidtypemap, ')\b '), # void type voidtype => compile_regex('\b(', keys %voidtypemap, ')\b '), # void type
); );