From 61048d6ae1ed640f99be92fa1a9949021a305a15 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sat, 1 Sep 2007 23:59:47 +0000 Subject: [PATCH] Wgl structs now reside in the OpenTK.Platform.Windows namespace, notin OpenTK.Platform.Windows.API. --- Source/Bind/Structures/Parameter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Bind/Structures/Parameter.cs b/Source/Bind/Structures/Parameter.cs index 6c053ec5..43d37954 100644 --- a/Source/Bind/Structures/Parameter.cs +++ b/Source/Bind/Structures/Parameter.cs @@ -246,11 +246,11 @@ namespace Bind.Structures else { if (p.CurrentType == "PIXELFORMATDESCRIPTOR") - p.CurrentType ="API.PixelFormatDescriptor"; + p.CurrentType ="PixelFormatDescriptor"; else if (p.CurrentType == "LAYERPLANEDESCRIPTOR") - p.CurrentType = "API.LayerPlaneDescriptor"; + p.CurrentType = "LayerPlaneDescriptor"; else if (p.CurrentType == "GLYPHMETRICSFLOAT") - p.CurrentType = "API.GlyphMetricsFloat"; + p.CurrentType = "GlyphMetricsFloat"; } } else