Lines Matching full:crtc
88 crtc = self._l.drmModeGetCrtc(self._fd, crtc_id).contents
89 if crtc.mode_valid:
90 return crtc
95 Obtain the CRTC at a given index.
97 @param crtc_id: The CRTC to get.
99 crtc = None
101 crtc = self._l.drmModeGetCrtc(self._fd, crtc_id).contents
103 crtc = self.getValidCrtc()
104 crtc._fd = self._fd
105 crtc._l = self._l
106 return crtc
111 A DRM modesetting CRTC.
129 return "<CRTC (%d)>" % self.crtc_id
137 Whether this CRTC has an associated framebuffer.
153 raise RuntimeError("CRTC %d doesn't have a framebuffer!" %
389 @param crtc_id: The CRTC to screenshot.