mi: unexport miShapedWindowIn()
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
d14ae53e1f
commit
c2ee74c523
7
mi/mi.h
7
mi/mi.h
|
@ -258,13 +258,6 @@ extern _X_EXPORT Bool miScreenInit(ScreenPtr pScreen,
|
|||
|
||||
/* mivaltree.c */
|
||||
|
||||
extern _X_EXPORT int miShapedWindowIn(RegionPtr /*universe */ ,
|
||||
RegionPtr /*bounding */ ,
|
||||
BoxPtr /*rect */ ,
|
||||
int /*x */ ,
|
||||
int /*y */
|
||||
);
|
||||
|
||||
extern _X_EXPORT int miValidateTree(WindowPtr /*pParent */ ,
|
||||
WindowPtr /*pChild */ ,
|
||||
VTKind /*kind */
|
||||
|
|
|
@ -49,5 +49,7 @@ void miPaintWindow(WindowPtr pWin, RegionPtr prgn, int what);
|
|||
void miSourceValidate(DrawablePtr pDrawable, int x, int y, int w, int h,
|
||||
unsigned int subWindowMode);
|
||||
Bool miCreateScreenResources(ScreenPtr pScreen);
|
||||
int miShapedWindowIn(RegionPtr universe, RegionPtr bounding, BoxPtr rect,
|
||||
int x, int y);
|
||||
|
||||
#endif /* _XSERVER_MI_PRIV_H */
|
||||
|
|
|
@ -91,10 +91,12 @@ Equipment Corporation.
|
|||
#include <dix-config.h>
|
||||
|
||||
#include <X11/X.h>
|
||||
|
||||
#include "mi/mi_priv.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "validate.h"
|
||||
#include "windowstr.h"
|
||||
#include "mi.h"
|
||||
#include "regionstr.h"
|
||||
#include "mivalidate.h"
|
||||
#include "globals.h"
|
||||
|
|
|
@ -92,11 +92,13 @@ Equipment Corporation.
|
|||
#include <dix-config.h>
|
||||
|
||||
#include <stddef.h> /* For NULL */
|
||||
#include <X11/X.h>
|
||||
#include <X11/X.h>
|
||||
|
||||
#include "mi/mi_priv.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "validate.h"
|
||||
#include "windowstr.h"
|
||||
#include "mi.h"
|
||||
#include "regionstr.h"
|
||||
#include "mivalidate.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue