Re: [Mesa-dev] [PATCH] i965/fs: Don't try 16-wide if 8-wide uses more than half the registers.

2012-08-21 Thread Eric Anholt
Kenneth Graunke writes: > 16-wide programs use roughly twice as many registers as 8-wide, and we > don't support spilling in 16-wide. So if an 8-wide program uses more > than half the available GRFs, the 16-wide one almost certainly will fail > to compile during register allocation. > > Not only

[Mesa-dev] [PATCH 3/3] build: Only build libmesa.la when needed

2012-08-21 Thread Matt Turner
Namely, for Xlib-GLX, OSMesa, or test programs. --- configure.ac |2 ++ src/mesa/Makefile.am | 12 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index adbfb21..5bc88b8 100644 --- a/configure.ac +++ b/configure.ac @@ -699,6 +6

[Mesa-dev] [PATCH 2/3] build: Remove duplicate DRI automake conditionals

2012-08-21 Thread Matt Turner
--- configure.ac|5 + src/mesa/libdricore/Makefile.am |2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index aac58b2..adbfb21 100644 --- a/configure.ac +++ b/configure.ac @@ -698,7 +698,7 @@ if test "x$enable_glx" = x

[Mesa-dev] [PATCH 1/3] build: Remove GLU_DIRS

2012-08-21 Thread Matt Turner
--- configs/current.in |1 - configs/default|1 - configure.ac |2 -- src/glu/Makefile |2 +- 4 files changed, 1 insertions(+), 5 deletions(-) diff --git a/configs/current.in b/configs/current.in index c490842..1802271 100644 --- a/configs/current.in +++ b/configs/curr

Re: [Mesa-dev] [PATCH] mesa: Remove C++11 narrowing warnings

