From: thefiddler Date: Thu, 14 Aug 2014 06:11:30 +0000 (+0200) Subject: [ES] Implemented ES 3.1 binding generator X-Git-Tag: 2.0-0~93^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bcd76c7364a356aa426b155d2b831a70af820a51;p=platform%2Fcore%2Fcsapi%2Fopentk.git [ES] Implemented ES 3.1 binding generator --- diff --git a/Source/Bind/ES/ES31Generator.cs b/Source/Bind/ES/ES31Generator.cs new file mode 100644 index 0000000..4e2167d --- /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; + } + } +}