Lines Matching refs:GLFWwindow
46 window->callbacks.focus((GLFWwindow*) window, focused); in _glfwInputWindowFocus()
53 window->callbacks.focus((GLFWwindow*) window, focused); in _glfwInputWindowFocus()
74 window->callbacks.pos((GLFWwindow*) window, x, y); in _glfwInputWindowPos()
80 window->callbacks.size((GLFWwindow*) window, width, height); in _glfwInputWindowSize()
86 window->callbacks.iconify((GLFWwindow*) window, iconified); in _glfwInputWindowIconify()
92 window->callbacks.fbsize((GLFWwindow*) window, width, height); in _glfwInputFramebufferSize()
98 window->callbacks.refresh((GLFWwindow*) window); in _glfwInputWindowDamage()
106 window->callbacks.close((GLFWwindow*) window); in _glfwInputWindowCloseRequest()
119 GLFWAPI GLFWwindow* glfwCreateWindow(int width, int height, in glfwCreateWindow()
122 GLFWwindow* share) in glfwCreateWindow()
198 glfwMakeContextCurrent((GLFWwindow*) previous); in glfwCreateWindow()
199 glfwDestroyWindow((GLFWwindow*) window); in glfwCreateWindow()
210 glfwMakeContextCurrent((GLFWwindow*) previous); in glfwCreateWindow()
211 glfwDestroyWindow((GLFWwindow*) window); in glfwCreateWindow()
216 glfwMakeContextCurrent((GLFWwindow*) previous); in glfwCreateWindow()
229 return (GLFWwindow*) window; in glfwCreateWindow()
376 GLFWAPI void glfwDestroyWindow(GLFWwindow* handle) in glfwDestroyWindow()
409 GLFWAPI int glfwWindowShouldClose(GLFWwindow* handle) in glfwWindowShouldClose()
418 GLFWAPI void glfwSetWindowShouldClose(GLFWwindow* handle, int value) in glfwSetWindowShouldClose()
427 GLFWAPI void glfwSetWindowTitle(GLFWwindow* handle, const char* title) in glfwSetWindowTitle()
438 GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle, in glfwSetWindowIcon()
450 GLFWAPI void glfwGetWindowPos(GLFWwindow* handle, int* xpos, int* ypos) in glfwGetWindowPos()
464 GLFWAPI void glfwSetWindowPos(GLFWwindow* handle, int xpos, int ypos) in glfwSetWindowPos()
477 GLFWAPI void glfwGetWindowSize(GLFWwindow* handle, int* width, int* height) in glfwGetWindowSize()
491 GLFWAPI void glfwSetWindowSize(GLFWwindow* handle, int width, int height) in glfwSetWindowSize()
504 GLFWAPI void glfwSetWindowSizeLimits(GLFWwindow* handle, in glfwSetWindowSizeLimits()
549 GLFWAPI void glfwSetWindowAspectRatio(GLFWwindow* handle, int numer, int denom) in glfwSetWindowAspectRatio()
576 GLFWAPI void glfwGetFramebufferSize(GLFWwindow* handle, int* width, int* height) in glfwGetFramebufferSize()
590 GLFWAPI void glfwGetWindowFrameSize(GLFWwindow* handle, in glfwGetWindowFrameSize()
610 GLFWAPI void glfwIconifyWindow(GLFWwindow* handle) in glfwIconifyWindow()
619 GLFWAPI void glfwRestoreWindow(GLFWwindow* handle) in glfwRestoreWindow()
628 GLFWAPI void glfwMaximizeWindow(GLFWwindow* handle) in glfwMaximizeWindow()
637 GLFWAPI void glfwShowWindow(GLFWwindow* handle) in glfwShowWindow()
651 GLFWAPI void glfwHideWindow(GLFWwindow* handle) in glfwHideWindow()
664 GLFWAPI void glfwFocusWindow(GLFWwindow* handle) in glfwFocusWindow()
674 GLFWAPI int glfwGetWindowAttrib(GLFWwindow* handle, int attrib) in glfwGetWindowAttrib()
725 GLFWAPI GLFWmonitor* glfwGetWindowMonitor(GLFWwindow* handle) in glfwGetWindowMonitor()
734 GLFWAPI void glfwSetWindowMonitor(GLFWwindow* wh, in glfwSetWindowMonitor()
771 GLFWAPI void glfwSetWindowUserPointer(GLFWwindow* handle, void* pointer) in glfwSetWindowUserPointer()
780 GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow* handle) in glfwGetWindowUserPointer()
789 GLFWAPI GLFWwindowposfun glfwSetWindowPosCallback(GLFWwindow* handle, in glfwSetWindowPosCallback()
800 GLFWAPI GLFWwindowsizefun glfwSetWindowSizeCallback(GLFWwindow* handle, in glfwSetWindowSizeCallback()
811 GLFWAPI GLFWwindowclosefun glfwSetWindowCloseCallback(GLFWwindow* handle, in glfwSetWindowCloseCallback()
822 GLFWAPI GLFWwindowrefreshfun glfwSetWindowRefreshCallback(GLFWwindow* handle, in glfwSetWindowRefreshCallback()
833 GLFWAPI GLFWwindowfocusfun glfwSetWindowFocusCallback(GLFWwindow* handle, in glfwSetWindowFocusCallback()
844 GLFWAPI GLFWwindowiconifyfun glfwSetWindowIconifyCallback(GLFWwindow* handle, in glfwSetWindowIconifyCallback()
855 GLFWAPI GLFWframebuffersizefun glfwSetFramebufferSizeCallback(GLFWwindow* handle, in glfwSetFramebufferSizeCallback()