summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Airlie <airlied@fedoraproject.org>2009-09-09 05:08:05 +0000
committerDave Airlie <airlied@fedoraproject.org>2009-09-09 05:08:05 +0000
commitb5979425ee9814723ba5a7a326951311f43650e9 (patch)
tree17820dd087dd528fbae076d5471ace74e7ea4989
parent0eb0f389a4a2591573f9711fa50bbbf98f7ce0b8 (diff)
downloadmesa-b5979425ee9814723ba5a7a326951311f43650e9.tar.gz
mesa-b5979425ee9814723ba5a7a326951311f43650e9.tar.xz
mesa-b5979425ee9814723ba5a7a326951311f43650e9.zip
- r600 fix for TFP from ircmesa-7_6-0_11_fc12
-rw-r--r--mesa.spec7
-rw-r--r--r600-fix-tfp.patch31
2 files changed, 37 insertions, 1 deletions
diff --git a/mesa.spec b/mesa.spec
index aa9c40a..e1e51cb 100644
--- a/mesa.spec
+++ b/mesa.spec
@@ -21,7 +21,7 @@
Summary: Mesa graphics libraries
Name: mesa
Version: 7.6
-Release: 0.10%{?dist}
+Release: 0.11%{?dist}
License: MIT
Group: System Environment/Libraries
URL: http://www.mesa3d.org
@@ -43,6 +43,7 @@ Patch3: mesa-no-mach64.patch
Patch7: mesa-7.1-link-shared.patch
Patch9: intel-revert-vbl.patch
+Patch10: r600-fix-tfp.patch
Patch13: mesa-7.5-sparc64.patch
@@ -178,6 +179,7 @@ This package provides some demo applications for testing Mesa.
%patch3 -p1 -b .no-mach64
%patch7 -p1 -b .dricore
%patch9 -p1 -b .intel-vbl
+%patch10 -p1 -b .r600_tfp
%patch13 -p1 -b .sparc64
%patch20 -p1 -b .dri2-page-flip
%patch30 -p1 -b .vblank-warning
@@ -387,6 +389,9 @@ rm -rf $RPM_BUILD_ROOT
%{demodir}
%changelog
+* Wed Sep 09 2009 Dave Airlie <airlied@redhat.com> 7.6-0.11
+- r600 fix for TFP from irc
+
* Wed Sep 09 2009 Dave Airlie <airlied@redhat.com> 7.6-0.10
- new git snap for 090909
diff --git a/r600-fix-tfp.patch b/r600-fix-tfp.patch
new file mode 100644
index 0000000..b106a2b
--- /dev/null
+++ b/r600-fix-tfp.patch
@@ -0,0 +1,31 @@
+From 5aaa45de4c367dd6ec5daa6f4a54504b0aff1aca Mon Sep 17 00:00:00 2001
+From: Dave Airlie <airlied@linux.ie>
+Date: Wed, 9 Sep 2009 15:02:16 +1000
+Subject: [PATCH] r600: don't setup hardware state if TFP
+
+if we have a BO here it means TFP and we should have set it
+up already.
+
+tested by b0le on #radeon
+---
+ src/mesa/drivers/dri/r600/r600_texstate.c | 4 ++++
+ 1 files changed, 4 insertions(+), 0 deletions(-)
+
+diff --git a/src/mesa/drivers/dri/r600/r600_texstate.c b/src/mesa/drivers/dri/r600/r600_texstate.c
+index fff6e74..ff4ef1e 100644
+--- a/src/mesa/drivers/dri/r600/r600_texstate.c
++++ b/src/mesa/drivers/dri/r600/r600_texstate.c
+@@ -608,6 +608,10 @@ static void setup_hardware_state(context_t *rmesa, struct gl_texture_object *tex
+ int firstlevel = t->mt ? t->mt->firstLevel : 0;
+ GLuint uTexelPitch, row_align;
+
++ if ( t->bo ) {
++ return GL_TRUE;
++ }
++
+ firstImage = t->base.Image[0][firstlevel];
+
+ if (!t->image_override) {
+--
+1.6.2.5
+