bindGLFW_WGL

Undocumented in source.
version(BindGLFW_Dynamic)
@nogc nothrow
static if(bindWindows)
enum bindGLFW_WGL = q{ extern(C) @nogc nothrow alias pglfwGetWGLContext = HGLRC function(GLFWwindow* window); __gshared pglfwGetWGLContext glfwGetWGLContext; @nogc nothrow bool loadGLFW_WGL() { import bindbc.loader.sharedlib : errorCount; if(!isGLFWLoaded) return false; auto errCount = errorCount(); bindGLFWSymbol(cast(void**)&glfwGetWGLContext,"glfwGetWGLContext"); return errorCount() == errCount; } };

Meta