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

2012-08-17 Thread Tapani Pälli
On 08/17/2012 01:05 AM, Matt Turner wrote: On Thu, Aug 16, 2012 at 2:13 AM, Tapani Pälli tapani.pa...@intel.com wrote: Commit 77a3efc6b907943903190b385fdf107c4acfcdca broke android build that sets its own value for GLSL_SRCDIR. Patch sets the value in Makefile.sources only if it is not defined

Re: [Mesa-dev] [PATCH weston] compositor: add support for OES_EGL_image_external

2012-08-17 Thread Pekka Paalanen
On Thu, 16 Aug 2012 17:28:20 -0500 Rob Clark rob.cl...@linaro.org wrote: From: Rob Clark r...@ti.com In cases where the GPU can natively handle certain YUV formats, eglQueryWaylandBufferWL() can return the value EGL_TEXTURE_EXTERNAL_WL and the compositor will treat the buffer as a single

[Mesa-dev] parallel build failure in glsl

2012-08-17 Thread Dave Airlie
This was in a make -j16 on a machine with automake-1.11, maybe our personal yacc rule is failing or something. I'm not sure how reproducible it is. Dave. gmake[2]: Leaving directory `/builddir/build/BUILD/mesa-20120816/src/mapi/es2api' Making all in glsl gmake[2]: Entering directory

Re: [Mesa-dev] [PATCH] mesa/dlopen: use HAVE_DLOPEN instead of _GNU_SOURCE

2012-08-17 Thread Tapani Pälli
On 08/16/2012 09:15 PM, Matt Turner wrote: On Thu, Aug 16, 2012 at 3:59 AM, Tapani Pälli tapani.pa...@intel.com wrote: Patches changes mesa to use 'HAVE_DLOPEN' defined by configure and Android.mk instead of _GNU_SOURCE for detecting dlopen capability. This makes dlopen to work also on Android

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

2012-08-17 Thread Tapani Pälli
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 expanded only later. Signed-off-by: Tapani Pälli

[Mesa-dev] [PATCH] egl_dri2: Fix checking DRI version in the swrast driver

2012-08-17 Thread Tomeu Vizoso
--- src/egl/drivers/dri2/egl_dri2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c index 423d18d..a6ee9e1 100644 --- a/src/egl/drivers/dri2/egl_dri2.c +++ b/src/egl/drivers/dri2/egl_dri2.c @@ -481,7 +481,8 @@

[Mesa-dev] [Bug 24207] Extension for S3TC decompression only

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=24207 --- Comment #9 from antistress thibaut.beth...@gmail.com 2012-08-17 10:28:34 UTC --- about the the potential legal problem pointed by Ian Romanick, has anyone noticed that Firefox 15 will support the WEBGL_compressed_texture_s3tc extension [1] ?

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

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50754 --- Comment #8 from Tapani Pälli lem...@gmail.com 2012-08-17 10:45:33 UTC --- Created attachment 65690 -- https://bugs.freedesktop.org/attachment.cgi?id=65690 hopeful fix attached patch fixes the issue for me -- Configure bugmail:

[Mesa-dev] [PATCH 0/2] Add VA-API / EGL interoperability

2012-08-17 Thread Gwenole Beauchesne
Hi, This patch series implements the new VA/EGL API for Intel Gen graphics. That's based on the Wayland work but applicable more generically to VA-API. So, the first patch just moves Wayland buffer format descriptors to something more general. The second patch actually implements the VA/EGL API.

[Mesa-dev] [PATCH 2/2] egl: add initial implementation for VA/EGL interop.

2012-08-17 Thread Gwenole Beauchesne
Signed-off-by: Gwenole Beauchesne gwenole.beauche...@intel.com --- configure.ac | 27 +++ include/EGL/eglmesaext.h |9 +++ src/egl/drivers/dri2/Makefile.am |1 + src/egl/drivers/dri2/egl_dri2.c | 155 ++

[Mesa-dev] [PATCH 1/2] egl_dri2: move DRI image descriptors to common code.

2012-08-17 Thread Gwenole Beauchesne
Define common a dri_image_descriptor data structure that holds the structure of supported DRIimage formats in Mesa. This is mostly useful to describe multi-planar YUV buffer formats, e.g. for Wayland. Signed-off-by: Gwenole Beauchesne gwenole.beauche...@intel.com ---

[Mesa-dev] [PATCH] st/mesa: fix sampler view counting