2012-08-21 Thread Eric Anholt
Chad Versace writes: > On 08/20/2012 02:17 PM, Matt Turner wrote: >> On Mon, Aug 20, 2012 at 1:52 PM, Chad Versace >> wrote: >>> Add -Wno-narrowing to CXXFLAGS if gcc supports it. >>> >>> This removes warnings of the form >>> warning: narrowing conversion of X from 'int' to 'float' inside {

Re: [Mesa-dev] [PATCH 2/3] intel: Eliminate unneeded hiz resolves

2012-08-21 Thread Eric Anholt
Roland Scheidegger writes: > Am 21.08.2012 03:51, schrieb Kenneth Graunke: >> Yeah, sadly. (And seriously, whoever invented 1366x768 resolution >> panels clearly didn't talk the guys that required 8x4 alignment...) > Can't you just force that alignment? > (Not that I know if it would be worth it.

Re: [Mesa-dev] [PATCH 00/18] Validate texture related enums in Mesa

2012-08-21 Thread Jordan Justen
On Mon, Aug 20, 2012 at 5:06 PM, Ian Romanick wrote: > This is the first batch of enum validation rework code. Function by > function, this move enum validation out of the ES wrappers into the core > Mesa routines. There's a sprinkling of core profile filtering as well. > > There are no OpenGL E

[Mesa-dev] [PATCH 3/3] mesa: code movement in teximage.c

2012-08-21 Thread Brian Paul
To get rid of a forward declaration. --- src/mesa/main/teximage.c | 402 +++--- 1 files changed, 198 insertions(+), 204 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 8dc8e3f..8a87e91 100644 --- a/src/mesa/main/teximage

[Mesa-dev] [PATCH 2/3] mesa: consolidate glTexImage and glCompressedTexImage code

2012-08-21 Thread Brian Paul
There was a lot of similar or duplicated code before. To minimize this patch's size, use a forward declaration for compressed_texture_error_check(). Move the function in the next patch. --- src/mesa/main/teximage.c | 319 ++ 1 files changed, 122 insert

[Mesa-dev] [PATCH 1/3] mesa: make glTexImage, glCompressedTexImage proxy code more alike

2012-08-21 Thread Brian Paul
Next up, we can combine the teximage() and compressed_teximage() functions. --- src/mesa/main/teximage.c | 77 +- 1 files changed, 42 insertions(+), 35 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index b965b82..c64572

[Mesa-dev] [PATCH 4/4] mesa: rename texpal.[ch] to texcompress_cpal.[ch]

2012-08-21 Thread Brian Paul
To be consistent with other files related to texture compression. --- src/mesa/SConscript |2 +- src/mesa/main/texcompress_cpal.c | 231 ++ src/mesa/main/texcompress_cpal.h | 45 src/mesa/main/teximage.c |2 +- src/mesa/m

[Mesa-dev] [PATCH 3/4] mesa: s/GLuint/gl_format/ in _mesa_compressed_format_to_glenum()

2012-08-21 Thread Brian Paul
No real change here, just use the right type. --- src/mesa/main/texcompress.c |2 +- src/mesa/main/texcompress.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/texcompress.c b/src/mesa/main/texcompress.c index c376b97..48c472e 100644 --- a/src/mesa/main

[Mesa-dev] [PATCH 2/4] mesa: new _mesa_num_tex_faces() helper

2012-08-21 Thread Brian Paul
Not a real big help now, but will be useful for the GL_ARB_texture_cube_map_array extension in the future. --- src/mesa/drivers/dri/intel/intel_tex.c |2 +- src/mesa/drivers/dri/intel/intel_tex_validate.c |7 --- src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c |4 ++--

[Mesa-dev] [PATCH 1/4] mesa: make _mesa_get_proxy_tex_image() static

2012-08-21 Thread Brian Paul
It's not used by any other file. --- src/mesa/main/teximage.c | 13 - src/mesa/main/teximage.h |4 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 64dac61..1186643 100644 --- a/src/mesa/main/teximage.c

[Mesa-dev] [PATCH 2/2] mesa: don't clear proxy image fields when regular GL error is generated

2012-08-21 Thread Brian Paul
If a proxy texture call generates a regular GL error, we should not clear the proxy image's width/height/depth/format fields. Use a new PROXY_ERROR token to distinguish proxy errors from regular GL errors. Some additional clean-ups could still be done but this fixes the problem at hand. --- src/

[Mesa-dev] [PATCH 1/2] mesa: fix glTexImage proxy texture error generation

2012-08-21 Thread Brian Paul
When calling glTexImage() with a proxy target most error conditions should generate a GL error. We were erroneously doing the proxy-error behaviour (where we zeroed-out the image's width/height/depth/format fields) in too many places. There's another issue with proxy textures, but that'll be fixe

Re: [Mesa-dev] [PATCH 1/3] mesa: Filter glGetProgramiv pnames based on available extensions

2012-08-21 Thread Matt Turner
On Tue, Aug 21, 2012 at 5:09 PM, Ian Romanick wrote: > From: Ian Romanick > > Previously you could always glGetProgramiv one of the transform feedback or > geometry shader enums even if the extension wasn't supported. > > In addtion, this reverts part of bda6ad27. I think the hunks involving > G

[Mesa-dev] [PATCH 3/3] mesa/es: Validate glCreateShader targets in Mesa code rather than the ES wrapper

2012-08-21 Thread Ian Romanick
From: Ian Romanick v2: Add proper core-profile filtering. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml |5 - src/mesa/main/shaderapi.c |2 +- 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 7efc

[Mesa-dev] [PATCH 1/3] mesa: Filter glGetProgramiv pnames based on available extensions

2012-08-21 Thread Ian Romanick
From: Ian Romanick Previously you could always glGetProgramiv one of the transform feedback or geometry shader enums even if the extension wasn't supported. In addtion, this reverts part of bda6ad27. I think the hunks involving GL_PROGRAM_BINARY_LENGTH_OES were spurious. Mesa has no support fo

[Mesa-dev] [PATCH 2/3] mesa/es: Validate glGetProgramiv pnames in Mesa code rather than the ES wrapper

2012-08-21 Thread Ian Romanick
From: Ian Romanick v2: Add proper core-profile and GLES3 filtering. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 15 --- src/mesa/main/shaderapi.c | 39 +++ 2 files changed, 31 insertions(+), 23 deletions(-) diff --git a/src/m

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

2012-08-21 Thread Ian Romanick
This continues the series to remove the ES wrappers. This should take care of all the program / shader related checking. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH] build: Only generate dispatch assembly code that will be built

2012-08-21 Thread Matt Turner
--- src/mapi/glapi/gen/Makefile.am | 16 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/mapi/glapi/gen/Makefile.am b/src/mapi/glapi/gen/Makefile.am index 499ec09..40aaf51 100644 --- a/src/mapi/glapi/gen/Makefile.am +++ b/src/mapi/glapi/gen/Makefile.am @@ -38

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

2012-08-21 Thread Matt Turner
--- configure.ac |2 + src/mapi/es2api/.gitignore |4 +-- src/mapi/es2api/Makefile |3 -- src/mapi/es2api/Makefile.am | 60 ++ src/mapi/es2api/glesv2.pc.in | 12 5 files changed, 69 insertions(+), 12 deletions(

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

2012-08-21 Thread Matt Turner
--- configure.ac|2 + src/mapi/es1api/.gitignore |1 + src/mapi/es1api/Makefile| 137 --- src/mapi/es1api/Makefile.am | 60 + src/mapi/es1api/glesv1_cm.pc.in | 12 ++-- src/mapi/glapi/gen/glapi_ge

[Mesa-dev] [PATCH 6/6] egl_dri2: Avoid using createSubImage when not neccassery

2012-08-21 Thread Jakob Bornecrantz
Makes it possible to run Wayland on Gallium drivers. This patch will not be pushed as a interface rewrite will fix it more properly. It is here to facilitate testing of the other patches. Signed-off-by: Jakob Bornecrantz --- src/egl/drivers/dri2/egl_dri2.c | 22 -- src/gbm/

[Mesa-dev] [PATCH 5/6] st/dri: Support width and height getters

2012-08-21 Thread Jakob Bornecrantz
Signed-off-by: Jakob Bornecrantz --- src/gallium/state_trackers/dri/drm/dri2.c |8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/dri/drm/dri2.c b/src/gallium/state_trackers/dri/drm/dri2.c index 5c7acfe..d7f4dd6 100644 --- a/src/gallium/state

[Mesa-dev] [PATCH 4/6] st/dri: Claim to support validate_usage

2012-08-21 Thread Jakob Bornecrantz
Support version 3 as well as 2, since that is only the new format query, which Jesse added support for to st/dri when he added it to dri_inteface.h. Signed-off-by: Jakob Bornecrantz --- src/gallium/state_trackers/dri/drm/dri2.c | 17 - 1 file changed, 16 insertions(+), 1 deleti

[Mesa-dev] [PATCH 3/6] dri: Make query image WIDTH and HEIGHT be version 4

2012-08-21 Thread Jakob Bornecrantz
Signed-off-by: Jakob Bornecrantz --- include/GL/internal/dri_interface.h |2 +- src/gbm/backends/dri/gbm_dri.c |4 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index e766226..09f63ff 1006

[Mesa-dev] [PATCH 2/6] dri: Remove image write function

2012-08-21 Thread Jakob Bornecrantz
Since its not used by anything anymore and no release has gone out where it was being used. Tested-by: Scott Moreau Signed-off-by: Jakob Bornecrantz --- include/GL/internal/dri_interface.h| 10 +- src/gbm/backends/dri/gbm_dri.c |2 -- src/mesa/drivers/dri/intel

[Mesa-dev] [PATCH 1/6] gbm: Use libkms to replace DRI cursor images

2012-08-21 Thread Jakob Bornecrantz
Uses libkms instead of dri image cursor. Since this is the only user of the DRI cursor and the write interface we can remove cursor surfaces entirely from the DRI interface and as a consequence also from the Gallium interface as well. Tho to make everybody happy with this it would probably should a

[Mesa-dev] [PATCH 0/6] Gallium Wayland support

2012-08-21 Thread Jakob Bornecrantz
This should be the final version of these patches (the last one will not be pushed as I'm currently working on replacing the interaces it works around). The libkms patch now completely replaces the cursor implementation with libkms and the patch following it removes DRI image write completely. I r

[Mesa-dev] [Bug 53884] gl_FragCoord gets corrupted in some camera angles

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53884 --- Comment #6 from Lauri Kasanen 2012-08-21 20:12:08 UTC --- Created attachment 65909 --> https://bugs.freedesktop.org/attachment.cgi?id=65909 Another screenshot Attaching a screenshot from the app in a normal run, with about the same camera

[Mesa-dev] [Bug 53884] gl_FragCoord gets corrupted in some camera angles

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53884 --- Comment #5 from Lauri Kasanen 2012-08-21 20:05:49 UTC --- Sorry, I couldn't make anything smaller that also triggered the issue. Though, since the RTT is always cleared to black before rendering that sphere, blending should have no effect (

[Mesa-dev] [Bug 53835] [build error] /usr/bin/ld: cannot find -l-O2

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 --- Comment #7 from Kevin Hobbs 2012-08-21 19:43:50 UTC --- (In reply to comment #6) > Here you go: > http://cgit.freedesktop.org/~mattst88/mesa/log/?h=configure-cleanups I did : $ git clone git://people.freedesktop.org/~mattst88/mesa $ cd mesa

[Mesa-dev] [Bug 53884] gl_FragCoord gets corrupted in some camera angles

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53884 Ian Romanick changed: What|Removed |Added Status|NEW |NEEDINFO --- Comment #4 from Ian Romanick

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

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52167 --- Comment #6 from Robert Hooker (Sarvatt) 2012-08-21 19:26:18 UTC --- Any chance of this being commited to master? It fixes the build when --with-llvm-shared-libs is used. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=

Re: [Mesa-dev] [PATCH] mesa: Fix generic compressed texture formats' handling in glTexImage/glCopyTexImage

2012-08-21 Thread Brian Paul
On 08/21/2012 12:57 PM, Anuj Phogat wrote: The generic texture formats should be accepted by the parameter of TexImage1D, TexImage2D, TexImage3D, CopyTexImage1D, and CopyTexImage2D functions. When the application specifies a generic format, the driver is free to pick an uncompressed format. This

[Mesa-dev] [Bug 53884] gl_FragCoord gets corrupted in some camera angles

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53884 Ian Romanick changed: What|Removed |Added AssignedTo|dri-devel@lists.freedesktop |mesa-dev@lists.freedesktop.

[Mesa-dev] [PATCH] mesa: Fix generic compressed texture formats' handling in glTexImage/glCopyTexImage

2012-08-21 Thread Anuj Phogat
The generic texture formats should be accepted by the parameter of TexImage1D, TexImage2D, TexImage3D, CopyTexImage1D, and CopyTexImage2D functions. When the application specifies a generic format, the driver is free to pick an uncompressed format. This patch reverts the changes due to following

Re: [Mesa-dev] [PATCH] r600g: fix lockups with dual_src_blend v2

2012-08-21 Thread Marek Olšák
This looks good to me. Thanks. Marek On Tue, Aug 21, 2012 at 1:42 PM, Vadim Girlin wrote: > Disable blending when dual_src_blend is enabled and number of color exports > in the current fragment shader is less than 2. > > Fixes lockups with ext_framebuffer_multisample- > alpha-to-coverage-dual-sr

[Mesa-dev] [Bug 53835] [build error] /usr/bin/ld: cannot find -l-O2

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 --- Comment #6 from Matt Turner 2012-08-21 17:38:51 UTC --- Here you go: http://cgit.freedesktop.org/~mattst88/mesa/log/?h=configure-cleanups -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving t

[Mesa-dev] [Bug 53835] [build error] /usr/bin/ld: cannot find -l-O2

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 --- Comment #5 from Kevin Hobbs 2012-08-21 16:49:09 UTC --- (In reply to comment #4) > > but they may require some other(s) from the series to apply cleanly. If there's a branch that can be checked out I'll happily test it. -- Configure bugma

[Mesa-dev] FW: Welcome to the "mesa-dev" mailing list

2012-08-21 Thread Lawrence Wang
This is to post to "mesa-dev" mailing list for subscription at mesa-dev@lists.freedesktop.org Thanks, Larry. > Subject: Welcome to the "mesa-dev" mailing list > From: mesa-dev-requ...@lists.freedesktop.org > To: lsnw...@hotmail.com > Date: Tue, 21 Aug 2012 08:43:24 -0700 > > Welcome to the me

Re: [Mesa-dev] [PATCH] mesa: do more teximage error checking for generic compressed formats

2012-08-21 Thread Brian Paul
On 08/20/2012 03:34 PM, Anuj Phogat wrote: On Fri, Aug 17, 2012 at 8:28 PM, Ian Romanick wrote: On 08/16/2012 02:29 PM, Anuj Phogat wrote: On Thu, Aug 16, 2012 at 10:23 AM, Brian Paul wrote: On 08/15/2012 02:31 PM, Anuj Phogat wrote: On Tue, May 1, 2012 at 2:07 PM, Brian Paulmailto:bri.

[Mesa-dev] [Bug 53835] [build error] /usr/bin/ld: cannot find -l-O2

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 --- Comment #4 from Matt Turner 2012-08-21 15:19:19 UTC --- (In reply to comment #3) > Is this the patch: > http://lists.freedesktop.org/archives/mesa-dev/2012-August/025679.html No, they're: http://lists.freedesktop.org/archives/mesa-dev/2012-

Re: [Mesa-dev] [PATCH 2/3] intel: Eliminate unneeded hiz resolves

2012-08-21 Thread Roland Scheidegger
Am 21.08.2012 03:51, schrieb Kenneth Graunke: > On 08/20/2012 04:10 PM, Chad Versace wrote: >> On 08/17/2012 02:07 PM, Paul Berry wrote: >>> On 14 August 2012 16:58, Chad Versace >> > wrote: >>> >>> On creating a hiz miptree, we conservatively marked that e

Re: [Mesa-dev] [PATCH 3/3] radeon/llvm: custom lowering for FP_TO_UINT when dst is i1 (bool)

2012-08-21 Thread Tom Stellard
On Tue, Aug 21, 2012 at 12:41:09AM +0200, Vincent Lejeune wrote: > --- > src/gallium/drivers/radeon/R600ISelLowering.cpp | 27 > + > src/gallium/drivers/radeon/R600ISelLowering.h | 6 -- > 2 files changed, 31 insertions(+), 2 deletions(-) > > diff --git a/src/galli

Re: [Mesa-dev] [PATCH 2/3] radeon/llvm: support setcc on f32

2012-08-21 Thread Tom Stellard
On Tue, Aug 21, 2012 at 12:41:08AM +0200, Vincent Lejeune wrote: A few small comments inline, but otherwise: Reviewed-by: Tom Stellard > --- > src/gallium/drivers/radeon/R600ISelLowering.cpp | 36 > ++--- > 1 file changed, 27 insertions(+), 9 deletions(-) > > diff --git a

Re: [Mesa-dev] [PATCH 1/3] radon/llvm: br_cc f32 now lowered without cast

2012-08-21 Thread Tom Stellard
On Tue, Aug 21, 2012 at 12:41:07AM +0200, Vincent Lejeune wrote: Reviewed-by: Tom Stellard > --- > src/gallium/drivers/radeon/R600ISelLowering.cpp | 33 > ++--- > 1 file changed, 24 insertions(+), 9 deletions(-) > > diff --git a/src/gallium/drivers/radeon/R600ISelLowering.

Re: [Mesa-dev] [PATCH] r600g: fix lockups with dual_src_blend v2

2012-08-21 Thread Vadim Girlin
On Tue, 2012-08-21 at 13:59 +0200, Michel Dänzer wrote: > On Die, 2012-08-21 at 15:42 +0400, Vadim Girlin wrote: > > Disable blending when dual_src_blend is enabled and number of color exports > > in the current fragment shader is less than 2. > > > > Fixes lockups with ext_framebuffer_multisampl

Re: [Mesa-dev] [PATCH] radeonsi: Handle NULL sampler views getting passed in by the state tracker.

2012-08-21 Thread Christian König
On 21.08.2012 13:55, Michel Dänzer wrote: From: Michel Dänzer Don't dereference NULL pointers, and if all views are NULL, don't generate an invalid PM4 packet which locks up the GPU. Signed-off-by: Michel Dänzer Reviewed-by: Christian König --- src/gallium/drivers/radeonsi/radeonsi_pm4.

Re: [Mesa-dev] [PATCH] r600g: fix lockups with dual_src_blend v2

2012-08-21 Thread Michel Dänzer
On Die, 2012-08-21 at 15:42 +0400, Vadim Girlin wrote: > Disable blending when dual_src_blend is enabled and number of color exports > in the current fragment shader is less than 2. > > Fixes lockups with ext_framebuffer_multisample- > alpha-to-coverage-dual-src-blend piglit test. > > Signed-off

[Mesa-dev] [PATCH] radeonsi: Handle NULL sampler views getting passed in by the state tracker.

2012-08-21 Thread Michel Dänzer
From: Michel Dänzer Don't dereference NULL pointers, and if all views are NULL, don't generate an invalid PM4 packet which locks up the GPU. Signed-off-by: Michel Dänzer --- src/gallium/drivers/radeonsi/radeonsi_pm4.c |7 +++ src/gallium/drivers/radeonsi/si_state.c | 12 +++--

[Mesa-dev] [PATCH] r600g: fix lockups with dual_src_blend v2

2012-08-21 Thread Vadim Girlin
Disable blending when dual_src_blend is enabled and number of color exports in the current fragment shader is less than 2. Fixes lockups with ext_framebuffer_multisample- alpha-to-coverage-dual-src-blend piglit test. Signed-off-by: Vadim Girlin --- Tested on evergreen only. src/gallium/driver

[Mesa-dev] [Bug 53835] [build error] /usr/bin/ld: cannot find -l-O2

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 --- Comment #3 from Fabio Pedretti 2012-08-21 10:53:36 UTC --- Is this the patch: http://lists.freedesktop.org/archives/mesa-dev/2012-August/025679.html It gives a different error here: CCLD libglapi.la /bin/mkdir -p ../../../i386-linux-gnu

[Mesa-dev] [Bug 50754] Building 32 bit mesa on 64 bit OS fails since change for automake

2012-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50754 --- Comment #17 from Alexandre Demers 2012-08-21 06:31:45 UTC --- (In reply to comment #16) > No. Reread the manual. > > > the author(s) of the Makefile.am and configure.ac files—may adjust these > > shadow variables however necessary. I do s

Re: [Mesa-dev] [PATCH 00/18] Validate texture related enums in Mesa

2012-08-21 Thread Kenneth Graunke
On 08/20/2012 05:06 PM, Ian Romanick wrote: > This is the first batch of enum validation rework code. Function by > function, this move enum validation out of the ES wrappers into the core > Mesa routines. There's a sprinkling of core profile filtering as well. > > There are no OpenGL ES 2.0 con

Re: [Mesa-dev] [PATCH 14/18] mesa/es: Validate glTexImage format, type, and internalFormat in Mesa code rather than the ES wrapper

2012-08-21 Thread Kenneth Graunke
On 08/20/2012 05:06 PM, Ian Romanick wrote: > From: Ian Romanick > > v2: Add proper GLES3 filtering. > > Signed-off-by: Ian Romanick > --- > src/mesa/main/APIspec.xml | 203 > - > src/mesa/main/teximage.c | 104 +++ > src/mesa

Re: [Mesa-dev] [PATCH 05/18] mesa/es: Remove redundant glCompressedTexImage3DOES target validation

2012-08-21 Thread Kenneth Graunke
On 08/20/2012 10:12 PM, Kenneth Graunke wrote: > On 08/20/2012 05:06 PM, Ian Romanick wrote: >> From: Ian Romanick >> >> Signed-off-by: Ian Romanick >> --- >> src/mesa/main/APIspec.xml |4 >> 1 files changed, 0 insertions(+), 4 deletions(-) >> >> diff --git a/src/mesa/main/APIspec.xml b

Re: [Mesa-dev] [PATCH 05/18] mesa/es: Remove redundant glCompressedTexImage3DOES target validation

2012-08-21 Thread Kenneth Graunke
On 08/20/2012 05:06 PM, Ian Romanick wrote: > From: Ian Romanick > > Signed-off-by: Ian Romanick > --- > src/mesa/main/APIspec.xml |4 > 1 files changed, 0 insertions(+), 4 deletions(-) > > diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml > index 1306ac7..991e373 100

Re: [Mesa-dev] [PATCH 03/18] mesa/es: Validate glTexParameter targets in Mesa code rather than the ES wrapper

2012-08-21 Thread Kenneth Graunke
On 08/20/2012 05:06 PM, Ian Romanick wrote: > From: Ian Romanick > > Ditto for glGetTexParameter targets. > > v2: Add proper core-profile and GLES3 filtering. > > Signed-off-by: Ian Romanick > --- > src/mesa/main/APIspec.xml | 16 > src/mesa/main/es1_conversion.c | 1