mi: remove miPointerUpdate() -> replaced by miPointerUpdateSprite().

In the xnest and vfb DDX we don't need the call anyway, it's performed by
mieqProcessInputEvent.
This commit is contained in:
Peter Hutterer 2008-05-16 19:22:32 +09:30
parent 622d7c1d89
commit 48ba58feac
4 changed files with 1 additions and 14 deletions

View File

@ -52,7 +52,6 @@ void
ProcessInputEvents() ProcessInputEvents()
{ {
mieqProcessInputEvents(); mieqProcessInputEvents();
miPointerUpdate();
} }
void DDXRingBell(int volume, int pitch, int duration) void DDXRingBell(int volume, int pitch, int duration)

View File

@ -49,7 +49,6 @@ void
ProcessInputEvents() ProcessInputEvents()
{ {
mieqProcessInputEvents(); mieqProcessInputEvents();
miPointerUpdate();
} }
int int

View File

@ -374,17 +374,11 @@ miPointerWarpCursor (pDev, pScreen, x, y)
*/ */
/* /*
* miPointerUpdate * miPointerUpdateSprite
* *
* Syncronize the sprite with the cursor - called from ProcessInputEvents * Syncronize the sprite with the cursor - called from ProcessInputEvents
*/ */
void
miPointerUpdate ()
{
miPointerUpdateSprite(inputInfo.pointer);
}
void void
miPointerUpdateSprite (DeviceIntPtr pDev) miPointerUpdateSprite (DeviceIntPtr pDev)
{ {

View File

@ -122,11 +122,6 @@ extern int miPointerGetMotionEvents(
ScreenPtr /*pScreen*/ ScreenPtr /*pScreen*/
); );
/* Deprecated in favour of miPointerUpdateSprite. */
extern void miPointerUpdate(
void
) _X_DEPRECATED;
/* Deprecated in favour of miSetPointerPosition. */ /* Deprecated in favour of miSetPointerPosition. */
extern void miPointerDeltaCursor( extern void miPointerDeltaCursor(
int /*dx*/, int /*dx*/,