Lines Matching full:crtc
432 CRTC = collections.namedtuple(
433 'CRTC', [
434 'id', # crtc id
548 Returns a list of CRTC data.
551 [CRTC(id=19, fb=50, pos=(0, 0), size=(1366, 768)),
552 CRTC(id=22, fb=54, pos=(0, 0), size=(1920, 1080))]
570 crtcs.append(CRTC(crtc_id, fb, (x, y), (width, height)))
603 return connector.size + (0, 0) # TODO(ihf): Should we use CRTC.pos?