2012-08-17 Thread Brian Paul
In the past, when we called pipe::set_sampler_views(n) the drivers set samplers [n..MAX] to NULL. We no longer do that. The state tracker code was already trying to set unused sampler views to NULL to cover that case, but the logic was broken and unnoticed until now. This patch fixes it. Fixes

[Mesa-dev] [Bug 53616] [softpipe] sp_state_derived.c:308:update_polygon_stipple_enable: Assertion `unit = softpipe-num_samplers[1]' failed.

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53616 Brian Paul brian.e.p...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

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

2012-08-17 Thread Roland Scheidegger
Am 16.08.2012 23:29, schrieb Anuj Phogat: On Thu, Aug 16, 2012 at 10:23 AM, Brian Paul bri...@vmware.com wrote: On 08/15/2012 02:31 PM, Anuj Phogat wrote: On Tue, May 1, 2012 at 2:07 PM, Brian Paul bri...@vmware.com mailto:bri...@vmware.com wrote: When glTexImage or glCopyTexImage is

[Mesa-dev] [PATCH 1/2] mesa: querying GL_TEXTURE_COMPRESSED_IMAGE_SIZE for a buffer obj is illegal

2012-08-17 Thread Brian Paul
GL_INVALID_OPERATION is to be raised when querying a non-compressed image/buffer. Since a buffer object can't have a compressed format this query always generates an error. --- src/mesa/main/texparam.c | 10 +++--- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git

[Mesa-dev] [PATCH 2/2] mesa: remove unused params, add const qualifiers

2012-08-17 Thread Brian Paul
--- src/mesa/main/texparam.c |9 - 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index 5a5547d..41b9f97 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -926,7 +926,7 @@

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

2012-08-17 Thread Paulo Alcantara
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 fault by checking if dri2 pointer is not NULL before deferencing it. Signed-off-by: Paulo Alcantara

Re: [Mesa-dev] [PATCH weston] compositor: add support for OES_EGL_image_external

2012-08-17 Thread Rob Clark
On Fri, Aug 17, 2012 at 1:09 AM, Pekka Paalanen ppaala...@gmail.com wrote: On Thu, 16 Aug 2012 17:28:20 -0500 Rob Clark rob.cl...@linaro.org wrote: From: Rob Clark r...@ti.com In cases where the GPU can natively handle certain YUV formats, eglQueryWaylandBufferWL() can return the value

[Mesa-dev] [PATCH] mesa/es: Don't generate ES1 type conversion wrappers

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com These are gradually going to get whittled away and eventually folded into the source files with the native type functions. Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- This just copies the generated code to a non-generated file. I'm

Re: [Mesa-dev] [PATCH] st/mesa: fix sampler view counting

2012-08-17 Thread Marek Olšák
This looks good, but I don't see how it could fix anything. Bound-but-unused sampler views should have no effect on rendering. Marek On Fri, Aug 17, 2012 at 4:28 PM, Brian Paul bri...@vmware.com wrote: In the past, when we called pipe::set_sampler_views(n) the drivers set samplers [n..MAX] to

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

2012-08-17 Thread Kenneth Graunke
On 08/17/2012 09:34 AM, Roland Scheidegger wrote: Am 16.08.2012 23:29, schrieb Anuj Phogat: On Thu, Aug 16, 2012 at 10:23 AM, Brian Paul bri...@vmware.com wrote: On 08/15/2012 02:31 PM, Anuj Phogat wrote: On Tue, May 1, 2012 at 2:07 PM, Brian Paul bri...@vmware.com mailto:bri...@vmware.com

Re: [Mesa-dev] [PATCH] st/mesa: fix sampler view counting

2012-08-17 Thread Brian Paul
The bug in question was happening because when all texturing got turned off we were calling pipe-set_sampler_views(count=0). In llvmpipe this caused the function to return early, before we set the LP_NEW_SAMPLER_VIEW flag. That caused us to miss some state validation. I agree that unused

Re: [Mesa-dev] [PATCH] mesa/es: Don't generate ES1 type conversion wrappers

2012-08-17 Thread Brian Paul
On 08/17/2012 11:36 AM, Ian Romanick wrote: From: Ian Romanickian.d.roman...@intel.com These are gradually going to get whittled away and eventually folded into the source files with the native type functions. Signed-off-by: Ian Romanickian.d.roman...@intel.com --- This just copies the

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

2012-08-17 Thread Paul Berry
On 14 August 2012 16:58, Chad Versace chad.vers...@linux.intel.com wrote: On creating a hiz miptree, we conservatively marked that each miptree slice needed a hiz resolve. But the resolves are unneeded when creating a non-texture miptree, so this patch removes them. This eliminates one hiz

Re: [Mesa-dev] [PATCH 3/3] i965: Remove redundant null check

2012-08-17 Thread Paul Berry
On 14 August 2012 16:58, Chad Versace chad.vers...@linux.intel.com wrote: intel_renderbuffer_resolve_hiz checks if rb-mt is null, so there is no need for the caller to do so. Signed-off-by: Chad Versace chad.vers...@linux.intel.com Reviewed-by: Paul Berry stereotype...@gmail.com ---

Re: [Mesa-dev] breakage from Make shared-glapi the default

2012-08-17 Thread Matt Turner
On Thu, Aug 9, 2012 at 8:09 AM, Brian Paul bri...@vmware.com wrote: As of commit 9f7b3d171306ed2ae588e1a4145c5a364cf986ff, when I try to configure and build with: $ CFLAGS=-g ./autogen.sh --enable-xlib-glx --with-x --disable-driglx-direct --disable-dri --enable-debug --enable-gles1

[Mesa-dev] [PATCH 01/10] build: Remove deprecated --with-driver= flag

2012-08-17 Thread Matt Turner
--- configure.ac | 37 ++--- 1 files changed, 6 insertions(+), 31 deletions(-) diff --git a/configure.ac b/configure.ac index 7dac091..10d7b66 100644 --- a/configure.ac +++ b/configure.ac @@ -698,10 +698,7 @@ fi AC_SUBST([SHARED_GLAPI])

[Mesa-dev] [PATCH 02/10] build/x11: Don't link against shared-glapi

2012-08-17 Thread Matt Turner
--- src/mesa/drivers/x11/Makefile.am |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/x11/Makefile.am b/src/mesa/drivers/x11/Makefile.am index 263c441..d9f3423 100644 --- a/src/mesa/drivers/x11/Makefile.am +++ b/src/mesa/drivers/x11/Makefile.am @@

[Mesa-dev] [PATCH 03/10] build/x11: Force usage of C++ linker

2012-08-17 Thread Matt Turner
--- src/mesa/drivers/x11/Makefile.am |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/x11/Makefile.am b/src/mesa/drivers/x11/Makefile.am index d9f3423..dab4d6b 100644 --- a/src/mesa/drivers/x11/Makefile.am +++ b/src/mesa/drivers/x11/Makefile.am @@ -50,6

[Mesa-dev] [PATCH 04/10] build: Print whether shared-glapi is enabled

2012-08-17 Thread Matt Turner
--- configure.ac |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 10d7b66..2fe04ab 100644 --- a/configure.ac +++ b/configure.ac @@ -2199,6 +2199,7 @@ dnl Libraries echo echo Shared libs: $enable_shared echo Static

[Mesa-dev] [PATCH 05/10] build: Set sensible DRI/X11/OSMesa defaults

2012-08-17 Thread Matt Turner
--- configure.ac | 72 +++-- 1 files changed, 19 insertions(+), 53 deletions(-) diff --git a/configure.ac b/configure.ac index 2fe04ab..d411e52 100644 --- a/configure.ac +++ b/configure.ac @@ -543,19 +543,19 @@ AC_ARG_ENABLE([openvg],

[Mesa-dev] [PATCH 06/10] build: Only allow shared-glapi with DRI

2012-08-17 Thread Matt Turner
--- configure.ac | 47 +++ 1 files changed, 27 insertions(+), 20 deletions(-) diff --git a/configure.ac b/configure.ac index d411e52..7fa773f 100644 --- a/configure.ac +++ b/configure.ac @@ -681,23 +681,6 @@ if test x$enable_gles2 = xyes; then fi

[Mesa-dev] [PATCH 07/10] build: Put mapi/shared-glapi in CORE_DIRS

2012-08-17 Thread Matt Turner
SRC_DIRS was overwritten (visible in the second hunk). Also don't require mapi/shared-glapi to be built for GLES in the case of not-DRI, e.g., Xlib-GLX. --- configure.ac | 13 + 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/configure.ac b/configure.ac index

[Mesa-dev] [PATCH 08/10] build: Clean glx Makefile.am

2012-08-17 Thread Matt Turner
mapi/glapi is already built when make is run in src/glx. --- src/glx/Makefile.am |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/src/glx/Makefile.am b/src/glx/Makefile.am index 40e6b60..4aa900a 100644 --- a/src/glx/Makefile.am +++ b/src/glx/Makefile.am @@ -26,7 +26,7

[Mesa-dev] [PATCH 09/10] build: Only build libmesagallium.la if building Gallium

2012-08-17 Thread Matt Turner
--- configure.ac |1 + src/mesa/Makefile.am |9 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 758879b..872aa0c 100644 --- a/configure.ac +++ b/configure.ac @@ -1530,6 +1530,7 @@ dnl if test x$with_gallium_drivers != x;

[Mesa-dev] [Bug 47607] [advocacy] Make Anomaly Warzone Earth work with Mesa

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47607 imamdxl8...@gmail.com changed: What|Removed |Added CC||imamdxl8...@gmail.com --

[Mesa-dev] [Bug 47607] [advocacy] Make Anomaly Warzone Earth work with Mesa

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47607 --- Comment #4 from imamdxl8...@gmail.com 2012-08-18 00:16:12 UTC --- same with GMA 4500, but Windows version runs fine in Windows. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail

[Mesa-dev] [Bug 53664] New: es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration]

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53664 Bug #: 53664 Summary: es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration] Classification: Unclassified

[Mesa-dev] [Bug 53664] es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration]

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53664 Ian Romanick i...@freedesktop.org changed: What|Removed |Added Status|NEW |NEEDINFO --- Comment

[Mesa-dev] [Bug 53664] es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration]

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53664 --- Comment #2 from Brian Paul brian.e.p...@gmail.com 2012-08-18 02:49:18 UTC --- I can't repro this either. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You

[Mesa-dev] [PATCH 00/26] Eventually remove ES and ES2 filter wrappers

2012-08-17 Thread Ian Romanick
This is the first of several patch bombs that remove the generated ES1 and ES2 parameter filter wrapper functions. This wrappers need to be removed for several reasons: - Extra CPU hit that only penalizes ES applications. - Changing ES functionality has one more place to touch Mesa... because

[Mesa-dev] [PATCH 04/26] mesa/es: Remove redundant blend equation mode validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 36 1 files changed, 0 insertions(+), 36 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index b957db4..964a407 100644 ---

[Mesa-dev] [PATCH 05/26] mesa/es: Remove redundant face culling mode validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 964a407..e22a5a9 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 06/26] mesa/es: Remove redundant front-face mode validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index e22a5a9..a418dca 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 01/26] mesa/es: Remove redundant min/mag filter validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 25 - src/mesa/main/es1_conversion.c | 25 - 2 files changed, 4 insertions(+), 46 deletions(-) diff --git

[Mesa-dev] [PATCH 07/26] mesa/es: Remove redundant separate stencil mask face validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index a418dca..c3066af 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 03/26] mesa/es: Remove redundant texture target validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 12 - src/mesa/main/es1_conversion.c | 51 2 files changed, 0 insertions(+), 63 deletions(-) diff --git

[Mesa-dev] [PATCH 02/26] mesa/es: Rearrange placement of GL_TEXTURE_MAX_ANISOTROPY_EXT in APIspec

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |6 +- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 1b8dae3..68e6535 100644 ---

[Mesa-dev] [PATCH 10/26] mesa/es: Remove redundant stencil function validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- 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 fde479d..0ab404b 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 09/26] mesa/es: Remove redundant logic op operand validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 19 --- 1 files changed, 0 insertions(+), 19 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index c0e6bc4..fde479d 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 08/26] mesa/es: Remove redundant alpha function validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 10 -- src/mesa/main/es1_conversion.c | 16 2 files changed, 0 insertions(+), 26 deletions(-) diff --git a/src/mesa/main/APIspec.xml

[Mesa-dev] [PATCH 13/26] mesa/es: Remove redundant hint mode validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 606e546..18653ca 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 12/26] mesa/es: Remove redundant clear bitmask validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 11 --- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 53d9aa9..606e546 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 15/26] mesa/es: Remove redundant shade model mode validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index a7a1778..1b58e43 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 16/26] mesa/es: Remove redundant stencil op fail/zfail/zpass validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 72 - 1 files changed, 0 insertions(+), 72 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 1b58e43..5e53218 100644 ---

[Mesa-dev] [PATCH 14/26] mesa/es: Remove redundant light pname and light validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 58 src/mesa/main/es1_conversion.c | 52 +-- 2 files changed, 2 insertions(+), 108

[Mesa-dev] [PATCH 17/26] mesa/es: Remove redundant depth func validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 11 --- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 5e53218..1ce1ec7 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 18/26] mesa/es: Remove redundant glGetShaderPrecisionFormat shader type validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 14 -- 1 files changed, 0 insertions(+), 14 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 1ce1ec7..a0d3af2

[Mesa-dev] [PATCH 19/26] mesa/es: Remove redundant element type validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 12 1 files changed, 0 insertions(+), 12 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index a0d3af2..f29ece0 100644

[Mesa-dev] [PATCH 21/26] mesa/es: Remove redundant glGetBufferPointer pname validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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 70b1462..4ac9149 100644 ---

[Mesa-dev] [PATCH 20/26] mesa/es: Remove redundant glGetVertexAttribPointer pname validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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 f29ece0..70b1462 100644 ---

[Mesa-dev] [PATCH 22/26] mesa/es: Remove redundant glPointSizePointer type validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 4ac9149..679b748 100644 ---

[Mesa-dev] [PATCH 25/26] mesa/es: Remove redundant glFramebufferTexture3D textarget validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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 dd7bf90..63a2b35 100644 ---

[Mesa-dev] [PATCH 24/26] mesa/es: Remove redundant glGetShaderiv pname validation

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 0628298..dd7bf90 100644 ---

[Mesa-dev] [PATCH 26/26] APIspec: Remove cruft about AMD_compressed_???_texture

2012-08-17 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Mesa doesn't support these extensions, and it seems unlikely that it ever will Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- src/mesa/main/APIspec.xml | 15 --- 1 files changed, 0 insertions(+), 15 deletions(-) diff --git

[Mesa-dev] [Bug 53664] es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration]

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53664 --- Comment #3 from Ian Romanick i...@freedesktop.org 2012-08-18 03:16:20 UTC --- The only way I could see this occurring is if FEATURE_OES_draw_texture was somehow undefined. This only happens when FEATURE_ES1 is not defined. In this case,

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

2012-08-17 Thread Ian Romanick
On 08/16/2012 02:29 PM, Anuj Phogat wrote: On Thu, Aug 16, 2012 at 10:23 AM, Brian Paul bri...@vmware.com wrote: On 08/15/2012 02:31 PM, Anuj Phogat wrote: On Tue, May 1, 2012 at 2:07 PM, Brian Paul bri...@vmware.com mailto:bri...@vmware.com wrote: When glTexImage or glCopyTexImage is

Re: [Mesa-dev] [PATCH] glsl: Fix array overflow.

2012-08-17 Thread Ian Romanick
On 08/14/2012 06:40 PM, Stéphane Marchesin wrote: Otherwise we run past the end of the array and crash. NOTE: This is a candidate for the 8.0 branch. Signed-off-by: Stéphane Marchesin marc...@chromium.org That's funny. I completely missed this patch on the list, but ended up writing the

[Mesa-dev] [Bug 53664] es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration]

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53664 --- Comment #4 from Darxus dar...@chaosreigns.com 2012-08-18 04:11:27 UTC --- Created attachment 65721 -- https://bugs.freedesktop.org/attachment.cgi?id=65721 make log I'm also getting this. Using: ./autogen.sh --prefix=$installdir

[Mesa-dev] [Bug 53664] es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration]

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53664 --- Comment #5 from Darxus dar...@chaosreigns.com 2012-08-18 04:12:08 UTC --- Created attachment 65722 -- https://bugs.freedesktop.org/attachment.cgi?id=65722 configure log -- Configure bugmail:

[Mesa-dev] [Bug 53664] es1_conversion.c:130:5: error: implicit declaration of function '_mesa_DrawTexf' [-Werror=implicit-function-declaration]

2012-08-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53664 Darxus dar...@chaosreigns.com changed: What|Removed |Added CC||dar...@chaosreigns.com

Re: [Mesa-dev] [PATCH 1/2] mesa: querying GL_TEXTURE_COMPRESSED_IMAGE_SIZE for a buffer obj is illegal

2012-08-17 Thread Kenneth Graunke
On 08/17/2012 09:58 AM, Brian Paul wrote: GL_INVALID_OPERATION is to be raised when querying a non-compressed image/buffer. Since a buffer object can't have a compressed format this query always generates an error. --- src/mesa/main/texparam.c | 10 +++--- 1 files changed, 3