aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/include/pixmap.h
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-10-14 09:46:33 +0000
committermarha <marha@users.sourceforge.net>2010-10-14 09:46:33 +0000
commitd621ea397a3d181e7a0bf07d72bd21e116fccdb8 (patch)
tree051652a7a9f4b063a9362cc712a6e04b4e151de0 /xorg-server/include/pixmap.h
parent2131cbeb6f10b52a48d2ce25cfe27417e173afa5 (diff)
downloadvcxsrv-d621ea397a3d181e7a0bf07d72bd21e116fccdb8.tar.gz
vcxsrv-d621ea397a3d181e7a0bf07d72bd21e116fccdb8.tar.bz2
vcxsrv-d621ea397a3d181e7a0bf07d72bd21e116fccdb8.zip
xserver git update 14/10/2010
Diffstat (limited to 'xorg-server/include/pixmap.h')
-rw-r--r--xorg-server/include/pixmap.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/xorg-server/include/pixmap.h b/xorg-server/include/pixmap.h
index 9761ce48c..dc76a5b54 100644
--- a/xorg-server/include/pixmap.h
+++ b/xorg-server/include/pixmap.h
@@ -55,16 +55,14 @@ SOFTWARE.
#define DRAWABLE_WINDOW 0
#define DRAWABLE_PIXMAP 1
#define UNDRAWABLE_WINDOW 2
-#define DRAWABLE_BUFFER 3
/* corresponding type masks for dixLookupDrawable() */
#define M_DRAWABLE_WINDOW (1<<0)
#define M_DRAWABLE_PIXMAP (1<<1)
#define M_UNDRAWABLE_WINDOW (1<<2)
-#define M_DRAWABLE_BUFFER (1<<3)
#define M_ANY (-1)
#define M_WINDOW (M_DRAWABLE_WINDOW|M_UNDRAWABLE_WINDOW)
-#define M_DRAWABLE (M_DRAWABLE_WINDOW|M_DRAWABLE_PIXMAP|M_DRAWABLE_BUFFER)
+#define M_DRAWABLE (M_DRAWABLE_WINDOW|M_DRAWABLE_PIXMAP)
#define M_UNDRAWABLE (M_UNDRAWABLE_WINDOW)
/* flags to PaintWindow() */
@@ -88,7 +86,7 @@ typedef union _PixUnion {
((as) == (bs) && (SamePixUnion (a, b, as)))
#define OnScreenDrawable(type) \
- ((type == DRAWABLE_WINDOW) || (type == DRAWABLE_BUFFER))
+ (type == DRAWABLE_WINDOW)
#define WindowDrawable(type) \
((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))