From 7f835330a459f5ee07abf7a1aced0b534c5ccaac Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 5 May 2025 13:12:44 +0200 Subject: [PATCH] fb: drop FbRotStipLeft, FbRotRight, FbRotStipRight macros Not used anywhere, so can be dropped. Doesn't seem to be ever used since added over two decades ago. See: 9508a382f8a9f241dab097d921b6d290c1c3a776 Signed-off-by: Enrico Weigelt, metux IT consult --- fb/fb.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fb/fb.h b/fb/fb.h index 8f4d7292a..260d33e31 100644 --- a/fb/fb.h +++ b/fb/fb.h @@ -143,10 +143,6 @@ extern _X_EXPORT void fbSetBits(FbStip * bits, int stride, FbStip data); #define FbStipRight(x,n) FbScrRight(x,n) #define FbRotLeft(x,n) FbScrLeft(x,n) | (n ? FbScrRight(x,FB_UNIT-n) : 0) -#define FbRotRight(x,n) FbScrRight(x,n) | (n ? FbScrLeft(x,FB_UNIT-n) : 0) - -#define FbRotStipLeft(x,n) FbStipLeft(x,n) | (n ? FbStipRight(x,FB_STIP_UNIT-n) : 0) -#define FbRotStipRight(x,n) FbStipRight(x,n) | (n ? FbStipLeft(x,FB_STIP_UNIT-n) : 0) #define FbLeftMask(x) ( ((x) & FB_MASK) ? \ FbScrRight(FB_ALLONES,(x) & FB_MASK) : 0)