mi: unexport miSendExposures()

Not used by any drivers/modules, 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/1727>
This commit is contained in:
Enrico Weigelt, metux IT consult
2024-04-22 14:08:38 +02:00
committed by Povilas Kanapickas
parent 7748984e3a
commit 8d07450904
5 changed files with 10 additions and 12 deletions

View File

@@ -127,12 +127,6 @@ extern _X_EXPORT RegionPtr miHandleExposures(DrawablePtr /*pSrcDrawable */ ,
int /*dsty */
);
extern _X_EXPORT void miSendExposures(WindowPtr /*pWin */ ,
RegionPtr /*pRgn */ ,
int /*dx */ ,
int /*dy */
);
extern _X_EXPORT void miWindowExposures(WindowPtr /*pWin */ ,
RegionPtr /*prgn */);

View File

@@ -13,7 +13,9 @@
#include "include/events.h"
#include "include/gc.h"
#include "include/pixmap.h"
#include "include/regionstr.h"
#include "include/screenint.h"
#include "include/window.h"
#include "mi/mi.h"
void miScreenClose(ScreenPtr pScreen);
@@ -40,4 +42,6 @@ typedef void (*mieqHandler) (int screen, InternalEvent *event,
DeviceIntPtr dev);
void mieqSetHandler(int event, mieqHandler handler);
void miSendExposures(WindowPtr pWin, RegionPtr pRgn, int dx, int dy);
#endif /* _XSERVER_MI_PRIV_H */

View File

@@ -74,10 +74,12 @@ Equipment Corporation.
#include <dix-config.h>
#include <X11/X.h>
#include <X11/Xmd.h>
#include <X11/Xproto.h>
#include <X11/Xprotostr.h>
#include "dix/dix_priv.h"
#include "mi/mi_priv.h"
#include "misc.h"
#include "regionstr.h"
@@ -86,11 +88,7 @@ Equipment Corporation.
#include "windowstr.h"
#include "pixmap.h"
#include "input.h"
#include "dixstruct.h"
#include "mi.h"
#include <X11/Xmd.h>
#include "globals.h"
#ifdef PANORAMIX