diff options
author | Eric Anholt <eric@anholt.net> | 2009-04-20 14:29:17 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-04-21 15:25:58 -0700 |
commit | c774ef282bfb0c594479bbab3527fe5fda2a8559 (patch) | |
tree | 44b75cbd0c866add6ce7ac05d266daa1c2a7a20a /src/i830_cursor.c | |
parent | 75c531b9652b3919ddbf51f8eec804e6bdbb2331 (diff) |
Remove dead mono cursor load code.
Diffstat (limited to 'src/i830_cursor.c')
-rw-r--r-- | src/i830_cursor.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/i830_cursor.c b/src/i830_cursor.c index 43a65cb9..e1cf0bf6 100644 --- a/src/i830_cursor.c +++ b/src/i830_cursor.c @@ -136,19 +136,6 @@ I830CursorInit(ScreenPtr pScreen) HARDWARE_CURSOR_ARGB)); } -void -i830_crtc_load_cursor_image (xf86CrtcPtr crtc, unsigned char *src) -{ - I830Ptr pI830 = I830PTR(crtc->scrn); - I830CrtcPrivatePtr intel_crtc = crtc->driver_private; - uint8_t *pcurs; - - pcurs = pI830->FbBase + intel_crtc->cursor_offset; - - intel_crtc->cursor_is_argb = FALSE; - memcpy (pcurs, src, I810_CURSOR_X * I810_CURSOR_Y / 4); -} - #ifdef ARGB_CURSOR void i830_crtc_load_cursor_argb (xf86CrtcPtr crtc, CARD32 *image) |