fb: unexport FB_HEAD_BITS and FB_TAIL_BITS macros

Not used by any driver, so no need to keep them exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-05-05 13:06:08 +02:00
parent cffb529195
commit df02054150
2 changed files with 3 additions and 5 deletions

View File

@ -89,11 +89,6 @@ typedef FbBits FbStip;
typedef int FbStride; typedef int FbStride;
#ifdef FB_DEBUG
#define FB_HEAD_BITS (FbStip) (0xbaadf00d)
#define FB_TAIL_BITS (FbStip) (0xbaddf0ad)
#endif
#include "fbrop.h" #include "fbrop.h"
#if BITMAP_BIT_ORDER == LSBFirst #if BITMAP_BIT_ORDER == LSBFirst

View File

@ -14,6 +14,9 @@
#ifdef FB_DEBUG #ifdef FB_DEBUG
#define FB_HEAD_BITS (FbStip) (0xbaadf00d)
#define FB_TAIL_BITS (FbStip) (0xbaddf0ad)
void fbValidateDrawable(DrawablePtr d); void fbValidateDrawable(DrawablePtr d);
void fbSetBits(FbStip * bits, int stride, FbStip data); void fbSetBits(FbStip * bits, int stride, FbStip data);