From fbeac9c323541a6fa3fb147f28786953d67fc855 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Sat, 26 Apr 2014 14:19:19 +0200 Subject: [PATCH] [Graphics] Redirect GetAddress(string) GetAddress(string) now calls GetAddress(IntPtr) internally. This reduces the number of APIs that must be implemented for each platform. --- Source/OpenTK/Graphics/GraphicsContext.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/OpenTK/Graphics/GraphicsContext.cs b/Source/OpenTK/Graphics/GraphicsContext.cs index 72d88923..348b7950 100644 --- a/Source/OpenTK/Graphics/GraphicsContext.cs +++ b/Source/OpenTK/Graphics/GraphicsContext.cs @@ -601,7 +601,10 @@ namespace OpenTK.Graphics /// IntPtr IGraphicsContextInternal.GetAddress(string function) { - return (implementation as IGraphicsContextInternal).GetAddress(function); + IntPtr name = System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi(function); + IntPtr address = (implementation as IGraphicsContextInternal).GetAddress(name); + System.Runtime.InteropServices.Marshal.FreeHGlobal(name); + return address; } ///