fb: unexport fbSetBits()

Only used within fb/, not by any driver, so no need to keep it exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-04-22 21:09:54 +02:00
parent 97e82b3812
commit 4a94e4d01e
2 changed files with 1 additions and 2 deletions

View File

@ -110,8 +110,6 @@ typedef FbBits FbStip;
typedef int FbStride; typedef int FbStride;
#ifdef FB_DEBUG #ifdef FB_DEBUG
extern _X_EXPORT void fbSetBits(FbStip * bits, int stride, FbStip data);
#define FB_HEAD_BITS (FbStip) (0xbaadf00d) #define FB_HEAD_BITS (FbStip) (0xbaadf00d)
#define FB_TAIL_BITS (FbStip) (0xbaddf0ad) #define FB_TAIL_BITS (FbStip) (0xbaddf0ad)
#endif #endif

View File

@ -10,6 +10,7 @@
#ifdef FB_DEBUG #ifdef FB_DEBUG
void fbValidateDrawable(DrawablePtr d); void fbValidateDrawable(DrawablePtr d);
void fbSetBits(FbStip * bits, int stride, FbStip data);
#else #else