diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-04-06 16:24:25 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-04-06 16:24:25 +0000 |
commit | 5e0408406593e352eccd62158d0a638edd974ba2 (patch) | |
tree | 75474c1e5a1be3f44fb951ead88b61f5b125195e /packages | |
parent | 1c4fbfdb0d2925e76d38914d6aac41838347ea3c (diff) | |
parent | 242ff3fff6d90d3fe37f990884429f3e814ac637 (diff) |
merge of '091a66f434b8379c559b5210a59a55fd43a5d229'
and 'b359807f888dcaec0bff04957a0ab969e8a65044'
Diffstat (limited to 'packages')
-rw-r--r-- | packages/xorg-xserver/xserver-kdrive/w100-fix-offscreen-bmp.patch | 15 | ||||
-rw-r--r-- | packages/xorg-xserver/xserver-kdrive_1.2.0.bb | 3 |
2 files changed, 17 insertions, 1 deletions
diff --git a/packages/xorg-xserver/xserver-kdrive/w100-fix-offscreen-bmp.patch b/packages/xorg-xserver/xserver-kdrive/w100-fix-offscreen-bmp.patch new file mode 100644 index 0000000000..39bc22c6b3 --- /dev/null +++ b/packages/xorg-xserver/xserver-kdrive/w100-fix-offscreen-bmp.patch @@ -0,0 +1,15 @@ +Patch suggested by Manuel Teira to actually enable offscreen pixmap +acceleration in Xw100. Value 16 is empirical, works well on hx4700, +but in case of issues, consider double it (other accelerated drivers +use bigger values than 16). + +--- xorg-server-1.2.0/hw/kdrive/w100/ati_draw.c.org 2007-04-04 10:28:57.000000000 +0000 ++++ xorg-server-1.2.0/hw/kdrive/w100/ati_draw.c 2007-04-06 14:43:40.000000000 +0000 +@@ -433,6 +433,7 @@ + * or kaaPixmapUseScreen. But this is probably caused by some bug in this + * driver... */ + atis->kaa.flags |= KAA_OFFSCREEN_PIXMAPS; ++ atis->kaa.pitchAlign = 16; + if (!kaaDrawInit(pScreen, &atis->kaa)) + return FALSE; + diff --git a/packages/xorg-xserver/xserver-kdrive_1.2.0.bb b/packages/xorg-xserver/xserver-kdrive_1.2.0.bb index cb58eee8a3..2ba1b09923 100644 --- a/packages/xorg-xserver/xserver-kdrive_1.2.0.bb +++ b/packages/xorg-xserver/xserver-kdrive_1.2.0.bb @@ -3,12 +3,13 @@ require xserver-kdrive-common.inc DEPENDS += "libxkbfile libxcalibrate" PE = "1" -PR = "r5" +PR = "r6" SRC_URI = "${XORG_MIRROR}/individual/xserver/xorg-server-${PV}.tar.bz2 \ ${KDRIVE_COMMON_PATCHES} \ file://enable-xcalibrate.patch;patch=1 \ file://w100.patch;patch=1 \ + file://w100-fix-offscreen-bmp.patch;patch=1 \ " S = "${WORKDIR}/xorg-server-${PV}" |