mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 16:20:03 +01:00
Revert "mi: make miRecolorCursor() static"
This reverts commit 6dbb957922.
This commit is contained in:
parent
859e4282d4
commit
5bd03e1824
5 changed files with 11 additions and 7 deletions
|
|
@ -41,7 +41,6 @@
|
|||
#include <X11/extensions/XKBproto.h>
|
||||
|
||||
#include "dix/input_priv.h"
|
||||
#include "mi/mi_priv.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "resource.h"
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ is" without express or implied warranty.
|
|||
#include <X11/Xdefs.h>
|
||||
#include <X11/Xproto.h>
|
||||
|
||||
#include "mi/mi.h"
|
||||
#include "mi/mi_priv.h"
|
||||
#include "mi/mipointer_priv.h"
|
||||
|
||||
|
|
|
|||
8
mi/mi.h
8
mi/mi.h
|
|
@ -113,6 +113,14 @@ miDoCopy(DrawablePtr pSrcDrawable,
|
|||
int xOut,
|
||||
int yOut, miCopyProc copyProc, Pixel bitplane, void *closure);
|
||||
|
||||
/* micursor.c */
|
||||
|
||||
extern _X_EXPORT void miRecolorCursor(DeviceIntPtr /* pDev */ ,
|
||||
ScreenPtr /*pScr */ ,
|
||||
CursorPtr /*pCurs */ ,
|
||||
Bool /*displayed */
|
||||
);
|
||||
|
||||
/* midash.c */
|
||||
|
||||
extern _X_EXPORT void miStepDash(int /*dist */ ,
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/colormap_priv.h"
|
||||
|
||||
#include "os/osdep.h"
|
||||
#include "scrnintstr.h"
|
||||
#include "colormapst.h"
|
||||
#include "resource.h"
|
||||
|
|
|
|||
|
|
@ -115,10 +115,6 @@ static void miPointerMoveNoEvent(DeviceIntPtr pDev, ScreenPtr pScreen, int x,
|
|||
|
||||
static InternalEvent *mipointermove_events; /* for WarpPointer MotionNotifies */
|
||||
|
||||
static void
|
||||
miRecolorCursor(DeviceIntPtr pDev, ScreenPtr pScr,
|
||||
CursorPtr pCurs, Bool displayed);
|
||||
|
||||
Bool
|
||||
miPointerInitialize(ScreenPtr pScreen,
|
||||
miPointerSpriteFuncPtr spriteFuncs,
|
||||
|
|
@ -299,7 +295,7 @@ miPointerSetCursorPosition(DeviceIntPtr pDev, ScreenPtr pScreen,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
void
|
||||
miRecolorCursor(DeviceIntPtr pDev, ScreenPtr pScr,
|
||||
CursorPtr pCurs, Bool displayed)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue