[Mesa-dev] [Bug 54372] New: GLX_INTEL_swap_event crashes driver when swapping window buffers

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54372 Bug #: 54372 Summary: GLX_INTEL_swap_event crashes driver when swapping window buffers Classification: Unclassified Product: Mesa Version: 8.0 Platform: x86-64 (AMD64)

[Mesa-dev] [Bug 54370] New: Autoconf mistakenly reports missing packages in Debian 64

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54370 Bug #: 54370 Summary: Autoconf mistakenly reports missing packages in Debian 64 Classification: Unclassified Product: Mesa Version: 8.0 Platform: Other OS/Vers

[Mesa-dev] [Bug 54369] Make fails on Debian Squeeze 644

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54369 netf...@gmail.com changed: What|Removed |Added Priority|medium |high -- Configure bugmail: https://b

[Mesa-dev] [Bug 54369] New: Make fails on Debian Squeeze 644

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54369 Bug #: 54369 Summary: Make fails on Debian Squeeze 644 Classification: Unclassified Product: Mesa Version: 8.0 Platform: x86-64 (AMD64) OS/Version: Linux (All) Status:

[Mesa-dev] [PATCH] Set OSMESA_VERSION=8.

2012-09-01 Thread Johannes Obermayr
VERSION_NUMBER is not required anymore. So it will be removed. --- configure.ac |8 src/mesa/drivers/osmesa/Makefile.am |4 ++-- src/mesa/drivers/osmesa/osmesa.pc.in |2 +- 3 Dateien geändert, 7 Zeilen hinzugefügt(+), 7 Zeilen entfernt(-) diff --git a

[Mesa-dev] [Bug 54365] [swrast] piglit fbo-1d regression

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54365 Vinson Lee changed: What|Removed |Added CC||bri...@vmware.com -- Configure bugmail: ht

[Mesa-dev] [Bug 54365] New: [swrast] piglit fbo-1d regression

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54365 Bug #: 54365 Summary: [swrast] piglit fbo-1d regression Classification: Unclassified Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status

Re: [Mesa-dev] [PATCH] r600g: adjust QUANT_MODE for higher precision

2012-09-01 Thread Andy Furniss
Vadim Girlin wrote: Use 1/256 for R6xx/7xx, 1/4096 for evergreen, instead of default 1/16. Helps to pass some piglit tests (fbo, multisample). It also fixes the worse inaccuracies seen when using vdpau mpeg2 decode on my rv790. It's still not as accurate as s/w, but the remaining errors mayb

Re: [Mesa-dev] [PATCH] osmesa: Create a symlinked .so.8

2012-09-01 Thread Matt Turner
On Sat, Sep 1, 2012 at 2:44 PM, Johannes Obermayr wrote: > --- > src/mesa/drivers/osmesa/Makefile.am |8 > 1 Datei geändert, 8 Zeilen hinzugefügt(+) > > diff --git a/src/mesa/drivers/osmesa/Makefile.am > b/src/mesa/drivers/osmesa/Makefile.am > index db1d14f..0696036 100644 > --- a/s

[Mesa-dev] [PATCH] osmesa: Create a symlinked .so.8

2012-09-01 Thread Johannes Obermayr
--- src/mesa/drivers/osmesa/Makefile.am |8 1 Datei geändert, 8 Zeilen hinzugefügt(+) diff --git a/src/mesa/drivers/osmesa/Makefile.am b/src/mesa/drivers/osmesa/Makefile.am index db1d14f..0696036 100644 --- a/src/mesa/drivers/osmesa/Makefile.am +++ b/src/mesa/drivers/osmesa/Makefile

[Mesa-dev] [Bug 54363] New: Mesa 9.0-devel implementation error: Bad bpp in _mesa_meta_CopyTexSubImage()

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54363 Bug #: 54363 Summary: Mesa 9.0-devel implementation error: Bad bpp in _mesa_meta_CopyTexSubImage() Classification: Unclassified Product: Mesa Version: git Platform: Al

[Mesa-dev] [Bug 52167] llvmpipe test programs link fails when ld --as-needed option is used

2012-09-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52167 --- Comment #7 from Fabio Pedretti 2012-09-01 19:07:34 UTC --- It seems that this, or at least bug #49504 which is a duplicate, is fixed. Close it if you agree. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ---

[Mesa-dev] [PATCH] mesa: allow MESA_GL_VERSION_OVERRIDE to override the API type

2012-09-01 Thread Jordan Justen
Change the format to [MAJOR.MINOR][CORE|COMPAT] For example: 3.0, CORE, COMPAT, 3.2CORE Signed-off-by: Jordan Justen --- docs/envvars.html | 11 +++-- src/mesa/main/context.c |4 ++ src/mesa/main/version.c | 104 ++- src/mesa/main/version.

Re: [Mesa-dev] [PATCH 2/2] mesa: utilize context version routines

2012-09-01 Thread Jordan Justen
On Fri, Aug 31, 2012 at 10:16 PM, Kenneth Graunke wrote: > I'm really ambivalent about these patches. > > 1. I'm not a huge fan of the name "have_version"...it sounds like it > would return whether a driver supports a given version, not whether the > current context's version is a certain value.