Updating link to change in openSUSE:Factory/Mesa revision 88.0

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=398ed9be3905635bdc6defae084db33f
This commit is contained in:
OBS User buildservice-autocommit 2010-06-09 14:45:18 +00:00 committed by Git OBS Bridge
parent cea8a924cd
commit 9ea7eb1419
3 changed files with 30 additions and 1 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Jun 7 19:27:30 CEST 2010 - sndirsch@suse.de
- mesa-commit-06c72da.diff
* intel: Update renderbuffers unconditionally in
intelSetTexBuffer2() (bnc #610323)
-------------------------------------------------------------------
Sat May 22 16:00:55 CEST 2010 - sndirsch@suse.de

View File

@ -35,7 +35,7 @@ Obsoletes: Mesa-64bit
#
%define _version 7.8.1
Version: 7.8.1
Release: 3
Release: 4
Summary: Mesa is a 3-D graphics library with an API which is very similar to that of OpenGL
Source: MesaLib-%{_version}.tar.bz2
Source1: MesaDemos-%{_version}.tar.bz2
@ -48,6 +48,7 @@ Patch1: dri_driver_dir.diff
# to be upstreamed
Patch8: egl-buildfix.diff
Patch9: Mesa_indirect_old_xserver_compatibility.diff
Patch10: mesa-commit-06c72da.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -117,6 +118,7 @@ sed -i 's/REPLACE/%_lib/g' src/glx/Makefile
sed -i 's/REPLACE/%_lib/g' src/egl/drivers/dri2/Makefile
%patch8
%patch9 -p0
%patch10 -p1
%build

20
mesa-commit-06c72da.diff Normal file
View File

@ -0,0 +1,20 @@
commit 06c72da97a1bce87bc4b3fb8e7e18bf966926acb
Author: Kristian Høgsberg <krh@bitplanet.net>
Date: Tue May 4 13:35:23 2010 -0400
intel: Update renderbuffers unconditionally in intelSetTexBuffer2()
diff --git a/src/mesa/drivers/dri/intel/intel_tex_image.c b/src/mesa/drivers/dri/intel/intel_tex_image.c
index 9db96ac..a0e734b 100644
--- a/src/mesa/drivers/dri/intel/intel_tex_image.c
+++ b/src/mesa/drivers/dri/intel/intel_tex_image.c
@@ -728,8 +728,7 @@ intelSetTexBuffer2(__DRIcontext *pDRICtx, GLint target,
if (!intelObj)
return;
- if (dPriv->lastStamp != dPriv->dri2.stamp)
- intel_update_renderbuffers(pDRICtx, dPriv);
+ intel_update_renderbuffers(pDRICtx, dPriv);
rb = intel_get_renderbuffer(fb, BUFFER_FRONT_LEFT);
/* If the region isn't set, then intel_update_renderbuffers was unable