[Mesa-dev] [Bug 55636] Debian Wheezy Bad resolution new laptop i7 (2º generation)

2012-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55636 Kenneth Graunke changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] [RFC] libGL.so.1.2.0 new name

2012-10-05 Thread Kenneth Graunke
On 10/05/2012 04:42 PM, Ivan Kalvachev wrote: [snip] Anyway, the my proposal is flawed too. `ldconfig` seems too smart. It seems to get the library name from inside the library and creates the symlinks. So no matter how I rename the library it will overwrite the symlinks. I witnessed how `ldconfi

Re: [Mesa-dev] [PATCH 2/6] meta: Rearrange shader creation in setup_glsl_generate_mipmap

2012-10-05 Thread Kenneth Graunke
On 10/05/2012 03:56 PM, Ian Romanick wrote: From: Ian Romanick The diff looks weird, but this moves the code from the first 'if (ctx->Const.GLSLVersion < 130)' block down into the second block. It also moves some variable decalarations closer to their use. NOTE: This is a candidate for the 9.

[Mesa-dev] [PATCH] i965: Disable guardband clipping on SNB unless workaround is present.

2012-10-05 Thread Kenneth Graunke
According to internal bug reports, guardband clipping sometimes incorrectly discards triangles unless bit 5 of 3D_CHICKEN3 ("SF Disable fastclip optimization when culled") is set. Experimentally, this appears to be true. With guardband clipping enabled, Dante randomly loses triangles unless bit 5

Re: [Mesa-dev] [RFC] libGL.so.1.2.0 new name

2012-10-05 Thread Ivan Kalvachev
By mistake I replied to Brain only, so I'll try with another mail... On 10/4/12, Brian Paul wrote: > On 10/02/2012 05:00 PM, Ivan Kalvachev wrote: >> Hello, >> >> I would like to make a request. >> Would you kindly change the name of libGL.so.1.2.0 to libGL_mesa.so* >> and make all required alias

Re: [Mesa-dev] [PATCH 1/6] meta: Remove unsafe global mem_ctx pointer

2012-10-05 Thread Anuj Phogat
On Fri, Oct 5, 2012 at 3:56 PM, Ian Romanick wrote: > From: Ian Romanick > > NOTE: This is a candidate for the 9.0 branch. > > Signed-off-by: Ian Romanick > --- > src/mesa/drivers/common/meta.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/mesa/drivers/common/met

Re: [Mesa-dev] [PATCH 1/6] meta: Remove unsafe global mem_ctx pointer

2012-10-05 Thread Brian Paul
On 10/05/2012 04:56 PM, Ian Romanick wrote: From: Ian Romanick NOTE: This is a candidate for the 9.0 branch. Signed-off-by: Ian Romanick --- src/mesa/drivers/common/meta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) For the series, Reviewed-by: Brian Paul __

[Mesa-dev] [PATCH] mesa: fix error check for zero-sized compressed subtexture

2012-10-05 Thread Brian Paul
For glCompressedTexSubImage, width or height = 0 is legal. Fixes a failure in piglit's s3tc-errors test. This is for the 9.0 and 8.0 branches. Already fixed on master. --- src/mesa/main/teximage.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/teximage.

[Mesa-dev] [PATCH 6/6] meta: Make shader template literal strings be parameters to asprintf

2012-10-05 Thread Ian Romanick
From: Ian Romanick This enables the C compiler to generate warnings if the formats and the arguments don't match. Signed-off-by: Ian Romanick --- src/mesa/drivers/common/meta.c | 43 ++ 1 file changed, 18 insertions(+), 25 deletions(-) diff --git a/src/

[Mesa-dev] [PATCH 5/6] meta: Always enable GL_EXT_texture_array in mipmap shader

2012-10-05 Thread Ian Romanick
From: Ian Romanick '#extension foo: enable' is harmless. The functionality is only actually enabled if the extension is supported. The shader won't use the functionality if it's not supported, so we're fine. Signed-off-by: Ian Romanick --- src/mesa/drivers/common/meta.c | 9 ++--- 1 file

[Mesa-dev] [PATCH 3/6] meta: Don't use GLSL 1.30 shader on OpenGL ES 2

2012-10-05 Thread Ian Romanick
From: Ian Romanick Fixes GLES2 CoverageGL conformance test. NOTE: This is a candidate for the 9.0 branch. Signed-off-by: Ian Romanick --- src/mesa/drivers/common/meta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common

[Mesa-dev] [PATCH 4/6] meta: Since mipmap output type is always vec4, don't sprintf it

2012-10-05 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/drivers/common/meta.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index 7da0db7..8b5cfe4 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/

[Mesa-dev] [PATCH 2/6] meta: Rearrange shader creation in setup_glsl_generate_mipmap

2012-10-05 Thread Ian Romanick
From: Ian Romanick The diff looks weird, but this moves the code from the first 'if (ctx->Const.GLSLVersion < 130)' block down into the second block. It also moves some variable decalarations closer to their use. NOTE: This is a candidate for the 9.0 branch. Signed-off-by: Ian Romanick --- s

[Mesa-dev] [PATCH 1/6] meta: Remove unsafe global mem_ctx pointer

2012-10-05 Thread Ian Romanick
From: Ian Romanick NOTE: This is a candidate for the 9.0 branch. Signed-off-by: Ian Romanick --- src/mesa/drivers/common/meta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index d0bb5e0..0c9ee59 100644 ---

Re: [Mesa-dev] [PATCH v2 1/3] mesa: setup_glsl_generate_mipmap(): meta program compile failed

2012-10-05 Thread Kenneth Graunke
On 10/04/2012 04:21 AM, Oliver McFadden wrote: Discovered while attempting to run GLBenchMark 2.5 with test GLB25_TriangleTexVertexLitTestC24Z16 on an ES2.0 context. NOTE: This is a candidate for the 9.0 branch. Signed-off-by: Oliver McFadden --- src/mesa/drivers/common/meta.c |4 ++--

Re: [Mesa-dev] [PATCH v2 2/3] mesa: meta: use consistent `if-else' statement throughout the function.

2012-10-05 Thread Kenneth Graunke
On 10/04/2012 04:21 AM, Oliver McFadden wrote: Note the blocks of the `if-else' statement are swapped; the functional change is only inside the condition of the `if' statement. Signed-off-by: Oliver McFadden --- src/mesa/drivers/common/meta.c | 46

Re: [Mesa-dev] Mesa (master): SwapBuffersRegionNOK: invert rectangles on y axis

2012-10-05 Thread Matt Turner
On Fri, Oct 5, 2012 at 2:24 PM, Ian Romanick wrote: > On 10/02/2012 02:47 PM, Matt Turner wrote: >> >> Module: Mesa >> Branch: master >> Commit: 0a523a8820e8a2549ac1c7887eb1892b228af44b >> URL: >> http://cgit.freedesktop.org/mesa/mesa/commit/?id=0a523a8820e8a2549ac1c7887eb1892b228af44b >> >> Autho

Re: [Mesa-dev] [PATCH] docs: update FAQ

2012-10-05 Thread Chad Versace
On 10/05/2012 02:14 PM, Andreas Boll wrote: > Reported-by: Fabio Pedretti > --- > docs/faq.html | 33 - > 1 files changed, 12 insertions(+), 21 deletions(-) > > diff --git a/docs/faq.html b/docs/faq.html > index dd4e7de..fef2be0 100644 > --- a/docs/faq.html > ++

Re: [Mesa-dev] Mesa (master): SwapBuffersRegionNOK: invert rectangles on y axis

2012-10-05 Thread Ian Romanick
On 10/02/2012 02:47 PM, Matt Turner wrote: Module: Mesa Branch: master Commit: 0a523a8820e8a2549ac1c7887eb1892b228af44b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0a523a8820e8a2549ac1c7887eb1892b228af44b Author: Robert Bragg Date: Tue Sep 18 16:10:03 2012 +0100 SwapBuffersRegi

[Mesa-dev] [PATCH] docs: update FAQ

2012-10-05 Thread Andreas Boll
Reported-by: Fabio Pedretti --- docs/faq.html | 33 - 1 files changed, 12 insertions(+), 21 deletions(-) diff --git a/docs/faq.html b/docs/faq.html index dd4e7de..fef2be0 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -16,7 +16,7 @@ Mesa Frequently Asked

Re: [Mesa-dev] Adding support for sRGB KHR images to EGL

2012-10-05 Thread John Kåre Alsaker
On Fri, Oct 5, 2012 at 12:41 AM, Eric Anholt wrote: > John Kåre Alsaker writes: > >> I would like add support for sRGB KHR images to EGL. This is primarily >> so Wayland compositors can create sRGB views of client buffers, but >> there's nothing preventing it from being useful in other cases. >>

Re: [Mesa-dev] how to run gallium/tests/trivial/compute.c on r600

2012-10-05 Thread Alex Deucher
On Fri, Oct 5, 2012 at 10:24 AM, Liu Xin wrote: > Hi, Tom, > > thanks for your kind guidance. within a daunting day, we have made clover > work on our APU platform. for your information, we are running on ubuntu > 12-04, i386. > > out of curiosity, r600 driver relies on the newest llvm API, see l

Re: [Mesa-dev] [PATCH] glxgears: Honor -fullscreen in initial reshape

2012-10-05 Thread Brian Paul
On 10/04/2012 05:30 PM, Aaron Plattner wrote: If glxgears is started on a bare X server without a window manager, it does not get a ConfigureNotify event. This means that the only time the viewport is initialized is in main, when it calls reshape(winWidth, winHeight). This does not take the siz

Re: [Mesa-dev] [PATCH] radeon: Fix parallel builds

2012-10-05 Thread Maarten Lankhorst
Hey Andreas, Op 05-10-12 15:44, Andreas Radke schreef: > Am Thu, 04 Oct 2012 16:05:33 +0200 > schrieb Maarten Lankhorst : > >> Op 04-10-12 15:50, Maarten Lankhorst schreef: >>> The generated td files won't initially show up in the *.td depend, >>> which opens up a small race in which parallel buil

Re: [Mesa-dev] [PATCH] radeon: Fix parallel builds

2012-10-05 Thread Andreas Radke
Am Thu, 04 Oct 2012 16:05:33 +0200 schrieb Maarten Lankhorst : > Op 04-10-12 15:50, Maarten Lankhorst schreef: > > The generated td files won't initially show up in the *.td depend, > > which opens up a small race in which parallel build can fail. > > > Seems the upstream fix cebbdd4ac23725 wasn't

Re: [Mesa-dev] [PATCH] intel: Fix intel_texsubimage_tiled_memcpy to skip GL_EXT_unpack_subimage case

2012-10-05 Thread Neil Roberts
Rob Bradford writes: > + packing->RowLength != width) I wonder if this is a bit overzealous and we should change it to accept packing->RowLength==0 as well. Setting the row length to zero is equivalent to setting it to the width of the data. It could be that Chrome leaves it at zero and in

Re: [Mesa-dev] [PATCH v2 1/3] mesa: setup_glsl_generate_mipmap(): meta program compile failed

2012-10-05 Thread Oliver McFadden
On Thu, Oct 04, 2012 at 02:05:07PM -0700, Eric Anholt wrote: > Oliver McFadden writes: > > > Discovered while attempting to run GLBenchMark 2.5 with test > > GLB25_TriangleTexVertexLitTestC24Z16 on an ES2.0 context. > > > > NOTE: This is a candidate for the 9.0 branch. > > > > Signed-off-by: Oliv