Lines Matching refs:_GLFWwindow
38 _GLFWwindow* window;
55 static EventNode* newEventNode(const MirEvent* event, _GLFWwindow* context) in newEventNode()
64 static void enqueueEvent(const MirEvent* event, _GLFWwindow* context) in enqueueEvent()
141 static void handleKeyEvent(const MirKeyboardEvent* key_event, _GLFWwindow* window) in handleKeyEvent()
159 static void handlePointerButton(_GLFWwindow* window, in handlePointerButton()
201 static void handlePointerMotion(_GLFWwindow* window, in handlePointerMotion()
217 _GLFWwindow* window) in handlePointerEvent()
241 static void handleInput(const MirInputEvent* input_event, _GLFWwindow* window) in handleInput()
258 static void handleEvent(const MirEvent* event, _GLFWwindow* window) in handleEvent()
277 static GLFWbool createSurface(_GLFWwindow* window) in createSurface()
349 int _glfwPlatformCreateWindow(_GLFWwindow* window, in _glfwPlatformCreateWindow()
391 void _glfwPlatformDestroyWindow(_GLFWwindow* window) in _glfwPlatformDestroyWindow()
403 void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title) in _glfwPlatformSetWindowTitle()
415 void _glfwPlatformSetWindowIcon(_GLFWwindow* window, in _glfwPlatformSetWindowIcon()
422 void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height) in _glfwPlatformSetWindowSize()
434 void _glfwPlatformSetWindowSizeLimits(_GLFWwindow* window, in _glfwPlatformSetWindowSizeLimits()
442 void _glfwPlatformSetWindowAspectRatio(_GLFWwindow* window, int numer, int denom) in _glfwPlatformSetWindowAspectRatio()
448 void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos) in _glfwPlatformSetWindowPos()
454 void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window, in _glfwPlatformGetWindowFrameSize()
462 void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos) in _glfwPlatformGetWindowPos()
468 void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height) in _glfwPlatformGetWindowSize()
476 void _glfwPlatformIconifyWindow(_GLFWwindow* window) in _glfwPlatformIconifyWindow()
481 void _glfwPlatformRestoreWindow(_GLFWwindow* window) in _glfwPlatformRestoreWindow()
486 void _glfwPlatformMaximizeWindow(_GLFWwindow* window) in _glfwPlatformMaximizeWindow()
492 void _glfwPlatformHideWindow(_GLFWwindow* window) in _glfwPlatformHideWindow()
503 void _glfwPlatformShowWindow(_GLFWwindow* window) in _glfwPlatformShowWindow()
514 void _glfwPlatformFocusWindow(_GLFWwindow* window) in _glfwPlatformFocusWindow()
520 void _glfwPlatformSetWindowMonitor(_GLFWwindow* window, in _glfwPlatformSetWindowMonitor()
530 int _glfwPlatformWindowFocused(_GLFWwindow* window) in _glfwPlatformWindowFocused()
537 int _glfwPlatformWindowIconified(_GLFWwindow* window) in _glfwPlatformWindowIconified()
544 int _glfwPlatformWindowVisible(_GLFWwindow* window) in _glfwPlatformWindowVisible()
549 int _glfwPlatformWindowMaximized(_GLFWwindow* window) in _glfwPlatformWindowMaximized()
601 void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height) in _glfwPlatformGetFramebufferSize()
706 void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor) in _glfwPlatformSetCursor()
722 void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos) in _glfwPlatformGetCursorPos()
728 void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos) in _glfwPlatformSetCursorPos()
734 void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode) in _glfwPlatformSetCursorMode()
747 void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string) in _glfwPlatformSetClipboardString()
753 const char* _glfwPlatformGetClipboardString(_GLFWwindow* window) in _glfwPlatformGetClipboardString()
798 _GLFWwindow* window, in _glfwPlatformCreateWindowSurface()
844 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetMirWindow()