Re: [Mesa-dev] [PATCH 2/3] state_tracker: allow to utilize GLSL workaround for broken apps in Gallium

2012-08-23 Thread Vadim Girlin
On Wed, 2012-08-22 at 19:08 +0300, Maxim Levitsky wrote: > On Wed, 2012-08-22 at 19:54 +0400, Vadim Girlin wrote: > > On Wed, 2012-08-22 at 11:31 -0400, Alex Deucher wrote: > > > On Wed, Aug 22, 2012 at 11:24 AM, Vadim Girlin > > > wrote: > > > > On Wed, 2012-08-22 at 11:23 +0300, Maxim Levitsky

[Mesa-dev] [PATCH] swrast: implement cubical depth texture sampling

2012-08-23 Thread Brian Paul
From: Brian Paul Fixes a few more failures in the piglit copyteximage test. --- src/mesa/swrast/s_texfilter.c | 115 ++--- 1 files changed, 74 insertions(+), 41 deletions(-) diff --git a/src/mesa/swrast/s_texfilter.c b/src/mesa/swrast/s_texfilter.c index 3c2

Re: [Mesa-dev] [PATCH 2/2] i965: don't clear resolve map when doing fast depth clears.

2012-08-23 Thread Chad Versace
On 08/22/2012 03:21 PM, Eric Anholt wrote: > Paul Berry writes: > >> On 22 August 2012 12:35, Eric Anholt wrote: >> >>> Paul Berry writes: >>> Previously, when performing a fast depth clear, we would also clear the miptree's resolve map. This destroyed important information, sin

Re: [Mesa-dev] [PATCH 3/7] r600g: fix evergreen 8x MSAA sample positions

2012-08-23 Thread Paul Berry
On 23 August 2012 10:42, Marek Olšák wrote: > On Thu, Aug 23, 2012 at 6:42 PM, Paul Berry > wrote: > > On 22 August 2012 18:54, Marek Olšák wrote: > >> > >> The original samples positions took samples outside of the pixel > boundary, > >> leading to dark pixels on the edge of the colorbuffer, a

Re: [Mesa-dev] [PATCH 0/7] MSAA on R700 and improvements for Evergreen

2012-08-23 Thread Dave Airlie
On Fri, Aug 24, 2012 at 1:09 AM, Marek Olšák wrote: > On Thu, Aug 23, 2012 at 4:38 PM, Jerome Glisse wrote: >> On Wed, Aug 22, 2012 at 9:54 PM, Marek Olšák wrote: >>> This series adds R700 MSAA support along with compression of MSAA >>> colorbuffers for R700 and Evergreen, which should save a l

Re: [Mesa-dev] [PATCH 2/2] build: Fix installation of GLES2 headers

2012-08-23 Thread Eoff, Ullysses A
This patch worked for me :) U. Artie >-Original Message- >From: Matt Turner [mailto:matts...@gmail.com] >Sent: Thursday, August 23, 2012 1:42 PM >To: mesa-dev@lists.freedesktop.org >Cc: Eoff, Ullysses A; Matt Turner >Subject: [PATCH 2/2] build: Fix installation of GLES2 headers > >Repor

[Mesa-dev] [PATCH 1/2] build: Fix GLES linkage with libglapi

2012-08-23 Thread Matt Turner
Reported-by: Ian Romanick --- Previous patch was wrong, since it depended on the system libglapi. src/mapi/es1api/Makefile.am |2 +- src/mapi/es2api/Makefile.am |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mapi/es1api/Makefile.am b/src/mapi/es1api/Makefile.am

Re: [Mesa-dev] [PATCH 3/4] i965/gen7: Add support for GL_ARB_timer_query.

2012-08-23 Thread Kenneth Graunke
On 08/23/2012 01:22 PM, Eric Anholt wrote: > Needs updated libdrm. > --- > configure.ac |2 +- > docs/GL3.txt |2 +- > src/mesa/drivers/dri/i965/brw_context.c |2 + > src/mesa/drivers/dri/i965/brw_queryobj.c |

[Mesa-dev] [PATCH 2/2] build: Fix installation of GLES2 headers

2012-08-23 Thread Matt Turner
Reported-by: U. Artie Eoff --- src/mapi/es2api/Makefile.am | 11 +-- 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/mapi/es2api/Makefile.am b/src/mapi/es2api/Makefile.am index edd3c9f..c77f07e 100644 --- a/src/mapi/es2api/Makefile.am +++ b/src/mapi/es2api/Makefile.am

