Lines Matching refs:GLFWwindow
49 window->callbacks.focus((GLFWwindow*) window, focused);
80 window->callbacks.pos((GLFWwindow*) window, x, y);
93 window->callbacks.size((GLFWwindow*) window, width, height);
104 window->callbacks.iconify((GLFWwindow*) window, iconified);
115 window->callbacks.maximize((GLFWwindow*) window, maximized);
128 window->callbacks.fbsize((GLFWwindow*) window, width, height);
143 window->callbacks.scale((GLFWwindow*) window, xscale, yscale);
153 window->callbacks.refresh((GLFWwindow*) window);
165 window->callbacks.close((GLFWwindow*) window);
180 GLFWAPI GLFWwindow* glfwCreateWindow(int width, int height,
183 GLFWwindow* share)
249 glfwDestroyWindow((GLFWwindow*) window);
253 return (GLFWwindow*) window;
468 GLFWAPI void glfwDestroyWindow(GLFWwindow* handle)
502 GLFWAPI int glfwWindowShouldClose(GLFWwindow* handle)
512 GLFWAPI void glfwSetWindowShouldClose(GLFWwindow* handle, int value)
522 GLFWAPI const char* glfwGetWindowTitle(GLFWwindow* handle)
532 GLFWAPI void glfwSetWindowTitle(GLFWwindow* handle, const char* title)
548 GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle,
582 GLFWAPI void glfwGetWindowPos(GLFWwindow* handle, int* xpos, int* ypos)
597 GLFWAPI void glfwSetWindowPos(GLFWwindow* handle, int xpos, int ypos)
610 GLFWAPI void glfwGetWindowSize(GLFWwindow* handle, int* width, int* height)
625 GLFWAPI void glfwSetWindowSize(GLFWwindow* handle, int width, int height)
641 GLFWAPI void glfwSetWindowSizeLimits(GLFWwindow* handle,
686 GLFWAPI void glfwSetWindowAspectRatio(GLFWwindow* handle, int numer, int denom)
716 GLFWAPI void glfwGetFramebufferSize(GLFWwindow* handle, int* width, int* height)
731 GLFWAPI void glfwGetWindowFrameSize(GLFWwindow* handle,
752 GLFWAPI void glfwGetWindowContentScale(GLFWwindow* handle,
768 GLFWAPI float glfwGetWindowOpacity(GLFWwindow* handle)
778 GLFWAPI void glfwSetWindowOpacity(GLFWwindow* handle, float opacity)
798 GLFWAPI void glfwIconifyWindow(GLFWwindow* handle)
808 GLFWAPI void glfwRestoreWindow(GLFWwindow* handle)
818 GLFWAPI void glfwMaximizeWindow(GLFWwindow* handle)
831 GLFWAPI void glfwShowWindow(GLFWwindow* handle)
847 GLFWAPI void glfwRequestWindowAttention(GLFWwindow* handle)
857 GLFWAPI void glfwHideWindow(GLFWwindow* handle)
870 GLFWAPI void glfwFocusWindow(GLFWwindow* handle)
880 GLFWAPI int glfwGetWindowAttrib(GLFWwindow* handle, int attrib)
943 GLFWAPI void glfwSetWindowAttrib(GLFWwindow* handle, int attrib, int value)
989 GLFWAPI GLFWmonitor* glfwGetWindowMonitor(GLFWwindow* handle)
999 GLFWAPI void glfwSetWindowMonitor(GLFWwindow* wh,
1039 GLFWAPI void glfwSetWindowUserPointer(GLFWwindow* handle, void* pointer)
1049 GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow* handle)
1059 GLFWAPI GLFWwindowposfun glfwSetWindowPosCallback(GLFWwindow* handle,
1071 GLFWAPI GLFWwindowsizefun glfwSetWindowSizeCallback(GLFWwindow* handle,
1083 GLFWAPI GLFWwindowclosefun glfwSetWindowCloseCallback(GLFWwindow* handle,
1095 GLFWAPI GLFWwindowrefreshfun glfwSetWindowRefreshCallback(GLFWwindow* handle,
1107 GLFWAPI GLFWwindowfocusfun glfwSetWindowFocusCallback(GLFWwindow* handle,
1119 GLFWAPI GLFWwindowiconifyfun glfwSetWindowIconifyCallback(GLFWwindow* handle,
1131 GLFWAPI GLFWwindowmaximizefun glfwSetWindowMaximizeCallback(GLFWwindow* handle,
1143 GLFWAPI GLFWframebuffersizefun glfwSetFramebufferSizeCallback(GLFWwindow* handle,
1155 GLFWAPI GLFWwindowcontentscalefun glfwSetWindowContentScaleCallback(GLFWwindow* handle,