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:
Enrico Weigelt, metux IT consult 2024-04-22 15:57:02 +02:00 committed by Povilas Kanapickas
parent d14ae53e1f
commit c2ee74c523
4 changed files with 9 additions and 10 deletions

View File

@ -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 */

View File

@ -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 */

View File

@ -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"

View File

@ -93,10 +93,12 @@ Equipment Corporation.
#include <stddef.h> /* For NULL */
#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"