This commit is contained in:
parent
65b4dafd33
commit
ed320cc3d5
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 21 06:01:30 CEST 2008 - sndirsch@suse.de
|
||||||
|
|
||||||
|
- MesaLib-7.2_intel-2008-q3_793c3b9-46921a5.diff
|
||||||
|
* i965: Fix a potential assertion failure.
|
||||||
|
* intel: GLSL 1.20 is broken in Mesa, so disable it in the i965
|
||||||
|
driver
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 9 09:56:11 CEST 2008 - sndirsch@suse.de
|
Thu Oct 9 09:56:11 CEST 2008 - sndirsch@suse.de
|
||||||
|
|
||||||
|
@ -27,12 +27,13 @@ Provides: xorg-x11-Mesa
|
|||||||
Obsoletes: xorg-x11-Mesa
|
Obsoletes: xorg-x11-Mesa
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 7.2
|
Version: 7.2
|
||||||
Release: 3
|
Release: 5
|
||||||
Summary: Mesa is a 3-D graphics library with an API which is very similar to that of OpenGL
|
Summary: Mesa is a 3-D graphics library with an API which is very similar to that of OpenGL
|
||||||
Source: MesaLib-%{version}_intel-2008-q3_793c3b9.tar.bz2
|
Source: MesaLib-%{version}_intel-2008-q3_793c3b9.tar.bz2
|
||||||
Source1: MesaDemos-%{version}.tar.bz2
|
Source1: MesaDemos-%{version}.tar.bz2
|
||||||
Source3: README.updates
|
Source3: README.updates
|
||||||
Source4: manual-pages.tar.bz2
|
Source4: manual-pages.tar.bz2
|
||||||
|
Patch: MesaLib-7.2_intel-2008-q3_793c3b9-46921a5.diff
|
||||||
Patch1: dri_driver_dir.diff
|
Patch1: dri_driver_dir.diff
|
||||||
Patch6: link-shared.diff
|
Patch6: link-shared.diff
|
||||||
Patch7: disable_gem_warning.diff
|
Patch7: disable_gem_warning.diff
|
||||||
@ -116,6 +117,7 @@ test -f progs/ggi/asc-view.c && exit 1
|
|||||||
rm -rf src/glut progs/{demos,redbook,samples,xdemos,glsl}
|
rm -rf src/glut progs/{demos,redbook,samples,xdemos,glsl}
|
||||||
# we use freeglut
|
# we use freeglut
|
||||||
rm -f include/GL/{glut.h,uglglutshapes.h,glutf90.h}
|
rm -f include/GL/{glut.h,uglglutshapes.h,glutf90.h}
|
||||||
|
%patch -p1
|
||||||
%patch1
|
%patch1
|
||||||
sed -i 's/REPLACE/%_lib/g' src/glx/x11/Makefile
|
sed -i 's/REPLACE/%_lib/g' src/glx/x11/Makefile
|
||||||
### FIXME
|
### FIXME
|
||||||
@ -226,6 +228,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/usr/%{_lib}/libOSMesa.a
|
/usr/%{_lib}/libOSMesa.a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 21 2008 sndirsch@suse.de
|
||||||
|
- MesaLib-7.2_intel-2008-q3_793c3b9-46921a5.diff
|
||||||
|
* i965: Fix a potential assertion failure.
|
||||||
|
* intel: GLSL 1.20 is broken in Mesa, so disable it in the i965
|
||||||
|
driver
|
||||||
* Thu Oct 09 2008 sndirsch@suse.de
|
* Thu Oct 09 2008 sndirsch@suse.de
|
||||||
- Mesa 7.2_intel-2008-q3_793c3b9
|
- Mesa 7.2_intel-2008-q3_793c3b9
|
||||||
* Intel-2008-Q3-RC3 release (Mesa 7.2 + GEM code)
|
* Intel-2008-Q3-RC3 release (Mesa 7.2 + GEM code)
|
||||||
|
47
MesaLib-7.2_intel-2008-q3_793c3b9-46921a5.diff
Normal file
47
MesaLib-7.2_intel-2008-q3_793c3b9-46921a5.diff
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
commit c281d3d5caedf75eaa3c877f94656f982aad868d
|
||||||
|
Author: Xiang, Haihao <haihao.xiang@intel.com>
|
||||||
|
Date: Tue Oct 7 17:27:33 2008 +0800
|
||||||
|
|
||||||
|
i965: Fix a potential assertion failure.
|
||||||
|
(cherry picked from commit d01f9fa778cb0d230c697badaea078f6f37da743)
|
||||||
|
|
||||||
|
diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c
|
||||||
|
index f148b10..89b7c2a 100644
|
||||||
|
--- a/src/mesa/drivers/dri/i965/brw_draw_upload.c
|
||||||
|
+++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c
|
||||||
|
@@ -365,8 +365,10 @@ static void brw_prepare_vertices(struct brw_context *brw)
|
||||||
|
if (i == 0) {
|
||||||
|
/* Position array not properly enabled:
|
||||||
|
*/
|
||||||
|
- if (input->glarray->StrideB == 0)
|
||||||
|
- return;
|
||||||
|
+ if (input->glarray->StrideB == 0) {
|
||||||
|
+ intel->Fallback = 1;
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
|
||||||
|
interleave = input->glarray->StrideB;
|
||||||
|
ptr = input->glarray->Ptr;
|
||||||
|
commit 46921a5ee832a3443894dcc98e065d2f535e899d
|
||||||
|
Author: Ian Romanick <ian.d.romanick@intel.com>
|
||||||
|
Date: Fri Oct 10 11:47:43 2008 -0700
|
||||||
|
|
||||||
|
intel: GLSL 1.20 is broken in Mesa, so disable it in the i965 driver
|
||||||
|
(cherry picked from commit e7002694418cd0decb1cd0d9121f634480e5f0d6)
|
||||||
|
|
||||||
|
diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c
|
||||||
|
index f394b98..4c04d08 100644
|
||||||
|
--- a/src/mesa/drivers/dri/intel/intel_context.c
|
||||||
|
+++ b/src/mesa/drivers/dri/intel/intel_context.c
|
||||||
|
@@ -258,7 +258,11 @@ static const struct dri_extension brw_extensions[] = {
|
||||||
|
{ "GL_ARB_point_sprite", NULL },
|
||||||
|
{ "GL_ARB_shader_objects", GL_ARB_shader_objects_functions },
|
||||||
|
{ "GL_ARB_shading_language_100", GL_VERSION_2_0_functions },
|
||||||
|
+#if 0
|
||||||
|
+ /* Support for GLSL 1.20 is currently broken in core Mesa.
|
||||||
|
+ */
|
||||||
|
{ "GL_ARB_shading_language_120", GL_VERSION_2_1_functions },
|
||||||
|
+#endif
|
||||||
|
{ "GL_ARB_shadow", NULL },
|
||||||
|
{ "GL_ARB_texture_non_power_of_two", NULL },
|
||||||
|
{ "GL_ARB_vertex_shader", GL_ARB_vertex_shader_functions },
|
Loading…
Reference in New Issue
Block a user