Lines Matching refs:_GLFWwindow
57 typedef struct _GLFWwindow _GLFWwindow; typedef
62 typedef void (* _GLFWmakecontextcurrentfun)(_GLFWwindow*);
63 typedef void (* _GLFWswapbuffersfun)(_GLFWwindow*);
67 typedef void (* _GLFWdestroycontextfun)(_GLFWwindow*);
283 _GLFWwindow* share;
345 struct _GLFWwindow struct
347 struct _GLFWwindow* next; argument
406 _GLFWwindow* window; argument
442 _GLFWwindow* windowListHead;
528 void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos);
533 void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos);
539 void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode);
588 void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string);
596 const char* _glfwPlatformGetClipboardString(_GLFWwindow* window);
630 int _glfwPlatformCreateWindow(_GLFWwindow* window,
637 void _glfwPlatformDestroyWindow(_GLFWwindow* window);
642 void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title);
647 void _glfwPlatformSetWindowIcon(_GLFWwindow* window, int count, const GLFWimage* images);
652 void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos);
657 void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos);
662 void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height);
667 void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height);
672 void _glfwPlatformSetWindowSizeLimits(_GLFWwindow* window, int minwidth, int minheight, int maxwidt…
677 void _glfwPlatformSetWindowAspectRatio(_GLFWwindow* window, int numer, int denom);
682 void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height);
687 void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window, int* left, int* top, int* right, int* bot…
692 void _glfwPlatformIconifyWindow(_GLFWwindow* window);
697 void _glfwPlatformRestoreWindow(_GLFWwindow* window);
702 void _glfwPlatformMaximizeWindow(_GLFWwindow* window);
707 void _glfwPlatformShowWindow(_GLFWwindow* window);
712 void _glfwPlatformHideWindow(_GLFWwindow* window);
717 void _glfwPlatformFocusWindow(_GLFWwindow* window);
722 void _glfwPlatformSetWindowMonitor(_GLFWwindow* window, _GLFWmonitor* monitor, int xpos, int ypos, …
727 int _glfwPlatformWindowFocused(_GLFWwindow* window);
732 int _glfwPlatformWindowIconified(_GLFWwindow* window);
737 int _glfwPlatformWindowVisible(_GLFWwindow* window);
742 int _glfwPlatformWindowMaximized(_GLFWwindow* window);
766 void _glfwPlatformSetCurrentContext(_GLFWwindow* context);
771 _GLFWwindow* _glfwPlatformGetCurrentContext(void);
791 void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor);
803 VkResult _glfwPlatformCreateWindowSurface(VkInstance instance, _GLFWwindow* window, const VkAllocat…
816 void _glfwInputWindowFocus(_GLFWwindow* window, GLFWbool focused);
824 void _glfwInputWindowPos(_GLFWwindow* window, int xpos, int ypos);
832 void _glfwInputWindowSize(_GLFWwindow* window, int width, int height);
840 void _glfwInputFramebufferSize(_GLFWwindow* window, int width, int height);
848 void _glfwInputWindowIconify(_GLFWwindow* window, GLFWbool iconified);
853 void _glfwInputWindowDamage(_GLFWwindow* window);
859 void _glfwInputWindowCloseRequest(_GLFWwindow* window);
861 void _glfwInputWindowMonitorChange(_GLFWwindow* window, _GLFWmonitor* monitor);
871 void _glfwInputKey(_GLFWwindow* window, int key, int scancode, int action, int mods);
881 void _glfwInputChar(_GLFWwindow* window, unsigned int codepoint, int mods, GLFWbool plain);
889 void _glfwInputScroll(_GLFWwindow* window, double xoffset, double yoffset);
897 void _glfwInputMouseClick(_GLFWwindow* window, int button, int action, int mods);
907 void _glfwInputCursorPos(_GLFWwindow* window, double xpos, double ypos);
915 void _glfwInputCursorEnter(_GLFWwindow* window, GLFWbool entered);
923 void _glfwInputMonitorWindowChange(_GLFWmonitor* monitor, _GLFWwindow* window);
943 void _glfwInputDrop(_GLFWwindow* window, int count, const char** names);