[Mesa-dev] [PATCH 1/2] build: Fix GLES linkage with libglapi

2012-08-23 Thread Matt Turner
Reported-by: Ian Romanick --- configure.ac |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index e9d4e79..6a1bbab 100644 --- a/configure.ac +++ b/configure.ac @@ -897,9 +897,9 @@ esac # builds. AM_CONDITIONAL(HAVE_XF86VIDMODE, test "x$HAVE

Re: [Mesa-dev] [PATCH 1/4] mesa: Add constants for the GL_QUERY_COUNTER_BITS per target.

2012-08-23 Thread Brian Paul
On 08/23/2012 02:22 PM, Eric Anholt wrote: Drivers need to be able to communicate their actual number of bits populated in the field in order for applications to be able to properly handle rollover. There's a small behavior change here: Instead of reporting the GL_SAMPLES_PASSED bits for GL_ANY_

[Mesa-dev] [XDC 2012] Conference Update #2

2012-08-23 Thread Egbert Eich
We are a little less than one month into XDC 2012 so here's some update: Registration: - So far we have 32 registered participants - which is pretty good. If you plan to come and haven't added yourself to the participants list at http://wiki.x.org/wiki/Events/XDC2012/Attendees, plea

[Mesa-dev] [PATCH 3/4] i965/gen7: Add support for GL_ARB_timer_query.

2012-08-23 Thread Eric Anholt
Needs updated libdrm. --- configure.ac |2 +- docs/GL3.txt |2 +- src/mesa/drivers/dri/i965/brw_context.c |2 + src/mesa/drivers/dri/i965/brw_queryobj.c | 50 + src/mesa/drivers/dri/i

[Mesa-dev] [PATCH 4/4] i965: Rewrite the comment describing the query object support.

2012-08-23 Thread Eric Anholt
--- src/mesa/drivers/dri/i965/brw_queryobj.c | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_queryobj.c b/src/mesa/drivers/dri/i965/brw_queryobj.c index 87c8dac..d5c4fdf 100644 --- a/src/mesa/drivers/dri/i965/brw_queryob

[Mesa-dev] [PATCH 1/4] mesa: Add constants for the GL_QUERY_COUNTER_BITS per target.

2012-08-23 Thread Eric Anholt
Drivers need to be able to communicate their actual number of bits populated in the field in order for applications to be able to properly handle rollover. There's a small behavior change here: Instead of reporting the GL_SAMPLES_PASSED bits for GL_ANY_SAMPLES_PASSED (which would also be valid), j

[Mesa-dev] [PATCH 2/4] i965: Add support for GL_ARB_occlusion_query2.

2012-08-23 Thread Eric Anholt
This extension is just a bit of core code on top of the GL_ARB_occlusion_query support. --- docs/GL3.txt |2 +- src/mesa/drivers/dri/intel/intel_extensions.c |1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/GL3.txt b/docs/GL3.txt ind

Re: [Mesa-dev] [PATCH 2/2] automake: convert es2api

2012-08-23 Thread Matt Turner
On Thu, Aug 23, 2012 at 11:26 AM, Ian Romanick wrote: > On 08/21/2012 03:47 PM, Matt Turner wrote: > > This patch appears to have broken the world with ES2: > > bin/GTF: symbol lookup error: /opt/xorg-master-x86_64/lib64/libGLESv2.so.2: > undefined symbol: _glapi_tls_Dispatch Weird. scanelf shows

Re: [Mesa-dev] [PATCH 2/2] automake: convert es2api

2012-08-23 Thread Ian Romanick
On 08/21/2012 03:47 PM, Matt Turner wrote: This patch appears to have broken the world with ES2: bin/GTF: symbol lookup error: /opt/xorg-master-x86_64/lib64/libGLESv2.so.2: undefined symbol: _glapi_tls_Dispatch --- configure.ac |2 + src/mapi/es2api/.gitignore |

Re: [Mesa-dev] [PATCH 0/3] Validate shader related enums in Mesa

2012-08-23 Thread Kenneth Graunke
On 08/21/2012 05:09 PM, Ian Romanick wrote: > This continues the series to remove the ES wrappers. This should take > care of all the program / shader related checking. This series of three patches is: Reviewed-by: Kenneth Graunke ___ mesa-dev mailing

Re: [Mesa-dev] [PATCH 3/7] r600g: fix evergreen 8x MSAA sample positions

2012-08-23 Thread Marek Olšák
On Thu, Aug 23, 2012 at 6:42 PM, Paul Berry wrote: > On 22 August 2012 18:54, Marek Olšák wrote: >> >> The original samples positions took samples outside of the pixel boundary, >> leading to dark pixels on the edge of the colorbuffer, among other things. > > > Does this address the issues you we

Re: [Mesa-dev] [PATCH] build/glsl: fix android build v2

2012-08-23 Thread Matt Turner
On Fri, Aug 17, 2012 at 12:32 AM, Tapani Pälli wrote: > Commit 77a3efc6b907943903190b385fdf107c4acfcdca broke android build that > sets its own value for GLSL_SRCDIR before including Makefile.sources. > Patch moves overriding the value after include, this works as GLSL_SRCDIR > variable gets expan

Re: [Mesa-dev] [PATCH] meta: Don't modify GL_GENERATE_MIPMAP state when it doesn't exist

2012-08-23 Thread Kenneth Graunke
On 08/22/2012 06:58 PM, Ian Romanick wrote: > From: Ian Romanick > > This is a bit of a hack. _mesa_meta_GenerateMipmap shouldn't even be > used in contexts where GL_GENERATE_MIPMAP doesn't exist (i.e., core > profile and ES2) because it uses fixed-function, and fixed-function > doesn't exist th

Re: [Mesa-dev] [PATCH] radeonsi: remove old tilling handling

2012-08-23 Thread Michel Dänzer
On Don, 2012-08-23 at 18:16 +0200, Christian König wrote: > Just use the functionality provided by the surface manager instead. > > This fixes just another bunch of piglit tests. Awesome. Looks good. -- Earthling Michel Dänzer | http://www.amd.com Libre software en

Re: [Mesa-dev] [PATCH 3/7] r600g: fix evergreen 8x MSAA sample positions

2012-08-23 Thread Paul Berry
On 22 August 2012 18:54, Marek Olšák wrote: > The original samples positions took samples outside of the pixel boundary, > leading to dark pixels on the edge of the colorbuffer, among other things. > Does this address the issues you were having with the error thresholds in the EXT_framebuffer_mu

Re: [Mesa-dev] [PATCH 3/3] mesa: glsl: force version too when force_glsl_extensions_warn is used

2012-08-23 Thread Ian Romanick
On 08/22/2012 01:23 AM, Maxim Levitsky wrote: Unfortunelly some buggy programs use extensions without asking ether for proper GLSL version nor ask for particular extension. Moreover the force_glsl_extensions_warn hack is only effective for some extensions (GL_EXT_texture_array) but unfortunelly

Re: [Mesa-dev] [PATCH 3/3] mesa: glsl: force version too when force_glsl_extensions_warn is used

2012-08-23 Thread Ian Romanick
On 08/22/2012 08:54 AM, Maxim Levitsky wrote: On Wed, 2012-08-22 at 18:53 +0300, Maxim Levitsky wrote: On Wed, 2012-08-22 at 08:48 -0600, Brian Paul wrote: On 08/22/2012 02:23 AM, Maxim Levitsky wrote: Unfortunelly some buggy programs use extensions without asking ether for proper GLSL version

Re: [Mesa-dev] [PATCH 2/3] state_tracker: allow to utilize GLSL workaround for broken apps in Gallium

2012-08-23 Thread Vadim Girlin
On Wed, 2012-08-22 at 19:08 +0300, Maxim Levitsky wrote: > On Wed, 2012-08-22 at 19:54 +0400, Vadim Girlin wrote: > > On Wed, 2012-08-22 at 11:31 -0400, Alex Deucher wrote: > > > On Wed, Aug 22, 2012 at 11:24 AM, Vadim Girlin > > > wrote: > > > > On Wed, 2012-08-22 at 11:23 +0300, Maxim Levitsky

[Mesa-dev] [PATCH] radeonsi: remove old tilling handling

2012-08-23 Thread Christian König
Just use the functionality provided by the surface manager instead. This fixes just another bunch of piglit tests. Signed-off-by: Christian König --- src/gallium/drivers/radeonsi/r600_resource.h |9 - src/gallium/drivers/radeonsi/r600_texture.c | 275 ++ src/galliu

Re: [Mesa-dev] [PATCH 05/12] mesa/es: Remove redundant vertex attrib pointer type validation

2012-08-23 Thread Ian Romanick
On 08/23/2012 12:15 AM, Kenneth Graunke wrote: On 08/22/2012 07:26 PM, Ian Romanick wrote: From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 22 -- 1 files changed, 0 insertions(+), 22 deletions(-) diff --git a/src/mesa/main/APIspec.xml b

Re: [Mesa-dev] [PATCH 02/12] mesa: Rearrange array type checking, filter more types in ES

2012-08-23 Thread Ian Romanick
On 08/23/2012 12:00 AM, Kenneth Graunke wrote: On 08/22/2012 07:26 PM, Ian Romanick wrote: From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/varray.c | 28 +++- 1 files changed, 19 insertions(+), 9 deletions(-) diff --git a/src/mesa/main/varray.c b

[Mesa-dev] [Bug 53962] [build error] ln: accessing `.libs/libGL.so.1.6.0': No such file or directory

2012-08-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53962 --- Comment #1 from Matt Turner 2012-08-23 15:41:39 UTC --- Yeah. I sent patches yesterday to fix this. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the

Re: [Mesa-dev] [PATCH 1/2] automake: convert es1api

2012-08-23 Thread Matt Turner
On Thu, Aug 23, 2012 at 5:08 AM, Emil Velikov wrote: > > > Hi Matt > > I believe that this patch would break the es2 build, as they both use the > same > Makefile. Can you change their commir order ? Good point. I didn't really notice that. Thanks! > A few notes in-line as well > > > On Tue, 21

Re: [Mesa-dev] [PATCH 01/12] mesa: Refactor element type checking into its own function

2012-08-23 Thread Ian Romanick
On 08/22/2012 11:36 PM, Kenneth Graunke wrote: On 08/22/2012 07:26 PM, Ian Romanick wrote: From: Ian Romanick This consolidates the tests and makes the emitted error message consistent. Signed-off-by: Ian Romanick --- src/mesa/main/api_validate.c | 46 +---

Re: [Mesa-dev] [PATCH 3/3] mesa: glGet: fix parameter lookup for apps using multiple APIs

2012-08-23 Thread Imre Deak
On Thu, 2012-08-23 at 09:13 -0600, Brian Paul wrote: > On 08/23/2012 08:55 AM, Imre Deak wrote: > > The glGet hash was initialized only once for a single GL API, even if > > the application later created a context for a different API. This > > resulted in glGet failing for otherwise valid parameter

[Mesa-dev] [PATCH] build: don't leave git_sha1.h.tmp after build/install

2012-08-23 Thread Vadim Girlin
See https://bugs.freedesktop.org/show_bug.cgi?id=52064 --- src/mesa/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am index 3b5ef24..1ac64e6 100644 --- a/src/mesa/Makefile.am +++ b/src/mesa/Makefile.am @@ -39,6 +39,8 @@ main/git_sha1.h: m

Re: [Mesa-dev] [PATCH] egl_dri2: Fix segmentation fault

2012-08-23 Thread Brian Paul
On 08/22/2012 05:15 PM, Paulo Alcantara wrote: From: Paulo Alcantara Date: Fri, 17 Aug 2012 14:08:10 -0300 The segmentation fault occurs when DRI2 is not loaded up and dri2_setup_screen() function deferences dri2_dpy->dri2 (since it's NULL at this point). This patch fixes the segmentation faul

Re: [Mesa-dev] [PATCH 3/3] mesa: glGet: fix parameter lookup for apps using multiple APIs

2012-08-23 Thread Brian Paul
On 08/23/2012 08:55 AM, Imre Deak wrote: The glGet hash was initialized only once for a single GL API, even if the application later created a context for a different API. This resulted in glGet failing for otherwise valid parameters in a context if that parameter was invalid in another context c

[Mesa-dev] [Bug 52064] build fails with "git_sha1.h.tmp": permission denied

2012-08-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52064 --- Comment #10 from Vadim Girlin 2012-08-23 15:13:09 UTC --- Created attachment 66020 --> https://bugs.freedesktop.org/attachment.cgi?id=66020 [PATCH] build: don't leave git_sha1.h.tmp after build/install Probably this patch is a bit more cle

Re: [Mesa-dev] [PATCH] meta: Don't modify GL_GENERATE_MIPMAP state when it doesn't exist

2012-08-23 Thread Ian Romanick
On 08/23/2012 07:56 AM, Brian Paul wrote: On 08/22/2012 07:58 PM, Ian Romanick wrote: From: Ian Romanick This is a bit of a hack. _mesa_meta_GenerateMipmap shouldn't even be used in contexts where GL_GENERATE_MIPMAP doesn't exist (i.e., core profile and ES2) because it uses fixed-function, and

Re: [Mesa-dev] [PATCH 0/7] MSAA on R700 and improvements for Evergreen

2012-08-23 Thread Marek Olšák
On Thu, Aug 23, 2012 at 4:38 PM, Jerome Glisse wrote: > On Wed, Aug 22, 2012 at 9:54 PM, Marek Olšák wrote: >> This series adds R700 MSAA support along with compression of MSAA >> colorbuffers for R700 and Evergreen, which should save a lot of bandwidth >> with MSAA. There are also some minor f

Re: [Mesa-dev] [PATCH] meta: Don't modify GL_GENERATE_MIPMAP state when it doesn't exist

2012-08-23 Thread Brian Paul
On 08/22/2012 07:58 PM, Ian Romanick wrote: From: Ian Romanick This is a bit of a hack. _mesa_meta_GenerateMipmap shouldn't even be used in contexts where GL_GENERATE_MIPMAP doesn't exist (i.e., core profile and ES2) because it uses fixed-function, and fixed-function doesn't exist there either!

[Mesa-dev] [PATCH 3/3] mesa: glGet: fix parameter lookup for apps using multiple APIs

2012-08-23 Thread Imre Deak
The glGet hash was initialized only once for a single GL API, even if the application later created a context for a different API. This resulted in glGet failing for otherwise valid parameters in a context if that parameter was invalid in another context created earlier. Amend this by also adding

[Mesa-dev] [PATCH 2/3] mesa: glGet: fix indentation of find_value

2012-08-23 Thread Imre Deak
No functional change. Signed-off-by: Imre Deak --- src/mesa/main/get.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 8d0195f..38d6cc3 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1990,13 +1990,13 @

[Mesa-dev] [PATCH 1/3] mesa: glGet: fix indentation of _mesa_init_get_hash

2012-08-23 Thread Imre Deak
No functional change. Signed-off-by: Imre Deak --- src/mesa/main/get.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 332dfaf..8d0195f 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1440,20

Re: [Mesa-dev] [PATCH 0/7] MSAA on R700 and improvements for Evergreen

2012-08-23 Thread Jerome Glisse
On Wed, Aug 22, 2012 at 9:54 PM, Marek Olšák wrote: > This series adds R700 MSAA support along with compression of MSAA > colorbuffers for R700 and Evergreen, which should save a lot of bandwidth > with MSAA. There are also some minor fixes. > > Please review. > > Marek Olšák (7): > galliu

Re: [Mesa-dev] [PATCH 1/2] radeonsi: fix SPI_PS_INPUT_ENA handling

2012-08-23 Thread Michel Dänzer
On Mit, 2012-08-22 at 12:54 +0200, Christian König wrote: > > + /* we need to enable at least one of them, otherwise we hang the GPU */ > + if (!spi_ps_input_ena & (C_0286CC_PERSP_SAMPLE_ENA | > + C_0286CC_PERSP_CENTROID_ENA | > +

Re: [Mesa-dev] [PATCH] Remove OpenVMS support

2012-08-23 Thread Brian Paul
On 08/22/2012 08:50 PM, Matt Turner wrote: Not maintained since 2008. Doubtful that it's worked in quite a while. Agreed. Reviewed-by: Brian Paul ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/

Re: [Mesa-dev] [PATCH 01/12] mesa: Refactor element type checking into its own function

2012-08-23 Thread Brian Paul
On 08/23/2012 12:36 AM, Kenneth Graunke wrote: On 08/22/2012 07:26 PM, Ian Romanick wrote: From: Ian Romanick This consolidates the tests and makes the emitted error message consistent. Signed-off-by: Ian Romanick --- src/mesa/main/api_validate.c | 46 +-

[Mesa-dev] [Bug 52064] build fails with "git_sha1.h.tmp": permission denied

2012-08-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52064 --- Comment #9 from Knut Petersen 2012-08-23 13:34:14 UTC --- (In reply to comment #0) > This happens sometimes when building mesa. Somehow > src/mesa/main/git_sha1.h.tmp > gets created with root user (necessary?) Then on a later build, Makefil

Re: [Mesa-dev] [PATCH v2 2/3] glapi/glx: call __glEmptyImage if USE_XCB, not memcpy directly

2012-08-23 Thread Julien Cristau
On Sat, Jul 28, 2012 at 13:04:56 +0200, Julien Cristau wrote: > On Fri, Jul 20, 2012 at 11:09:19 +0200, Julien Cristau wrote: > > > From: Julien Cristau > > > > We were stomping on the caller's buffer by ignoring their alignment > > requests and other pixel store modes. This patch makes the US

[Mesa-dev] [Bug 52064] build fails with "git_sha1.h.tmp": permission denied

2012-08-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52064 --- Comment #8 from Alex Deucher 2012-08-23 13:14:47 UTC --- (In reply to comment #7) > My patch from comment #3 allows me to use 'make' (as non-root) after 'make > install' (as root) without 'make clean'. That's the behavior I'd like to see > i

Re: [Mesa-dev] [RFC patch 2/2] Build libgallium shared

2012-08-23 Thread Maarten Lankhorst
Hey Matt, Op 22-08-12 17:45, Matt Turner schreef: > On Wed, Aug 22, 2012 at 3:21 AM, Maarten Lankhorst > wrote: >> And build gallium shared :) > Seems reasonable to me, given that we do this for dricore. > > I've got a bunch of build patches waiting for review, so I'd > appreciate holding this un

Re: [Mesa-dev] [PATCH 1/2] automake: convert es1api

2012-08-23 Thread Emil Velikov
Hi Matt I believe that this patch would break the es2 build, as they both use the same Makefile. Can you change their commir order ? A few notes in-line as well On Tue, 21 Aug 2012 23:47:03 +0100, Matt Turner wrote: --- configure.ac|2 + src/mapi/es1api/.gitigno

[Mesa-dev] [PATCH] clover: Accept CL_MEM_READ_WRITE flag

2012-08-23 Thread Blaž Tomažič
Fix API functions for memory objects to accept CL_MEM_READ_WRITE flag. Signed-off-by: Blaž Tomažič --- src/gallium/state_trackers/clover/api/memory.cpp | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/gallium/state_trackers/clover/api/memory.cpp b/src/gallium/

[Mesa-dev] [Bug 7459] GLX_USE_TLS breaks -fPIC build

2012-08-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=7459 wbr...@gmail.com changed: What|Removed |Added CC||wbr...@gmail.com --- Comment #23 from w

Re: [Mesa-dev] [PATCH 2/2] Move _mesa_dl* functions into dlopen.h and inline them

2012-08-23 Thread Tapani Pälli
On 08/22/2012 10:48 PM, Matt Turner wrote: > No point in having an extra function call for inlinable functions. > > Cc: Tapani Pälli works fine for me Reviewed-by: Tapani Pälli > --- > src/mesa/SConscript|1 - > src/mesa/main/dlopen.c | 112 > --

[Mesa-dev] [Bug 53962] New: [build error] ln: accessing `.libs/libGL.so.1.6.0': No such file or directory

2012-08-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53962 Bug #: 53962 Summary: [build error] ln: accessing `.libs/libGL.so.1.6.0': No such file or directory Classification: Unclassified Product: Mesa Version: git Platform: O

Re: [Mesa-dev] [PATCH 05/12] mesa/es: Remove redundant vertex attrib pointer type validation

2012-08-23 Thread Kenneth Graunke
On 08/22/2012 07:26 PM, Ian Romanick wrote: > From: Ian Romanick > > Signed-off-by: Ian Romanick > --- > src/mesa/main/APIspec.xml | 22 -- > 1 files changed, 0 insertions(+), 22 deletions(-) > > diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml > index 1

Re: [Mesa-dev] [PATCH 02/12] mesa: Rearrange array type checking, filter more types in ES

2012-08-23 Thread Kenneth Graunke
On 08/22/2012 07:26 PM, Ian Romanick wrote: > From: Ian Romanick > > Signed-off-by: Ian Romanick > --- > src/mesa/main/varray.c | 28 +++- > 1 files changed, 19 insertions(+), 9 deletions(-) > > diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c > index 327f