Backport fix for corruption bug (RH #614542)

This commit is contained in:
Adel Gadllah 2010-11-17 23:26:54 +01:00
parent c8ea250dd6
commit d54aeb8de7
2 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,25 @@
From 0f95c41a0aa175ddf7947ba18b01f746c95594a9 Mon Sep 17 00:00:00 2001
From: Paul Donohue <compiz@paulsd.com>
Date: Sun, 17 Oct 2010 16:24:14 +0000
Subject: Fix pixmap size calculation, server drawn borders are also included in
the pixmap.
---
diff --git a/src/window.c b/src/window.c
index a925288..6674643 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1446,8 +1446,8 @@ bindWindow (CompWindow *w)
}
w->pixmap = XCompositeNameWindowPixmap (dpy, w->id);
- w->width = attr.width;
- w->height = attr.height;
+ w->width = attr.width + attr.border_width * 2;
+ w->height = attr.height + attr.border_width * 2;
XUngrabServer (dpy);
}
--
cgit v0.8.3.1-30-gff3a

View File

@ -11,7 +11,7 @@ URL: http://www.go-compiz.org
License: GPLv2+ and LGPLv2+ and MIT
Group: User Interface/Desktops
Version: 0.8.6
Release: 5%{?dist}
Release: 6%{?dist}
Summary: OpenGL window and compositing manager
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@ -63,6 +63,8 @@ Patch115: compiz-0.8.6-focus-denied-stacking-fix.patch
#upstream patches
#http://gitweb.compiz.org/?p=compiz/core;a=commit;h=5ea5e2130c56d405fcccd63932918fc49ca1f1b9
Patch116: gdk_display_deprecated.patch
# 0f95c41a0aa175ddf7947ba18b01f746c95594a9
Patch117: compiz-0.8.6-pixmap-size-calculation.patch
%description
Compiz is one of the first OpenGL-accelerated compositing window
@ -288,6 +290,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Wed Nov 17 2010 Adel Gadllah <adel.gadllah@gmail.com> - 0.8.6-6
- Backport fix for corruption bug (RH #614542)
* Thu Oct 14 2010 leigh scott <leigh123linux@googlemail.com> - 0.8.6-5
- Don't rely on deprecated gdk symbol gdk_display.
- Add Br libxslt-devel