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()
{
mieqProcessInputEvents();
miPointerUpdate();
}
void DDXRingBell(int volume, int pitch, int duration)

View File

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

View File

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

View File

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