• Home
  • Raw
  • Download

Lines Matching refs:_GLFWmonitor

52     struct _GLFWmonitor *monitor = data;  in geometry()
67 struct _GLFWmonitor *monitor = data; in mode()
91 struct _GLFWmonitor *monitor = data; in done()
100 struct _GLFWmonitor *monitor = data; in scale()
119 _GLFWmonitor *monitor; in _glfwAddOutputWayland()
155 _GLFWmonitor** monitors = _glfw.wl.monitors; in _glfwAddOutputWayland()
158 monitors = realloc(monitors, size * sizeof(_GLFWmonitor*)); in _glfwAddOutputWayland()
172 _GLFWmonitor** _glfwPlatformGetMonitors(int* count) in _glfwPlatformGetMonitors()
174 _GLFWmonitor** monitors; in _glfwPlatformGetMonitors()
175 _GLFWmonitor* monitor; in _glfwPlatformGetMonitors()
181 monitors = calloc(monitorsCount, sizeof(_GLFWmonitor*)); in _glfwPlatformGetMonitors()
185 _GLFWmonitor* origMonitor = _glfw.wl.monitors[i]; in _glfwPlatformGetMonitors()
186 monitor = calloc(1, sizeof(_GLFWmonitor)); in _glfwPlatformGetMonitors()
203 GLFWbool _glfwPlatformIsSameMonitor(_GLFWmonitor* first, _GLFWmonitor* second) in _glfwPlatformIsSameMonitor()
208 void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos) in _glfwPlatformGetMonitorPos()
216 GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found) in _glfwPlatformGetVideoModes()
230 void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode) in _glfwPlatformGetVideoMode()
244 void _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp) in _glfwPlatformGetGammaRamp()
251 void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp) in _glfwPlatformSetGammaRamp()
265 _GLFWmonitor* monitor = (_GLFWmonitor*) handle; in glfwGetWaylandMonitor()