[PATCH 4/8] mi: Shortcut miDoCopy/miCopyArea based on paintable not realized

Adam Jackson ajax at redhat.com
Mon Nov 17 12:41:11 PST 2014


Signed-off-by: Adam Jackson <ajax at redhat.com>
---
 mi/mibitblt.c | 4 ++--
 mi/micopy.c   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/mi/mibitblt.c b/mi/mibitblt.c
index 114f72d..e2a5f3d 100644
--- a/mi/mibitblt.c
+++ b/mi/mibitblt.c
@@ -96,9 +96,9 @@ miCopyArea(DrawablePtr pSrcDrawable,
     srcx = xIn + pSrcDrawable->x;
     srcy = yIn + pSrcDrawable->y;
 
-    /* If the destination isn't realized, this is easy */
+    /* If the destination isn't paintable, this is easy */
     if (pDstDrawable->type == DRAWABLE_WINDOW &&
-        !((WindowPtr) pDstDrawable)->realized)
+        !((WindowPtr) pDstDrawable)->paintable)
         return NULL;
 
     /* clip the source */
diff --git a/mi/micopy.c b/mi/micopy.c
index 2409c78..1098848 100644
--- a/mi/micopy.c
+++ b/mi/micopy.c
@@ -155,7 +155,7 @@ miDoCopy(DrawablePtr pSrcDrawable,
     /* Short cut for unmapped windows */
 
     if (pDstDrawable->type == DRAWABLE_WINDOW &&
-        !((WindowPtr) pDstDrawable)->realized) {
+        !((WindowPtr) pDstDrawable)->paintable) {
         return NULL;
     }
 
-- 
1.9.3



More information about the xorg-devel mailing list