Lines Matching refs:crtc
78 * Turns the crtc on/off, or sets intermediate power levels if available.
81 * mode is DPMSModeOff, the crtc must be disabled sufficiently for it to
85 (*dpms) (xf86CrtcPtr crtc, int mode);
88 * Saves the crtc's state for restoration on VT switch.
91 (*save) (xf86CrtcPtr crtc);
94 * Restore's the crtc's state at VT switch.
97 (*restore) (xf86CrtcPtr crtc);
104 (*lock) (xf86CrtcPtr crtc);
110 (*unlock) (xf86CrtcPtr crtc);
120 (*mode_fixup) (xf86CrtcPtr crtc,
127 (*prepare) (xf86CrtcPtr crtc);
133 (*mode_set) (xf86CrtcPtr crtc,
141 (*commit) (xf86CrtcPtr crtc);
145 (*gamma_set) (xf86CrtcPtr crtc, CARD16 *red, CARD16 *green, CARD16 *blue,
151 void *(*shadow_allocate) (xf86CrtcPtr crtc, int width, int height);
157 (*shadow_create) (xf86CrtcPtr crtc, void *data, int width, int height);
163 (*shadow_destroy) (xf86CrtcPtr crtc, PixmapPtr pPixmap, void *data);
169 (*set_cursor_colors) (xf86CrtcPtr crtc, int bg, int fg);
175 (*set_cursor_position) (xf86CrtcPtr crtc, int x, int y);
181 (*show_cursor) (xf86CrtcPtr crtc);
187 (*hide_cursor) (xf86CrtcPtr crtc);
193 (*load_cursor_image) (xf86CrtcPtr crtc, CARD8 *image);
199 (*load_cursor_argb) (xf86CrtcPtr crtc, CARD32 *image);
202 * Clean up driver-specific bits of the crtc
205 (*destroy) (xf86CrtcPtr crtc);
211 (*set_mode_major) (xf86CrtcPtr crtc, DisplayModePtr mode,
219 (*set_origin) (xf86CrtcPtr crtc, int x, int y);
224 (*set_scanout_pixmap)(xf86CrtcPtr crtc, PixmapPtr pixmap);
279 /** crtc-specific functions */
291 * RandR crtc
294 * points at the associated crtc object
516 * Currently connected crtc (if any)
520 xf86CrtcPtr crtc;
523 * Possible CRTCs for this output as a mask of crtc indices
673 xf86CrtcPtr *crtc;
678 /* For crtc-based rotation */
713 /* callback when crtc configuration changes */
744 return compat_output->crtc;
776 xf86CrtcDestroy(xf86CrtcPtr crtc);
779 * Sets the given video mode on the given crtc
784 xf86CrtcSetModeTransform(xf86CrtcPtr crtc, DisplayModePtr mode,
790 xf86CrtcSetMode(xf86CrtcPtr crtc, DisplayModePtr mode, Rotation rotation,
794 xf86CrtcSetOrigin(xf86CrtcPtr crtc, int x, int y);
797 * Assign crtc rotation during mode set
800 xf86CrtcRotate(xf86CrtcPtr crtc);
803 * Clean up any rotation data, used when a crtc is turned off
807 xf86RotateDestroy(xf86CrtcPtr crtc);
822 * Return whether any output is assigned to the crtc
825 xf86CrtcInUse(xf86CrtcPtr crtc);
929 * Using the desired mode information in each crtc, set
950 * Driver should call this from crtc commit function.
974 * Transform the cursor's coordinates based on the crtc transform. Normally
975 * this is done by the server, but if crtc->driverIsPerformingTransform is TRUE,
979 xf86CrtcTransformCursorPos(xf86CrtcPtr crtc, int *x, int *y);