fb: unexport FbBitsStrideToStipStride() macro

Not used by any drivers, 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-05-05 13:02:10 +02:00
parent 514a142ab0
commit cffb529195
5 changed files with 5 additions and 4 deletions

View File

@ -75,7 +75,6 @@
#define FB_STIP_UNIT (1 << FB_STIP_SHIFT)
#define FB_STIP_MASK (FB_STIP_UNIT - 1)
#define FB_STIP_ALLONES ((FbStip) -1)
#define FbBitsStrideToStipStride(s) (((s) << (FB_SHIFT - FB_STIP_SHIFT)))
#define FbFullMask(n) ((n) == FB_UNIT ? FB_ALLONES : ((((FbBits) 1) << n) - 1))
#if FB_SHIFT == 5

View File

@ -10,6 +10,8 @@
#include "include/scrnintstr.h"
#include "fb/fb.h"
#define FbBitsStrideToStipStride(s) (((s) << (FB_SHIFT - FB_STIP_SHIFT)))
#ifdef FB_DEBUG
void fbValidateDrawable(DrawablePtr d);

View File

@ -24,7 +24,7 @@
#include <string.h>
#include "fb.h"
#include "fb/fb_priv.h"
void
fbPutImage(DrawablePtr pDrawable,

View File

@ -22,7 +22,7 @@
#include <dix-config.h>
#include "fb.h"
#include "fb/fb_priv.h"
typedef void (*FbDots) (FbBits * dst,
FbStride dstStride,

View File

@ -22,7 +22,7 @@
#include <dix-config.h>
#include "fb.h"
#include "fb/fb_priv.h"
static void
fbPushPattern(DrawablePtr pDrawable,