From cbb14a0fb1d1b582aab9015f5c2d1cbca0f2f942 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 22 Apr 2025 20:57:38 +0200 Subject: [PATCH] exa: unexport exaMoveOutPixmap() Only used inside EXA code, not used by any drivers, so no need to keep it exported any longer. Signed-off-by: Enrico Weigelt, metux IT consult --- exa/exa.h | 3 --- exa/exa_priv.h | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/exa/exa.h b/exa/exa.h index fba06ca0f..d294546b0 100644 --- a/exa/exa.h +++ b/exa/exa.h @@ -802,9 +802,6 @@ extern _X_EXPORT Bool extern _X_EXPORT void exaMoveInPixmap(PixmapPtr pPixmap); -extern _X_EXPORT void - exaMoveOutPixmap(PixmapPtr pPixmap); - /* in exa_unaccel.c */ extern _X_EXPORT CARD32 exaGetPixmapFirstPixel(PixmapPtr pPixmap); diff --git a/exa/exa_priv.h b/exa/exa_priv.h index f9e166c66..87d0ca997 100644 --- a/exa/exa_priv.h +++ b/exa/exa_priv.h @@ -724,4 +724,6 @@ void void exaPrepareAccessReg_classic(PixmapPtr pPixmap, int index, RegionPtr pReg); +void exaMoveOutPixmap(PixmapPtr pPixmap); + #endif /* EXAPRIV_H */