mi: unexport miMarkWindow()
Not used by any drivers/modules, so no need to keep it public. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1727>
This commit is contained in:
parent
3856b6cb5e
commit
bcbb6eec62
3
mi/mi.h
3
mi/mi.h
|
@ -280,9 +280,6 @@ extern _X_EXPORT void miPolylines(DrawablePtr pDrawable,
|
||||||
|
|
||||||
/* miwindow.c */
|
/* miwindow.c */
|
||||||
|
|
||||||
extern _X_EXPORT void miMarkWindow(WindowPtr /*pWin */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT Bool miMarkOverlappedWindows(WindowPtr /*pWin */ ,
|
extern _X_EXPORT Bool miMarkOverlappedWindows(WindowPtr /*pWin */ ,
|
||||||
WindowPtr /*pFirst */ ,
|
WindowPtr /*pFirst */ ,
|
||||||
WindowPtr * /*ppLayerWin */
|
WindowPtr * /*ppLayerWin */
|
||||||
|
|
|
@ -55,5 +55,6 @@ int miValidateTree(WindowPtr pParent, WindowPtr pChild, VTKind kind);
|
||||||
|
|
||||||
void miClearToBackground(WindowPtr pWin, int x, int y, int w, int h,
|
void miClearToBackground(WindowPtr pWin, int x, int y, int w, int h,
|
||||||
Bool generateExposures);
|
Bool generateExposures);
|
||||||
|
void miMarkWindow(WindowPtr pWin);
|
||||||
|
|
||||||
#endif /* _XSERVER_MI_PRIV_H */
|
#endif /* _XSERVER_MI_PRIV_H */
|
||||||
|
|
|
@ -4,12 +4,12 @@
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
||||||
#include "dix/cursor_priv.h"
|
#include "dix/cursor_priv.h"
|
||||||
|
#include "mi/mi_priv.h"
|
||||||
|
|
||||||
#include "scrnintstr.h"
|
#include "scrnintstr.h"
|
||||||
#include <X11/extensions/shapeproto.h>
|
#include <X11/extensions/shapeproto.h>
|
||||||
#include "validate.h"
|
#include "validate.h"
|
||||||
#include "windowstr.h"
|
#include "windowstr.h"
|
||||||
#include "mi.h"
|
|
||||||
#include "gcstruct.h"
|
#include "gcstruct.h"
|
||||||
#include "regionstr.h"
|
#include "regionstr.h"
|
||||||
#include "privates.h"
|
#include "privates.h"
|
||||||
|
|
Loading…
Reference in New Issue