• Home
  • Raw
  • Download

Lines Matching refs:ci

70                                        const XRRCrtcInfo* ci)  in vidmodeFromModeInfo()  argument
74 if (ci->rotation == RR_Rotate_90 || ci->rotation == RR_Rotate_270) in vidmodeFromModeInfo()
105 XRRCrtcInfo* ci; in _glfwSetVideoModeX11() local
118 ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc); in _glfwSetVideoModeX11()
127 const GLFWvidmode mode = vidmodeFromModeInfo(mi, ci); in _glfwSetVideoModeX11()
138 monitor->x11.oldMode = ci->mode; in _glfwSetVideoModeX11()
143 ci->x, ci->y, in _glfwSetVideoModeX11()
145 ci->rotation, in _glfwSetVideoModeX11()
146 ci->outputs, in _glfwSetVideoModeX11()
147 ci->noutput); in _glfwSetVideoModeX11()
151 XRRFreeCrtcInfo(ci); in _glfwSetVideoModeX11()
172 XRRCrtcInfo* ci; in _glfwRestoreVideoModeX11() local
178 ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc); in _glfwRestoreVideoModeX11()
183 ci->x, ci->y, in _glfwRestoreVideoModeX11()
185 ci->rotation, in _glfwRestoreVideoModeX11()
186 ci->outputs, in _glfwRestoreVideoModeX11()
187 ci->noutput); in _glfwRestoreVideoModeX11()
189 XRRFreeCrtcInfo(ci); in _glfwRestoreVideoModeX11()
224 XRRCrtcInfo* ci = XRRGetCrtcInfo(_glfw.x11.display, in _glfwPlatformGetMonitors() local
227 for (j = 0; j < ci->noutput; j++) in _glfwPlatformGetMonitors()
232 sr, ci->outputs[j]); in _glfwPlatformGetMonitors()
239 if (ci->rotation == RR_Rotate_90 || ci->rotation == RR_Rotate_270) in _glfwPlatformGetMonitors()
251 monitor->x11.output = ci->outputs[j]; in _glfwPlatformGetMonitors()
256 if (screens[k].x_org == ci->x && in _glfwPlatformGetMonitors()
257 screens[k].y_org == ci->y && in _glfwPlatformGetMonitors()
258 screens[k].width == ci->width && in _glfwPlatformGetMonitors()
259 screens[k].height == ci->height) in _glfwPlatformGetMonitors()
271 if (ci->outputs[j] == primary) in _glfwPlatformGetMonitors()
275 XRRFreeCrtcInfo(ci); in _glfwPlatformGetMonitors()
319 XRRCrtcInfo* ci; in _glfwPlatformGetMonitorPos() local
322 ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc); in _glfwPlatformGetMonitorPos()
325 *xpos = ci->x; in _glfwPlatformGetMonitorPos()
327 *ypos = ci->y; in _glfwPlatformGetMonitorPos()
329 XRRFreeCrtcInfo(ci); in _glfwPlatformGetMonitorPos()
344 XRRCrtcInfo* ci; in _glfwPlatformGetVideoModes() local
348 ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc); in _glfwPlatformGetVideoModes()
359 const GLFWvidmode mode = vidmodeFromModeInfo(mi, ci); in _glfwPlatformGetVideoModes()
376 XRRFreeCrtcInfo(ci); in _glfwPlatformGetVideoModes()
394 XRRCrtcInfo* ci; in _glfwPlatformGetVideoMode() local
397 ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc); in _glfwPlatformGetVideoMode()
399 *mode = vidmodeFromModeInfo(getModeInfo(sr, ci->mode), ci); in _glfwPlatformGetVideoMode()
401 XRRFreeCrtcInfo(ci); in _glfwPlatformGetVideoMode()