fb: unexport fbGetScreenPixmap() macro
No external users, so no need to keep it exported any longer. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
3e21e96ae4
commit
ac947ad0d6
2
fb/fb.h
2
fb/fb.h
|
@ -274,8 +274,6 @@ typedef struct {
|
|||
|
||||
#define fbGetCompositeClip(pGC) ((pGC)->pCompositeClip)
|
||||
|
||||
#define fbGetScreenPixmap(s) ((PixmapPtr) (s)->devPrivate)
|
||||
|
||||
#define fbGetWinPrivateKey(pWin) (&fbGetScreenPrivate(((DrawablePtr) (pWin))->pScreen)->winPrivateKeyRec)
|
||||
|
||||
#define fbGetWindowPixmap(pWin) ((PixmapPtr)\
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#define fbGetGCPrivateKey(pGC) (&fbGetScreenPrivate((pGC)->pScreen)->gcPrivateKeyRec)
|
||||
#define fbGetGCPrivate(pGC) ((FbGCPrivPtr)dixLookupPrivate(&(pGC)->devPrivates, fbGetGCPrivateKey(pGC)))
|
||||
|
||||
#define fbGetScreenPixmap(s) ((PixmapPtr) (s)->devPrivate)
|
||||
|
||||
#ifdef FB_DEBUG
|
||||
|
||||
#define FB_HEAD_BITS (FbStip) (0xbaadf00d)
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include <xcb/xcb_keysyms.h>
|
||||
#include <X11/keysym.h>
|
||||
|
||||
#include "fb/fb_priv.h"
|
||||
#include "mi/mipointer_priv.h"
|
||||
#include "os/client_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
|
Loading…
Reference in New Issue