Lines Matching defs:handle

468 GLFWAPI void glfwDestroyWindow(GLFWwindow* handle)
472 _GLFWwindow* window = (_GLFWwindow*) handle;
502 GLFWAPI int glfwWindowShouldClose(GLFWwindow* handle)
506 _GLFWwindow* window = (_GLFWwindow*) handle;
512 GLFWAPI void glfwSetWindowShouldClose(GLFWwindow* handle, int value)
516 _GLFWwindow* window = (_GLFWwindow*) handle;
522 GLFWAPI const char* glfwGetWindowTitle(GLFWwindow* handle)
526 _GLFWwindow* window = (_GLFWwindow*) handle;
532 GLFWAPI void glfwSetWindowTitle(GLFWwindow* handle, const char* title)
538 _GLFWwindow* window = (_GLFWwindow*) handle;
548 GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle,
558 _GLFWwindow* window = (_GLFWwindow*) handle;
582 GLFWAPI void glfwGetWindowPos(GLFWwindow* handle, int* xpos, int* ypos)
591 _GLFWwindow* window = (_GLFWwindow*) handle;
597 GLFWAPI void glfwSetWindowPos(GLFWwindow* handle, int xpos, int ypos)
601 _GLFWwindow* window = (_GLFWwindow*) handle;
610 GLFWAPI void glfwGetWindowSize(GLFWwindow* handle, int* width, int* height)
619 _GLFWwindow* window = (_GLFWwindow*) handle;
625 GLFWAPI void glfwSetWindowSize(GLFWwindow* handle, int width, int height)
632 _GLFWwindow* window = (_GLFWwindow*) handle;
641 GLFWAPI void glfwSetWindowSizeLimits(GLFWwindow* handle,
647 _GLFWwindow* window = (_GLFWwindow*) handle;
686 GLFWAPI void glfwSetWindowAspectRatio(GLFWwindow* handle, int numer, int denom)
693 _GLFWwindow* window = (_GLFWwindow*) handle;
716 GLFWAPI void glfwGetFramebufferSize(GLFWwindow* handle, int* width, int* height)
725 _GLFWwindow* window = (_GLFWwindow*) handle;
731 GLFWAPI void glfwGetWindowFrameSize(GLFWwindow* handle,
746 _GLFWwindow* window = (_GLFWwindow*) handle;
752 GLFWAPI void glfwGetWindowContentScale(GLFWwindow* handle,
762 _GLFWwindow* window = (_GLFWwindow*) handle;
768 GLFWAPI float glfwGetWindowOpacity(GLFWwindow* handle)
772 _GLFWwindow* window = (_GLFWwindow*) handle;
778 GLFWAPI void glfwSetWindowOpacity(GLFWwindow* handle, float opacity)
786 _GLFWwindow* window = (_GLFWwindow*) handle;
798 GLFWAPI void glfwIconifyWindow(GLFWwindow* handle)
802 _GLFWwindow* window = (_GLFWwindow*) handle;
808 GLFWAPI void glfwRestoreWindow(GLFWwindow* handle)
812 _GLFWwindow* window = (_GLFWwindow*) handle;
818 GLFWAPI void glfwMaximizeWindow(GLFWwindow* handle)
822 _GLFWwindow* window = (_GLFWwindow*) handle;
831 GLFWAPI void glfwShowWindow(GLFWwindow* handle)
835 _GLFWwindow* window = (_GLFWwindow*) handle;
847 GLFWAPI void glfwRequestWindowAttention(GLFWwindow* handle)
851 _GLFWwindow* window = (_GLFWwindow*) handle;
857 GLFWAPI void glfwHideWindow(GLFWwindow* handle)
861 _GLFWwindow* window = (_GLFWwindow*) handle;
870 GLFWAPI void glfwFocusWindow(GLFWwindow* handle)
874 _GLFWwindow* window = (_GLFWwindow*) handle;
880 GLFWAPI int glfwGetWindowAttrib(GLFWwindow* handle, int attrib)
884 _GLFWwindow* window = (_GLFWwindow*) handle;
943 GLFWAPI void glfwSetWindowAttrib(GLFWwindow* handle, int attrib, int value)
947 _GLFWwindow* window = (_GLFWwindow*) handle;
989 GLFWAPI GLFWmonitor* glfwGetWindowMonitor(GLFWwindow* handle)
993 _GLFWwindow* window = (_GLFWwindow*) handle;
1039 GLFWAPI void glfwSetWindowUserPointer(GLFWwindow* handle, void* pointer)
1043 _GLFWwindow* window = (_GLFWwindow*) handle;
1049 GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow* handle)
1053 _GLFWwindow* window = (_GLFWwindow*) handle;
1059 GLFWAPI GLFWwindowposfun glfwSetWindowPosCallback(GLFWwindow* handle,
1064 _GLFWwindow* window = (_GLFWwindow*) handle;
1071 GLFWAPI GLFWwindowsizefun glfwSetWindowSizeCallback(GLFWwindow* handle,
1076 _GLFWwindow* window = (_GLFWwindow*) handle;
1083 GLFWAPI GLFWwindowclosefun glfwSetWindowCloseCallback(GLFWwindow* handle,
1088 _GLFWwindow* window = (_GLFWwindow*) handle;
1095 GLFWAPI GLFWwindowrefreshfun glfwSetWindowRefreshCallback(GLFWwindow* handle,
1100 _GLFWwindow* window = (_GLFWwindow*) handle;
1107 GLFWAPI GLFWwindowfocusfun glfwSetWindowFocusCallback(GLFWwindow* handle,
1112 _GLFWwindow* window = (_GLFWwindow*) handle;
1119 GLFWAPI GLFWwindowiconifyfun glfwSetWindowIconifyCallback(GLFWwindow* handle,
1124 _GLFWwindow* window = (_GLFWwindow*) handle;
1131 GLFWAPI GLFWwindowmaximizefun glfwSetWindowMaximizeCallback(GLFWwindow* handle,
1136 _GLFWwindow* window = (_GLFWwindow*) handle;
1143 GLFWAPI GLFWframebuffersizefun glfwSetFramebufferSizeCallback(GLFWwindow* handle,
1148 _GLFWwindow* window = (_GLFWwindow*) handle;
1155 GLFWAPI GLFWwindowcontentscalefun glfwSetWindowContentScaleCallback(GLFWwindow* handle,
1160 _GLFWwindow* window = (_GLFWwindow*) handle;