mi: unexport miPointerUpdateSprite()
Not used by any (known) driver, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1505>
This commit is contained in:
parent
64cd343569
commit
fdd509f345
|
@ -38,6 +38,7 @@
|
|||
#include "dix/input_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/exevents_priv.h"
|
||||
#include "mi/mipointer_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "mi/mipointer_priv.h"
|
||||
|
||||
#include "inputstr.h" /* DeviceIntPtr */
|
||||
#include "windowstr.h" /* window structure */
|
||||
|
|
|
@ -37,8 +37,12 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xproto.h>
|
||||
#include <X11/extensions/XI.h>
|
||||
#include <X11/extensions/XIproto.h>
|
||||
#include <X11/extensions/geproto.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "mi/mipointer_priv.h"
|
||||
#include "os/screensaver.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
@ -49,9 +53,6 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include "mi.h"
|
||||
#include "mipointer.h"
|
||||
#include "scrnintstr.h"
|
||||
#include <X11/extensions/XI.h>
|
||||
#include <X11/extensions/XIproto.h>
|
||||
#include <X11/extensions/geproto.h>
|
||||
#include "extinit.h"
|
||||
#include "exglobals.h"
|
||||
#include "eventstr.h"
|
||||
|
|
|
@ -90,9 +90,6 @@ extern _X_EXPORT ScreenPtr
|
|||
miPointerSetPosition(DeviceIntPtr pDev, int mode, double *x, double *y,
|
||||
int *nevents, InternalEvent *events);
|
||||
|
||||
extern _X_EXPORT void
|
||||
miPointerUpdateSprite(DeviceIntPtr pDev);
|
||||
|
||||
/* Invalidate current sprite, forcing reload on next
|
||||
* sprite setting (window crossing, grab action, etc)
|
||||
*/
|
||||
|
|
|
@ -15,5 +15,6 @@ Bool miPointerInitialize(ScreenPtr pScreen, miPointerSpriteFuncPtr spriteFuncs,
|
|||
miPointerScreenFuncPtr screenFuncs, Bool waitForUpdate);
|
||||
void miPointerWarpCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
|
||||
void miPointerSetScreen(DeviceIntPtr pDev, int screen_num, int x, int y);
|
||||
void miPointerUpdateSprite(DeviceIntPtr pDev);
|
||||
|
||||
#endif /* _XSERVER_MI_MIPOINTER_PRIV_H */
|
||||
|
|
Loading…
Reference in New Issue