diff --git a/Source/Bind/ES/ES2Generator.cs b/Source/Bind/ES/ES2Generator.cs index ccfafe4e..e54f37d4 100644 --- a/Source/Bind/ES/ES2Generator.cs +++ b/Source/Bind/ES/ES2Generator.cs @@ -25,6 +25,8 @@ namespace Bind.ES Settings.DefaultDocPath = Path.Combine( Settings.DefaultDocPath, "ES20"); + Settings.OverridesFiles.Add("GL2/overrides.xml"); + Profile = "gles2"; Version = "2.0"; diff --git a/Source/Bind/ES/ES31Generator.cs b/Source/Bind/ES/ES31Generator.cs new file mode 100644 index 00000000..4e2167de --- /dev/null +++ b/Source/Bind/ES/ES31Generator.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Xml.XPath; +using Bind.GL2; +using Bind.Structures; +using Delegate=Bind.Structures.Delegate; +using Enum=Bind.Structures.Enum; + +namespace Bind.ES +{ + // Generation implementation for OpenGL ES 3.1 + class ES31Generator : Generator + { + public ES31Generator(Settings settings, string dirName) + : base(settings, dirName) + { + Settings.DefaultOutputPath = Path.Combine( + Settings.DefaultOutputPath, "../ES31"); + Settings.DefaultOutputNamespace = "OpenTK.Graphics.ES31"; + Settings.DefaultImportsFile = "ES31.Core.cs"; + Settings.DefaultDelegatesFile = "ES31.Delegates.cs"; + Settings.DefaultEnumsFile = "ES31.Enums.cs"; + Settings.DefaultWrappersFile = "ES31.cs"; + Settings.DefaultDocPath = Path.Combine( + Settings.DefaultDocPath, "ES31"); + + Settings.OverridesFiles.Add("GL2/overrides.xml"); + Settings.OverridesFiles.Add("GL2/ES/3.1"); + + Profile = "gles2"; + Version = "2.0|3.0|3.1"; + + // For compatibility with OpenTK 1.0 and Xamarin, generate + // overloads using the "All" enum in addition to strongly-typed enums. + // This can be disabled by passing "-o:-keep_untyped_enums" as a cmdline parameter. + Settings.DefaultCompatibility |= Settings.Legacy.KeepUntypedEnums; + //Settings.DefaultCompatibility |= Settings.Legacy.UseDllImports; + } + } +} diff --git a/Source/Bind/ES/ES3Generator.cs b/Source/Bind/ES/ES3Generator.cs index ba0e5135..e2dce041 100644 --- a/Source/Bind/ES/ES3Generator.cs +++ b/Source/Bind/ES/ES3Generator.cs @@ -25,6 +25,8 @@ namespace Bind.ES Settings.DefaultDocPath = Path.Combine( Settings.DefaultDocPath, "ES30"); + Settings.OverridesFiles.Add("GL2/overrides.xml"); + Profile = "gles2"; // The 3.0 spec reuses the gles2 apiname Version = "2.0|3.0"; diff --git a/Source/Bind/ES/ESGenerator.cs b/Source/Bind/ES/ESGenerator.cs index f9124754..c3a50883 100644 --- a/Source/Bind/ES/ESGenerator.cs +++ b/Source/Bind/ES/ESGenerator.cs @@ -25,6 +25,9 @@ namespace Bind.ES Settings.DefaultDocPath = Path.Combine( Settings.DefaultDocPath, "ES20"); // no ES11 docbook sources available + Settings.OverridesFiles.Add("GL2/overrides.xml"); + Settings.OverridesFiles.Add("GL2/ES/1.1/"); + // Khronos releases a combined 1.0+1.1 specification, // so we cannot distinguish between the two. // Todo: add support for common and light profiles. diff --git a/Source/Bind/EnumProcessor.cs b/Source/Bind/EnumProcessor.cs index 9b9fc503..2983d954 100644 --- a/Source/Bind/EnumProcessor.cs +++ b/Source/Bind/EnumProcessor.cs @@ -39,12 +39,12 @@ namespace Bind { class EnumProcessor { - string Overrides { get; set; } + readonly IEnumerable Overrides; IBind Generator { get; set; } Settings Settings { get { return Generator.Settings; } } - public EnumProcessor(IBind generator, string overrides) + public EnumProcessor(IBind generator, IEnumerable overrides) { if (generator == null) throw new ArgumentNullException("generator"); @@ -57,9 +57,14 @@ namespace Bind public EnumCollection Process(EnumCollection enums, string apiname) { - var nav = new XPathDocument(Overrides).CreateNavigator(); - enums = ProcessNames(enums, nav, apiname); - enums = ProcessConstants(enums, nav, apiname); + foreach (var file in Overrides) + { + Console.WriteLine("Processing enums in {0}.", file); + + var nav = new XPathDocument(file).CreateNavigator(); + enums = ProcessNames(enums, nav, apiname); + enums = ProcessConstants(enums, nav, apiname); + } return enums; } @@ -134,6 +139,17 @@ namespace Bind return name; } + static bool IsAlreadyProcessed(string name) + { + string extension = Utilities.GetExtension(name, true); + bool unprocessed = false; + unprocessed |= name.Contains("_") || name.Contains("-"); + unprocessed |= Char.IsDigit(name[0]); + unprocessed |= name.All(c => Char.IsUpper(c)); + unprocessed |= !String.IsNullOrEmpty(extension) && extension.All(c => Char.IsUpper(c)); + return !unprocessed; + } + public string TranslateEnumName(string name) { if (String.IsNullOrEmpty(name)) @@ -142,71 +158,74 @@ namespace Bind if (Utilities.Keywords(Settings.Language).Contains(name)) return name; - if (Char.IsDigit(name[0])) - name = Settings.ConstantPrefix + name; - - StringBuilder translator = new StringBuilder(name); - - // Split on IHV names and acronyms, to ensure that characters appearing after these name are uppercase. - var match = Utilities.Acronyms.Match(name); - int offset = 0; // Everytime we insert a match, we must increase offset to compensate. - while (match.Success) + if (!IsAlreadyProcessed(name)) { - int insert_pos = match.Index + match.Length + offset++; - translator.Insert(insert_pos, "_"); - match = match.NextMatch(); - } - name = translator.ToString(); - translator.Remove(0, translator.Length); + if (Char.IsDigit(name[0])) + name = Settings.ConstantPrefix + name; - // Process according to these rules: - // 1. if current char is '_', '-' remove it and make next char uppercase - // 2. if current char is or '0-9' keep it and make next char uppercase. - // 3. if current char is uppercase make next char lowercase. - // 4. if current char is lowercase, respect next char case. - bool is_after_underscore_or_number = true; - bool is_previous_uppercase = false; - foreach (char c in name) - { - char char_to_add; - if (c == '_' || c == '-') + StringBuilder translator = new StringBuilder(name); + + // Split on IHV names and acronyms, to ensure that characters appearing after these name are uppercase. + var match = Utilities.Acronyms.Match(name); + int offset = 0; // Everytime we insert a match, we must increase offset to compensate. + while (match.Success) { - is_after_underscore_or_number = true; - continue; // skip this character + int insert_pos = match.Index + match.Length + offset++; + translator.Insert(insert_pos, "_"); + match = match.NextMatch(); } - else if (Char.IsDigit(c)) + name = translator.ToString(); + translator.Remove(0, translator.Length); + + // Process according to these rules: + // 1. if current char is '_', '-' remove it and make next char uppercase + // 2. if current char is or '0-9' keep it and make next char uppercase. + // 3. if current char is uppercase make next char lowercase. + // 4. if current char is lowercase, respect next char case. + bool is_after_underscore_or_number = true; + bool is_previous_uppercase = false; + foreach (char c in name) { - is_after_underscore_or_number = true; + char char_to_add; + if (c == '_' || c == '-') + { + is_after_underscore_or_number = true; + continue; // skip this character + } + else if (Char.IsDigit(c)) + { + is_after_underscore_or_number = true; + } + + if (is_after_underscore_or_number) + char_to_add = Char.ToUpper(c); + else if (is_previous_uppercase) + char_to_add = Char.ToLower(c); + else + char_to_add = c; + + translator.Append(char_to_add); + + is_previous_uppercase = Char.IsUpper(c); + is_after_underscore_or_number = false; } - if (is_after_underscore_or_number) - char_to_add = Char.ToUpper(c); - else if (is_previous_uppercase) - char_to_add = Char.ToLower(c); - else - char_to_add = c; + // First letter should always be uppercase in order + // to conform to .Net style guidelines. + translator[0] = Char.ToUpper(translator[0]); - translator.Append(char_to_add); + // Replace a number of words that do not play well + // with the previous process (i.e. they have two + // consecutive uppercase letters). + translator.Replace("Pname", "PName"); + translator.Replace("AttribIp", "AttribIP"); + translator.Replace("SRgb", "Srgb"); - is_previous_uppercase = Char.IsUpper(c); - is_after_underscore_or_number = false; + name = translator.ToString(); + if (name.StartsWith(Settings.EnumPrefix)) + name = name.Substring(Settings.EnumPrefix.Length); } - // First letter should always be uppercase in order - // to conform to .Net style guidelines. - translator[0] = Char.ToUpper(translator[0]); - - // Replace a number of words that do not play well - // with the previous process (i.e. they have two - // consecutive uppercase letters). - translator.Replace("Pname", "PName"); - translator.Replace("AttribIp", "AttribIP"); - translator.Replace("SRgb", "Srgb"); - - name = translator.ToString(); - if (name.StartsWith(Settings.EnumPrefix)) - name = name.Substring(Settings.EnumPrefix.Length); - return name; } diff --git a/Source/Bind/FuncProcessor.cs b/Source/Bind/FuncProcessor.cs index 81a55cd1..7411b31d 100644 --- a/Source/Bind/FuncProcessor.cs +++ b/Source/Bind/FuncProcessor.cs @@ -54,12 +54,12 @@ namespace Bind RegexOptions.Compiled); static readonly Regex EndingsAddV = new Regex("^0", RegexOptions.Compiled); - string Overrides { get; set; } + readonly IEnumerable Overrides; IBind Generator { get; set; } Settings Settings { get { return Generator.Settings; } } - public FuncProcessor(IBind generator, string overrides) + public FuncProcessor(IBind generator, IEnumerable overrides) { if (generator == null) throw new ArgumentNullException("generator"); @@ -73,43 +73,47 @@ namespace Bind public FunctionCollection Process(EnumProcessor enum_processor, DocProcessor doc_processor, DelegateCollection delegates, EnumCollection enums, string apiname, string apiversion) { - Console.WriteLine("Processing delegates."); - var nav = new XPathDocument(Overrides).CreateNavigator(); - foreach (var version in apiversion.Split('|')) + foreach (var file in Overrides) { - // Translate each delegate: - // 1st using the elements in overrides.xml - // 2nd using the hardcoded rules in FuncProcessor (e.g. char* -> string) - foreach (var signatures in delegates.Values) - { - foreach (var d in signatures) - { - var replace = GetFuncOverride(nav, d, apiname, apiversion); - TranslateExtension(d); - TranslateReturnType(d, replace, nav, enum_processor, enums, apiname, version); - TranslateParameters(d, replace, nav, enum_processor, enums, apiname, version); - TranslateAttributes(d, replace, nav, apiname, version); - } - } + Console.WriteLine("Processing funcs in {0}.", file); - // Create overloads for backwards compatibility, - // by resolving elements - var overload_list = new List(); - foreach (var d in delegates.Values.Select(v => v.First())) + var nav = new XPathDocument(file).CreateNavigator(); + foreach (var version in apiversion.Split('|')) { - var overload_elements = GetFuncOverload(nav, d, apiname, apiversion); - foreach (XPathNavigator overload_element in overload_elements) + // Translate each delegate: + // 1st using the elements in overrides.xml + // 2nd using the hardcoded rules in FuncProcessor (e.g. char* -> string) + foreach (var signatures in delegates.Values) { - var overload = new Delegate(d); - TranslateReturnType(overload, overload_element, nav, enum_processor, enums, apiname, version); - TranslateParameters(overload, overload_element, nav, enum_processor, enums, apiname, version); - TranslateAttributes(overload, overload_element, nav, apiname, version); - overload_list.Add(overload); + foreach (var d in signatures) + { + var replace = GetFuncOverride(nav, d, apiname, apiversion); + TranslateExtension(d); + TranslateReturnType(d, replace, nav, enum_processor, enums, apiname, version); + TranslateParameters(d, replace, nav, enum_processor, enums, apiname, version); + TranslateAttributes(d, replace, nav, apiname, version); + } + } + + // Create overloads for backwards compatibility, + // by resolving elements + var overload_list = new List(); + foreach (var d in delegates.Values.Select(v => v.First())) + { + var overload_elements = GetFuncOverload(nav, d, apiname, apiversion); + foreach (XPathNavigator overload_element in overload_elements) + { + var overload = new Delegate(d); + TranslateReturnType(overload, overload_element, nav, enum_processor, enums, apiname, version); + TranslateParameters(overload, overload_element, nav, enum_processor, enums, apiname, version); + TranslateAttributes(overload, overload_element, nav, apiname, version); + overload_list.Add(overload); + } + } + foreach (var overload in overload_list) + { + delegates.Add(overload); } - } - foreach (var overload in overload_list) - { - delegates.Add(overload); } } diff --git a/Source/Bind/GL2/GL2Generator.cs b/Source/Bind/GL2/GL2Generator.cs index 9d1b4631..7e36c024 100644 --- a/Source/Bind/GL2/GL2Generator.cs +++ b/Source/Bind/GL2/GL2Generator.cs @@ -56,6 +56,9 @@ namespace Bind.GL2 Settings.DefaultDocPath = Path.Combine( Settings.DefaultDocPath, "GL"); + Settings.OverridesFiles.Add("GL2/overrides.xml"); + Settings.OverridesFiles.Add("GL2/GL/"); + //Settings.DefaultCompatibility |= // Settings.Legacy.UseDllImports | Settings.Legacy.UseWindowsCompatibleGL; } diff --git a/Source/Bind/GL2/GL4Generator.cs b/Source/Bind/GL2/GL4Generator.cs index 5266e895..a9b6c740 100644 --- a/Source/Bind/GL2/GL4Generator.cs +++ b/Source/Bind/GL2/GL4Generator.cs @@ -48,6 +48,9 @@ namespace Bind.GL2 Settings.DefaultDocPath = Path.Combine( Settings.DefaultDocPath, "GL"); + Settings.OverridesFiles.Add("GL2/overrides.xml"); + Settings.OverridesFiles.Add("GL2/GL/"); + Profile = "glcore"; //Settings.DefaultCompatibility |= diff --git a/Source/Bind/GL2/Generator.cs b/Source/Bind/GL2/Generator.cs index 260848b7..baa35dc2 100644 --- a/Source/Bind/GL2/Generator.cs +++ b/Source/Bind/GL2/Generator.cs @@ -76,7 +76,6 @@ namespace Bind.GL2 enumSpecExt = String.Empty; glSpec = Path.Combine(dirName, "signatures.xml"); glSpecExt = String.Empty; - Settings.OverridesFile = Path.Combine(dirName, "overrides.xml"); Settings.ImportsClass = "Core"; Settings.DelegatesClass = "Delegates"; @@ -91,6 +90,27 @@ namespace Bind.GL2 #endregion + #region Private Members + + IEnumerable GetFiles(string path) + { + path = Path.Combine(Settings.InputPath, path); + if ((File.GetAttributes(path) & FileAttributes.Directory) != 0) + { + foreach (var file in Directory.GetFiles( + path, "*.xml", SearchOption.AllDirectories)) + { + yield return file; + } + } + else + { + yield return path; + } + } + + #endregion + #region IBind Members public DelegateCollection Delegates { get; private set; } @@ -101,15 +121,24 @@ namespace Bind.GL2 public virtual void Process() { - string overrides = Path.Combine(Settings.InputPath, Settings.OverridesFile); - + var overrides = Settings.OverridesFiles.SelectMany(GetFiles); + GLTypes = SpecReader.ReadTypeMap(Path.Combine(Settings.InputPath, glTypemap)); CSTypes = SpecReader.ReadCSTypeMap(Path.Combine(Settings.InputPath, csTypemap)); + // Read enum signatures SpecReader.ReadEnums(Path.Combine(Settings.InputPath, enumSpec), Enums, Profile, Version); - SpecReader.ReadEnums(overrides, Enums, Profile, Version); + foreach (var file in overrides) + { + SpecReader.ReadEnums(file, Enums, Profile, Version); + } + + // Read delegate signatures SpecReader.ReadDelegates(Path.Combine(Settings.InputPath, glSpec), Delegates, Profile, Version); - SpecReader.ReadDelegates(overrides, Delegates, Profile, Version); + foreach (var file in overrides) + { + SpecReader.ReadDelegates(file, Delegates, Profile, Version); + } var enum_processor = new EnumProcessor(this, overrides); var func_processor = new FuncProcessor(this, overrides); diff --git a/Source/Bind/Generator.Bind.csproj b/Source/Bind/Generator.Bind.csproj index 13241edd..dd7e4991 100644 --- a/Source/Bind/Generator.Bind.csproj +++ b/Source/Bind/Generator.Bind.csproj @@ -2,7 +2,7 @@ Local - 8.0.50727 + 8.0.30703 2.0 {31D19132-0000-0000-0000-000000000000} Debug @@ -233,7 +233,6 @@ - Code @@ -242,6 +241,27 @@ + + + + + + + + + + + + + + + + + Code + + + + @@ -271,5 +291,8 @@ + + + \ No newline at end of file diff --git a/Source/Bind/Main.cs b/Source/Bind/Main.cs index 8078220f..3ddd37c6 100644 --- a/Source/Bind/Main.cs +++ b/Source/Bind/Main.cs @@ -29,6 +29,7 @@ namespace Bind ES11, ES20, ES30, + ES31, CL10, } @@ -186,12 +187,13 @@ namespace Bind { case GeneratorMode.All: Console.WriteLine("Using 'all' generator mode."); - Console.WriteLine("Use '-mode:all/gl2/gl4/es10/es11/es20/es30' to select a specific mode."); + Console.WriteLine("Use '-mode:all/gl2/gl4/es10/es11/es20/es30/es31' to select a specific mode."); Generators.Add(new GL2Generator(Settings, dirName)); Generators.Add(new GL4Generator(Settings, dirName)); Generators.Add(new ESGenerator(Settings, dirName)); Generators.Add(new ES2Generator(Settings, dirName)); Generators.Add(new ES3Generator(Settings, dirName)); + Generators.Add(new ES31Generator(Settings, dirName)); break; case GeneratorMode.GL2: @@ -219,6 +221,10 @@ namespace Bind Generators.Add(new ES3Generator(Settings, dirName)); break; + case GeneratorMode.ES31: + Generators.Add(new ES31Generator(Settings, dirName)); + break; + case GeneratorMode.CL10: Generators.Add(new CLGenerator(Settings, dirName)); break; @@ -315,6 +321,11 @@ namespace Bind Settings.DefaultOutputNamespace = "OpenTK.Graphics.ES30"; break; + case "es31": + mode = GeneratorMode.ES31; + Settings.DefaultOutputNamespace = "OpenTK.Graphics.ES31"; + break; + case "cl": case "cl10": mode = GeneratorMode.CL10; diff --git a/Source/Bind/Settings.cs b/Source/Bind/Settings.cs index 9864b925..59c92dc9 100644 --- a/Source/Bind/Settings.cs +++ b/Source/Bind/Settings.cs @@ -5,6 +5,7 @@ #endregion using System; +using System.Collections.Generic; using System.IO; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; @@ -14,9 +15,9 @@ namespace Bind [Serializable] class Settings { - // Disable BeforeFieldInit. public Settings() { + OverridesFiles = new List(); } public string DefaultInputPath = "../../../Source/Bind/Specifications"; @@ -25,7 +26,6 @@ namespace Bind public string DefaultDocPath = "../../../Source/Bind/Specifications/Docs"; public string DefaultFallbackDocPath = "../../../Source/Bind/Specifications/Docs/GL"; public string DefaultLicenseFile = "License.txt"; - public string DefaultOverridesFile = "GL2/gloverrides.xml"; public string DefaultLanguageTypeMapFile = "csharp.tm"; public string DefaultKeywordEscapeCharacter = "@"; public string DefaultImportsFile = "Core.cs"; @@ -34,7 +34,7 @@ namespace Bind public string DefaultWrappersFile = "GL.cs"; public Legacy DefaultCompatibility = Legacy.NoDropMultipleTokens; - string inputPath, outputPath, outputNamespace, docPath, fallbackDocPath, licenseFile, overridesFile, + string inputPath, outputPath, outputNamespace, docPath, fallbackDocPath, licenseFile, languageTypeMapFile, keywordEscapeCharacter, importsFile, delegatesFile, enumsFile, wrappersFile; Nullable compatibility; @@ -44,7 +44,7 @@ namespace Bind public string DocPath { get { return docPath ?? DefaultDocPath; } set { docPath = value; } } public string FallbackDocPath { get { return fallbackDocPath ?? DefaultFallbackDocPath; } set { fallbackDocPath = value; } } public string LicenseFile { get { return licenseFile ?? DefaultLicenseFile; } set { licenseFile = value; } } - public string OverridesFile { get { return overridesFile ?? DefaultOverridesFile; } set { overridesFile = value; } } + public List OverridesFiles { get; private set; } public string LanguageTypeMapFile { get { return languageTypeMapFile ?? DefaultLanguageTypeMapFile; } set { languageTypeMapFile = value; } } public string KeywordEscapeCharacter { get { return keywordEscapeCharacter ?? DefaultKeywordEscapeCharacter; } set { keywordEscapeCharacter = value; } } public string ImportsFile { get { return importsFile ?? DefaultImportsFile; } set { importsFile = value; } } diff --git a/Source/Bind/Specifications/GL2/ES/1.1/obsolete.xml b/Source/Bind/Specifications/GL2/ES/1.1/obsolete.xml new file mode 100644 index 00000000..61023731 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/1.1/obsolete.xml @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_compute_shader.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_compute_shader.xml new file mode 100644 index 00000000..79ca6414 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_compute_shader.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_draw_indirect.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_draw_indirect.xml new file mode 100644 index 00000000..3ecb29de --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_draw_indirect.xml @@ -0,0 +1,22 @@ + + + + + + PrimitiveType + + + PrimitiveType + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_explicit_uniform_location.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_explicit_uniform_location.xml new file mode 100644 index 00000000..69348807 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_explicit_uniform_location.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_framebuffer_no_attachments.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_framebuffer_no_attachments.xml new file mode 100644 index 00000000..7418ea23 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_framebuffer_no_attachments.xml @@ -0,0 +1,29 @@ + + + + + + FramebufferTarget + FramebufferDefaultParameter + + + FramebufferTarget + FramebufferDefaultParameter + + + + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_program_interface_queries.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_program_interface_queries.xml new file mode 100644 index 00000000..8cb7b7fa --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_program_interface_queries.xml @@ -0,0 +1,67 @@ + + + + + + ProgramInterface + ProgramInterfaceParameter + + + + ProgramInterface + + + + ProgramInterface + + + + ProgramInterface + ProgramProperty + + + + ProgramInterface + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_separate_shader_objects.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_separate_shader_objects.xml new file mode 100644 index 00000000..d0e46274 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_separate_shader_objects.xml @@ -0,0 +1,42 @@ + + + + + + ShaderType + + + ProgramPipelineParameter + + + ProgramStageMask + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_atomic_counters.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_atomic_counters.xml new file mode 100644 index 00000000..656cd548 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_atomic_counters.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_image_load_store.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_image_load_store.xml new file mode 100644 index 00000000..e3fca8d3 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_image_load_store.xml @@ -0,0 +1,80 @@ + + + + + + TextureAccess + SizedInternalFormat + + + GetIndexedPName + + + MemoryBarrierFlags + + + MemoryBarrierRegionFlags + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_storage_buffer_object.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_storage_buffer_object.xml new file mode 100644 index 00000000..6b3b178b --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_shader_storage_buffer_object.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_stencil_texturing.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_stencil_texturing.xml new file mode 100644 index 00000000..7e813182 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_stencil_texturing.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_texture_gather.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_texture_gather.xml new file mode 100644 index 00000000..76666856 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_texture_gather.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_texture_storage_multisample.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_texture_storage_multisample.xml new file mode 100644 index 00000000..12c4e835 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_texture_storage_multisample.xml @@ -0,0 +1,67 @@ + + + + + + TextureTargetMultisample2d + SizedInternalFormat + + + GetMultisamplePName + + + TextureTarget + GetTextureParameterName + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/ES/3.1/KHR_vertex_attrib_binding.xml b/Source/Bind/Specifications/GL2/ES/3.1/KHR_vertex_attrib_binding.xml new file mode 100644 index 00000000..ad5ecd73 --- /dev/null +++ b/Source/Bind/Specifications/GL2/ES/3.1/KHR_vertex_attrib_binding.xml @@ -0,0 +1,37 @@ + + + + + + VertexAttribType + + + VertexAttribIntegerType + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/GL/4.5/ARB_ES3_1_compatibility.xml b/Source/Bind/Specifications/GL2/GL/4.5/ARB_ES3_1_compatibility.xml new file mode 100644 index 00000000..eaf97769 --- /dev/null +++ b/Source/Bind/Specifications/GL2/GL/4.5/ARB_ES3_1_compatibility.xml @@ -0,0 +1,21 @@ + + + + + + MemoryBarrierRegionFlags + + + + + + + + + + + + + + + diff --git a/Source/Bind/Specifications/GL2/GL/4.5/ARB_direct_state_access.xml b/Source/Bind/Specifications/GL2/GL/4.5/ARB_direct_state_access.xml new file mode 100644 index 00000000..79b50dcd --- /dev/null +++ b/Source/Bind/Specifications/GL2/GL/4.5/ARB_direct_state_access.xml @@ -0,0 +1,336 @@ + + + + + + + TransformFeedbackParameter + + + TransformFeedbackIndexedParameter + + + TransformFeedbackIndexedParameter + + + + + + + + + + + + + + + + + + + + BufferTarget + PixelInternalFormat + PixelFormat + + + BufferTarget + PixelInternalFormat + PixelFormat + + + BufferParameterName + + + BufferPointer + + + BufferAccess + + + BufferAccessMask + + + BufferUsageHint + + + BufferStorageFlags + + + + + + + ClearBufferMask + BlitFramebufferFilter + + + FramebufferTarget + + + ClearBuffer + + + ClearBufferCombined + + + FramebufferAttachment + + + FramebufferAttachment + + + FramebufferAttachment + FramebufferParameterName + + + FramebufferDefaultParameter + + + DrawBufferMode + + + DrawBuffersEnum + + + FramebufferDefaultParameter + + + ReadBufferMode + + + FramebufferAttachment + RenderbufferTarget + + + FramebufferAttachment + + + FramebufferAttachment + + + + + + + RenderbufferParameterName + + + RenderbufferStorage + + + RenderbufferStorage + + + + + + + PixelFormat + + + PixelFormat + + + PixelFormat + + + TextureTarget + + + PixelFormat + PixelType + + + GetTextureParameter + + + GetTextureParameter + + + SizedInternalFormat + + + SizedInternalFormat + + + TextureParameterName + + + SizedInternalFormat + + + SizedInternalFormat + + + SizedInternalFormat + + + SizedInternalFormat + + + SizedInternalFormat + + + PixelFormat + PixelType + + + PixelFormat + PixelType + + + PixelFormat + PixelType + + + + + + + + + + + + + + + + + + + + + + + + + + + VertexArrayParameter + + + VertexArrayIndexedParameter + + + VertexArrayIndexed64Parameter + + + VertexAttribType + + + VertexAttribType + + + + + + + + + + + + + + + + + + + + + + + + + + + + QueryTarget + + + + + + + + + + + + ExtDirectStateAccess + + + ExtDirectStateAccess + PixelFormat + + + ExtDirectStateAccess + int + + + ExtDirectStateAccess + + + NvShaderBufferLoad + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + uint + + + ExtDirectStateAccess + + + FramebufferParameterName + + + ExtDirectStateAccess + + + PixelInternalFormat + + + ExtDirectStateAccess + + + PixelInternalFormat + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + ExtDirectStateAccess + + + + diff --git a/Source/Bind/Specifications/GL2/GL/4.5/ARB_robustness.xml b/Source/Bind/Specifications/GL2/GL/4.5/ARB_robustness.xml new file mode 100644 index 00000000..765a9b0d --- /dev/null +++ b/Source/Bind/Specifications/GL2/GL/4.5/ARB_robustness.xml @@ -0,0 +1,18 @@ + + + + + + ArbRobustness + ArbRobustness + + + + + + All + All + + + + diff --git a/Source/Bind/Specifications/GL2/overrides.xml b/Source/Bind/Specifications/GL2/overrides.xml index 0bf15e80..24d68d93 100644 --- a/Source/Bind/Specifications/GL2/overrides.xml +++ b/Source/Bind/Specifications/GL2/overrides.xml @@ -1237,6 +1237,27 @@ + + + + ClipOrigin + ClipDepthMode + + + + ResetStatus + + + + PixelFormat + PixelType + + + + PixelFormat + PixelType + + @@ -2845,6 +2866,7 @@ + @@ -2936,6 +2958,16 @@ + + + + + + + + + + @@ -2958,6 +2990,10 @@ + + + + @@ -3126,6 +3162,7 @@ + @@ -3575,6 +3612,13 @@ + + + + + + + @@ -3630,6 +3674,14 @@ + + + + + + + + @@ -4034,7 +4086,7 @@ - + @@ -4370,6 +4422,12 @@ + + + + + + @@ -4791,9 +4849,6 @@ - - - @@ -4863,6 +4918,9 @@ + + + @@ -4892,6 +4950,11 @@ + + + + + @@ -4940,20 +5003,6 @@ - - - - - - - - - - - - - - @@ -4968,304 +5017,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -5766,7 +5517,16 @@ QueryCounterTarget - + + + + ResetStatus + + + PixelFormat + PixelType + + DebugSourceControl @@ -6114,6 +5874,21 @@ + + + + + + + + + + + + + + + @@ -6323,7 +6098,12 @@ - + + + + + +