• Home
  • Raw
  • Download

Lines Matching refs:_glfw

66     pthread_mutex_lock(&_glfw.mir.event_mutex);  in enqueueEvent()
69 TAILQ_INSERT_TAIL(&_glfw.mir.event_queue->head, new_node, entries); in enqueueEvent()
71 pthread_cond_signal(&_glfw.mir.event_cond); in enqueueEvent()
73 pthread_mutex_unlock(&_glfw.mir.event_mutex); in enqueueEvent()
80 pthread_mutex_lock(&_glfw.mir.event_mutex); in dequeueEvent()
87 pthread_mutex_unlock(&_glfw.mir.event_mutex); in dequeueEvent()
100 mir_connection_get_available_surface_formats(_glfw.mir.connection, formats, in findValidPixelFormat()
135 if (key < sizeof(_glfw.mir.publicKeys) / sizeof(_glfw.mir.publicKeys[0])) in toGLFWKeyCode()
136 return _glfw.mir.publicKeys[key]; in toGLFWKeyCode()
290 spec = mir_connection_create_spec_for_normal_surface(_glfw.mir.connection, in createSurface()
408 spec = mir_connection_create_spec_for_changes(_glfw.mir.connection); in _glfwPlatformSetWindowTitle()
426 spec = mir_connection_create_spec_for_changes(_glfw.mir.connection); in _glfwPlatformSetWindowSize()
496 spec = mir_connection_create_spec_for_changes(_glfw.mir.connection); in _glfwPlatformHideWindow()
507 spec = mir_connection_create_spec_for_changes(_glfw.mir.connection); in _glfwPlatformShowWindow()
560 while ((node = dequeueEvent(_glfw.mir.event_queue))) in _glfwPlatformPollEvents()
563 deleteNode(_glfw.mir.event_queue, node); in _glfwPlatformPollEvents()
569 pthread_mutex_lock(&_glfw.mir.event_mutex); in _glfwPlatformWaitEvents()
571 if (emptyEventQueue(_glfw.mir.event_queue)) in _glfwPlatformWaitEvents()
572 pthread_cond_wait(&_glfw.mir.event_cond, &_glfw.mir.event_mutex); in _glfwPlatformWaitEvents()
574 pthread_mutex_unlock(&_glfw.mir.event_mutex); in _glfwPlatformWaitEvents()
581 pthread_mutex_lock(&_glfw.mir.event_mutex); in _glfwPlatformWaitEventsTimeout()
583 if (emptyEventQueue(_glfw.mir.event_queue)) in _glfwPlatformWaitEventsTimeout()
589 pthread_cond_timedwait(&_glfw.mir.event_cond, &_glfw.mir.event_mutex, &time); in _glfwPlatformWaitEventsTimeout()
592 pthread_mutex_unlock(&_glfw.mir.event_mutex); in _glfwPlatformWaitEventsTimeout()
627 stream = mir_connection_create_buffer_stream_sync(_glfw.mir.connection, in _glfwPlatformCreateCursor()
718 mir_wait_for(mir_surface_configure_cursor(window->mir.surface, _glfw.mir.default_conf)); in _glfwPlatformSetCursor()
767 if (!_glfw.vk.KHR_mir_surface) in _glfwPlatformGetRequiredInstanceExtensions()
794 _glfw.mir.connection); in _glfwPlatformGetPhysicalDevicePresentationSupport()
817 sci.connection = _glfw.mir.connection; in _glfwPlatformCreateWindowSurface()
839 return _glfw.mir.connection; in glfwGetMirDisplay()