From 3012e4e9c9f6dd52c81f4f7477bdfe17e134e883 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Mon, 5 Dec 2011 18:42:38 +0000 Subject: [PATCH] Added GL and CL to Acronyms regex. --- Source/Bind/Utilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Bind/Utilities.cs b/Source/Bind/Utilities.cs index 1bd4fc43..9ddedc56 100644 --- a/Source/Bind/Utilities.cs +++ b/Source/Bind/Utilities.cs @@ -72,7 +72,7 @@ namespace Bind public static readonly Regex Extensions = new Regex( "ARB|EXT|ATIX|ATI|AMDX|AMD|NV|NVX|SUNX|SUN|SGIS|SGIX|SGI|MESAX|MESA|3DFX|IBM|GREMEDY|HP|INTEL|PGI|INGR|APPLE|OML|I3D|ARM|ANGLE|OES|QCOM|VIV|IMG", RegexOptions.Compiled); - public static readonly Regex Acronyms = new Regex(Extensions.ToString() + "|EGL|3TC|DXT|ES|RGBA|BGRA|RGB|BGR|ETC", + public static readonly Regex Acronyms = new Regex(Extensions.ToString() + "|EGL|3TC|DXT|ES|GL|CL|RGBA|BGRA|RGB|BGR|ETC", RegexOptions.Compiled); #region internal StreamReader OpenSpecFile(string file)