Lines Matching defs:handle
132 u->handle = (uintptr_t) n;
138 *result = (GLXFBConfig) closest->handle;
165 window->context.glx.handle))
232 return _glfwPlatformGetModuleSymbol(_glfw.glx.handle, procname);
244 if (window->context.glx.handle)
246 glXDestroyContext(_glfw.x11.display, window->context.glx.handle);
247 window->context.glx.handle = NULL;
276 if (_glfw.glx.handle)
281 _glfw.glx.handle = _glfwPlatformLoadModule(sonames[i]);
282 if (_glfw.glx.handle)
286 if (!_glfw.glx.handle)
293 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXGetFBConfigs");
295 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXGetFBConfigAttrib");
297 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXGetClientString");
299 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXQueryExtension");
301 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXQueryVersion");
303 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXDestroyContext");
305 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXMakeCurrent");
307 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXSwapBuffers");
309 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXQueryExtensionsString");
311 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXCreateNewContext");
313 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXCreateWindow");
315 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXDestroyWindow");
317 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXGetVisualFromFBConfig");
340 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXGetProcAddress");
342 _glfwPlatformGetModuleSymbol(_glfw.glx.handle, "glXGetProcAddressARB");
436 if (_glfw.glx.handle)
438 _glfwPlatformFreeModule(_glfw.glx.handle);
439 _glfw.glx.handle = NULL;
461 share = ctxconfig->share->context.glx.handle;
584 window->context.glx.handle =
595 if (!window->context.glx.handle)
602 window->context.glx.handle =
609 window->context.glx.handle =
615 if (!window->context.glx.handle)
622 glXCreateWindow(_glfw.x11.display, native, window->x11.handle, NULL);
678 GLFWAPI GLXContext glfwGetGLXContext(GLFWwindow* handle)
688 _GLFWwindow* window = (_GLFWwindow*) handle;
697 return window->context.glx.handle;
700 GLFWAPI GLXWindow glfwGetGLXWindow(GLFWwindow* handle)
710 _GLFWwindow* window = (_GLFWwindow*) handle;