Lines Matching defs:handle

200         u->handle = (uintptr_t) n;
206 *result = (EGLConfig) closest->handle;
250 window->context.egl.handle))
349 if (window->context.egl.handle)
351 eglDestroyContext(_glfw.egl.display, window->context.egl.handle);
352 window->context.egl.handle = EGL_NO_CONTEXT;
387 if (_glfw.egl.handle)
392 _glfw.egl.handle = _glfwPlatformLoadModule(sonames[i]);
393 if (_glfw.egl.handle)
397 if (!_glfw.egl.handle)
406 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglGetConfigAttrib");
408 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglGetConfigs");
410 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglGetDisplay");
412 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglGetError");
414 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglInitialize");
416 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglTerminate");
418 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglBindAPI");
420 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglCreateContext");
422 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglDestroySurface");
424 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglDestroyContext");
426 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglCreateWindowSurface");
428 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglCreatePbufferSurface");
430 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglMakeCurrent");
432 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglSwapBuffers");
434 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglSwapInterval");
436 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglQueryString");
438 _glfwPlatformGetModuleSymbol(_glfw.egl.handle, "eglGetProcAddress");
558 if (_glfw.egl.handle)
560 _glfwPlatformFreeModule(_glfw.egl.handle);
561 _glfw.egl.handle = NULL;
591 share = ctxconfig->share->context.egl.handle;
691 window->context.egl.handle = eglCreateContext(_glfw.egl.display,
694 if (window->context.egl.handle == EGL_NO_CONTEXT)
909 GLFWAPI EGLContext glfwGetEGLContext(GLFWwindow* handle)
913 _GLFWwindow* window = (_GLFWwindow*) handle;
926 return window->context.egl.handle;
929 GLFWAPI EGLSurface glfwGetEGLSurface(GLFWwindow* handle)
933 _GLFWwindow* window = (_GLFWwindow*) handle;