mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-26 21:12:25 +00:00
mi: removing MPX ifdefs
global sprite renaming in mipointer and misprite fixed: multiple remove cursor call in miSpriteInstallColormap fixed: wrong core pointer usage in miSpriteStoreColors dix: bugfix in CheckCursorConfinement removing MPX ifdefs removing MPX event generation (using Xi solely now) bugfix GrabDevice: uninitialized field in grab struct caused segfault xfree86: removing MPX fdefs Xi: removing MPX protocol events
This commit is contained in:
parent
a96788058e
commit
03c554283e
12 changed files with 77 additions and 95 deletions
|
|
@ -538,7 +538,7 @@ miDCPutUpCursor (pDev, pScreen, pCursor, x, y, source, mask)
|
|||
pWin = WindowTable[pScreen->myNum];
|
||||
pBuffer = pScreenPriv->pCoreBuffer;
|
||||
|
||||
if (MPHasCursor(pDev))
|
||||
if (DevHasCursor(pDev))
|
||||
pBuffer = &pScreenPriv->pCursorBuffers[pDev->id];
|
||||
|
||||
#ifdef ARGB_CURSOR
|
||||
|
|
@ -589,7 +589,7 @@ miDCSaveUnderCursor (pDev, pScreen, x, y, w, h)
|
|||
pScreenPriv = (miDCScreenPtr) pScreen->devPrivates[miDCScreenIndex].ptr;
|
||||
pBuffer = pScreenPriv->pCoreBuffer;
|
||||
|
||||
if (MPHasCursor(pDev))
|
||||
if (DevHasCursor(pDev))
|
||||
pBuffer = &pScreenPriv->pCursorBuffers[pDev->id];
|
||||
|
||||
pSave = pBuffer->pSave;
|
||||
|
|
@ -628,7 +628,7 @@ miDCRestoreUnderCursor (pDev, pScreen, x, y, w, h)
|
|||
pScreenPriv = (miDCScreenPtr) pScreen->devPrivates[miDCScreenIndex].ptr;
|
||||
pBuffer = pScreenPriv->pCoreBuffer;
|
||||
|
||||
if (MPHasCursor(pDev))
|
||||
if (DevHasCursor(pDev))
|
||||
pBuffer = &pScreenPriv->pCursorBuffers[pDev->id];
|
||||
|
||||
pSave = pBuffer->pSave;
|
||||
|
|
@ -661,7 +661,7 @@ miDCChangeSave (pDev, pScreen, x, y, w, h, dx, dy)
|
|||
pScreenPriv = (miDCScreenPtr) pScreen->devPrivates[miDCScreenIndex].ptr;
|
||||
pBuffer = pScreenPriv->pCoreBuffer;
|
||||
|
||||
if (MPHasCursor(pDev))
|
||||
if (DevHasCursor(pDev))
|
||||
pBuffer = &pScreenPriv->pCursorBuffers[pDev->id];
|
||||
|
||||
pSave = pBuffer->pSave;
|
||||
|
|
@ -812,7 +812,7 @@ miDCMoveCursor (pDev, pScreen, pCursor, x, y, w, h, dx, dy, source, mask)
|
|||
pWin = WindowTable[pScreen->myNum];
|
||||
pBuffer = pScreenPriv->pCoreBuffer;
|
||||
|
||||
if (MPHasCursor(pDev))
|
||||
if (DevHasCursor(pDev))
|
||||
pBuffer = &pScreenPriv->pCursorBuffers[pDev->id];
|
||||
|
||||
pTemp = pBuffer->pTemp;
|
||||
|
|
|
|||
Loading…
Reference in a new issue