include: windowstr.h: unexport SameBackground() and SamBorder() macros

Not used by any drivers, so no need to keep them public.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-11-10 19:25:23 +01:00
committed by Enrico Weigelt
parent 2fe5e2519a
commit ff8d26df21
2 changed files with 7 additions and 8 deletions

View File

@@ -10,6 +10,13 @@
#include "include/dix.h"
#include "include/window.h"
#define SameBackground(as, a, bs, b) \
((as) == (bs) && ((as) == None || \
(as) == ParentRelative || \
SamePixUnion(a,b,as == BackgroundPixel)))
#define SameBorder(as, a, bs, b) EqualPixUnion(as, a, bs, b)
/*
* @brief create a window
*