diff --git a/Source/OpenTK/Graphics/GraphicsBindingsBase.cs b/Source/OpenTK/Graphics/GraphicsBindingsBase.cs index 237b8783..79cd42b6 100644 --- a/Source/OpenTK/Graphics/GraphicsBindingsBase.cs +++ b/Source/OpenTK/Graphics/GraphicsBindingsBase.cs @@ -26,6 +26,7 @@ #endregion using System; +using System.Diagnostics; using System.Runtime.InteropServices; namespace OpenTK.Graphics @@ -84,6 +85,8 @@ namespace OpenTK.Graphics // validation necessary.) internal override void LoadEntryPoints() { + Debug.Print("Loading entry points for {0}", GetType().FullName); + IGraphicsContext context = GraphicsContext.CurrentContext; if (context == null) throw new GraphicsContextMissingException();