From b67f479c6c31b380c25db8aa5848f45df059e28c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 5 Dec 2010 02:19:47 +0000 Subject: [PATCH] * Main.cs: * ES/ESGenerator.cs: Improved handling of default namespace to avoid clash with user overrides. --- Source/Bind/ES/ESGenerator.cs | 1 - Source/Bind/Main.cs | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/Bind/ES/ESGenerator.cs b/Source/Bind/ES/ESGenerator.cs index 9ffb46cd..783e85e7 100644 --- a/Source/Bind/ES/ESGenerator.cs +++ b/Source/Bind/ES/ESGenerator.cs @@ -35,7 +35,6 @@ namespace Bind.ES Settings.DelegatesClass = "Delegates"; Settings.OutputClass = "GL"; - Settings.OutputNamespace = "OpenTK.Graphics." + nsName; } } } diff --git a/Source/Bind/Main.cs b/Source/Bind/Main.cs index 810ccb51..d1c8dc4b 100644 --- a/Source/Bind/Main.cs +++ b/Source/Bind/Main.cs @@ -223,6 +223,7 @@ namespace Bind Settings.DefaultOutputPath = Path.Combine( Directory.GetParent(Settings.DefaultOutputPath).ToString(), dirName); + Settings.DefaultOutputNamespace = "OpenTK.Graphics.ES10"; } else if (arg == "es11") { @@ -230,6 +231,7 @@ namespace Bind Settings.DefaultOutputPath = Path.Combine( Directory.GetParent(Settings.DefaultOutputPath).ToString(), dirName); + Settings.DefaultOutputNamespace = "OpenTK.Graphics.ES11"; } else if (arg == "es20") { @@ -237,6 +239,7 @@ namespace Bind Settings.DefaultOutputPath = Path.Combine( Directory.GetParent(Settings.DefaultOutputPath).ToString(), dirName); + Settings.DefaultOutputNamespace = "OpenTK.Graphics.ES20"; } else if (arg == "cl" || arg == "cl10") {