aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/exa/exa.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-07-14 10:57:04 +0000
committermarha <marha@users.sourceforge.net>2010-07-14 10:57:04 +0000
commit8fb9d7f4ca923dc7f640a0df6c871348a3e554ab (patch)
tree39ebbf9255fe0fd660ea645f4ebdef3287a5078b /xorg-server/exa/exa.c
parent80b785273c916676a94cbe1d7dfbbc93b58127d5 (diff)
parent865af20e32591176d03acf984d9b5788d5ebce21 (diff)
downloadvcxsrv-8fb9d7f4ca923dc7f640a0df6c871348a3e554ab.tar.gz
vcxsrv-8fb9d7f4ca923dc7f640a0df6c871348a3e554ab.tar.bz2
vcxsrv-8fb9d7f4ca923dc7f640a0df6c871348a3e554ab.zip
svn merge ^/branches/released .
Diffstat (limited to 'xorg-server/exa/exa.c')
-rw-r--r--xorg-server/exa/exa.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/xorg-server/exa/exa.c b/xorg-server/exa/exa.c
index 823c9a23f..eda9ad7a7 100644
--- a/xorg-server/exa/exa.c
+++ b/xorg-server/exa/exa.c
@@ -435,6 +435,29 @@ exaFinishAccess(DrawablePtr pDrawable, int index)
(*pExaScr->info->FinishAccess) (pPixmap, i);
}
+
+/**
+ * Helper for things common to all schemes when a pixmap is destroyed
+ */
+void
+exaDestroyPixmap(PixmapPtr pPixmap)
+{
+ ExaScreenPriv(pPixmap->drawable.pScreen);
+ int i;
+
+ /* Finish access if it was prepared (e.g. pixmap created during
+ * software fallback)
+ */
+ for (i = 0; i < EXA_NUM_PREPARE_INDICES; i++) {
+ if (pExaScr->access[i].pixmap == pPixmap) {
+ exaFinishAccess(&pPixmap->drawable, i);
+ pExaScr->access[i].pixmap = NULL;
+ break;
+ }
+ }
+}
+
+
/**
* Here begins EXA's GC code.
* Do not ever access the fb/mi layer directly.