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

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50754 --- Comment #16 from Matt Turner 2012-08-21 02:43:26 UTC --- No. Reread the manual. > the author(s) of the Makefile.am and configure.ac files—may adjust these > shadow variables however necessary. -- Configure bugmail: https://bugs.freedeskt

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

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50754 --- Comment #15 from Alexandre Demers 2012-08-21 02:33:40 UTC --- (In reply to comment #14) > It looks like in general that we shouldn't modify the CFLAGS/CXXFLAGS in > configure.ac, but rather use AM_* (according to > http://www.gnu.org/softwar

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

2012-08-20 Thread 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 mailto: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 a

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

2012-08-20 Thread Chad Versace
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 { } is >> ill-formed in C++11

[Mesa-dev] [PATCH 18/18] mesa/es: Validate glCompressedTexSubImage internalFormat in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml |5 - src/mesa/main/teximage.c | 10 ++ 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 1ae7212..8b5ad03 100644 --- a/src/m

[Mesa-dev] [PATCH 16/18] mesa/es: Validate glCopyTexImage internalFormat in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick v2: Add GLES3 filtering. I'm not 100% sure this is correct. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml |8 src/mesa/main/teximage.c | 18 ++ 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/src/mesa/main/APIspec.

[Mesa-dev] [PATCH 15/18] mesa/es: Validate glTexSubImage format and type in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick v2: Add proper GLES3 filtering. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 133 - src/mesa/main/teximage.c | 17 ++ 2 files changed, 17 insertions(+), 133 deletions(-) diff --git a/src/mesa/main/APIspec.xm

[Mesa-dev] [PATCH 17/18] mesa/es: Validate glCompressedTexImage internalFormat in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick v2: Add proper core-profile filtering. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 18 -- src/mesa/main/glformats.c | 24 2 files changed, 16 insertions(+), 26 deletions(-) diff --git a/src/mesa/main/APIspec.xml b

[Mesa-dev] [PATCH 12/18] mesa: Generate an error when glCopyTexImage border is invalid

2012-08-20 Thread Ian Romanick
From: Ian Romanick NOTE: This is a candidate for stable release branches. Signed-off-by: Ian Romanick --- src/mesa/main/teximage.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 8e66e90..ee19288 100644 --- a/s

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

2012-08-20 Thread Ian Romanick
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/main/teximage.h |4 + 3 files changed, 108 insertions(+), 2

[Mesa-dev] [PATCH 13/18] mesa/es: Validate glTexImage border in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick Also validate glCopyTexImage border. This fixes a bug in the APIspec. Previously glTexImage3DOES could be passed a non-zero border without error. NOTE: This is a candidate for stable release branches. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml |8 ---

[Mesa-dev] [PATCH 11/18] mesa/es: Add support for GL_APPLE_texture_max_level

2012-08-20 Thread Ian Romanick
From: Ian Romanick This is desktop OpenGL functionality that has always existed. Signed-off-by: Ian Romanick --- src/mesa/main/extensions.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 9e357cd..ab33ac5 10

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

2012-08-20 Thread Ian Romanick
From: Ian Romanick This also adds a missing extension (and API) check around GL_TEXTURE_CROP_RECT_OES. v2: Add proper core-profile, GLES1, and GLES3 filtering. GL_TEXTURE_MAX_LEVEL is (incorrectly) accepted in ES contexts. A future patch will add GL_APPLE_texture_max_level, and meta really nee

[Mesa-dev] [PATCH 10/18] mesa/es: Validate glGetTexParameter pnames in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick This also adds a missing extension (and API) check around GL_TEXTURE_CROP_RECT_OES. v2: Add proper core-profile and GLES3 filtering. GL_TEXTURE_MAX_LEVEL is (incorrectly) accepted in ES contexts. A future patch will add GL_APPLE_texture_max_level, and meta really needs this.

[Mesa-dev] [PATCH 08/18] mesa/es: Remove redundant glBindTexture target validation

2012-08-20 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- 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 b08f2b4..c2347e5 100644 --- a/src/mesa/main/APIspec.xml +++ b/src/mesa/main/AP

[Mesa-dev] [PATCH 07/18] mesa: Filter glBindTexture targets based on supported features.

2012-08-20 Thread Ian Romanick
From: Ian Romanick Fixed the piglit test arb_texture_buffer_object-negative-unsupported. NOTE: This is a candidate for stable release branches. v2: Add proper core-profile and GLES3 filtering. Signed-off-by: Ian Romanick --- src/mesa/main/texobj.c | 30 +- 1 fil

[Mesa-dev] [PATCH 06/18] mesa/es: Validate tex image targets in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick This should take care of all the TexImage, TexSubImage, CopyTexImage, and CopyTexSubImage type paths. v2: Add proper core-profile and GLES3 filtering. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 112 - src/mesa/ma

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

2012-08-20 Thread Ian Romanick
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 100644 --- a/src/mesa/main/APIspec.xml +++ b/src/mesa/main/APIspe

[Mesa-dev] [PATCH 04/18] mesa/es: Validate EGLImageTargetTexture2DOES target in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml |5 - src/mesa/main/teximage.c | 20 +++- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 7acade2..1306ac7 100644

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

2012-08-20 Thread Ian Romanick
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 | 10 -- src/mesa/main/texparam.c | 23

[Mesa-dev] [PATCH 02/18] mesa/es: Validate GL_TEXTURE_WRAP param in Mesa code rather than the ES wrapper

2012-08-20 Thread Ian Romanick
From: Ian Romanick v2: Add proper core-profile filtering. Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 14 ++ src/mesa/main/es1_conversion.c | 10 -- src/mesa/main/texparam.c | 14 ++ 3 files changed, 12 insertions(+), 26 deletion

[Mesa-dev] [PATCH 01/18] mesa: Refactor validate_texture_wrap_mode to use a switch-statement

2012-08-20 Thread Ian Romanick
From: Ian Romanick This makes the next couple changes a little easier. Signed-off-by: Ian Romanick --- src/mesa/main/texparam.c | 77 +- 1 files changed, 42 insertions(+), 35 deletions(-) diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texpa

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

2012-08-20 Thread Ian Romanick
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 conformance regressions on in this series. _

[Mesa-dev] [PATCH] i965/msaa: Add sample-alpha-to-coverage support for multiple render targets

2012-08-20 Thread Anuj Phogat
Render Target Write message should include source zero alpha value when sample-alpha-to-coverage is enabled for an FBO with multiple render targets. Source zero alpha value is used as fragment coverage for all the render targets. This patch makes piglit tests draw-buffers-alpha-to-coverage and al

[Mesa-dev] [PATCH] i965: Move hiz resolve to after renderbuffer resizing (v2)

2012-08-20 Thread Chad Versace
Do all pre-draw hiz resolves *after* the renderbuffers are resized by intel_prepare_render. Otherwise, we may resolve buffers that are immediately discarded afterwards. Fixes the assertion failure below when resizing windows in KDE and under some unknown circumstance in Chrome OS: intel_resolv

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

2012-08-20 Thread Chad Versace
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 each miptree > slice needed a hiz resolve. But the resolves are unneeded when creating > a non-t

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

2012-08-20 Thread Vincent Lejeune
--- 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/gallium/drivers/radeon/R600ISelLowering.cpp b/src/gallium/drivers/radeon/R600ISelLow

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

2012-08-20 Thread Vincent Lejeune
--- src/gallium/drivers/radeon/R600ISelLowering.cpp | 36 ++--- 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/src/gallium/drivers/radeon/R600ISelLowering.cpp b/src/gallium/drivers/radeon/R600ISelLowering.cpp index 4b89f7e..3aeb6ff 100644 --- a/src/gallium/driv

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

2012-08-20 Thread Vincent Lejeune
--- src/gallium/drivers/radeon/R600ISelLowering.cpp | 33 ++--- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/src/gallium/drivers/radeon/R600ISelLowering.cpp b/src/gallium/drivers/radeon/R600ISelLowering.cpp index fe99582..4b89f7e 100644 --- a/src/gallium/driv

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

2012-08-20 Thread Roland Scheidegger
Am 20.08.2012 23:34, schrieb Anuj Phogat: > 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

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

2012-08-20 Thread Vadim Girlin
On Mon, 2012-08-20 at 23:27 +0200, Marek Olšák wrote: > I am not so familiar with this piece of code, but the idea sounds good. > > In the future, we should just disable the dual src blending instead. > Shader recompilations certainly take more time than changing a couple > of blending registers.

[Mesa-dev] [Bug 53696] EGL: GL contexts show GLES extensions

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53696 Chad Versace changed: What|Removed |Added AssignedTo|mesa-dev@lists.freedesktop. |chad.vers...@linux.intel.co

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

2012-08-20 Thread Anuj Phogat
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 Paul >>> >

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

2012-08-20 Thread Marek Olšák
I am not so familiar with this piece of code, but the idea sounds good. In the future, we should just disable the dual src blending instead. Shader recompilations certainly take more time than changing a couple of blending registers. Marek On Mon, Aug 20, 2012 at 10:35 PM, Vadim Girlin wrote: >

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

2012-08-20 Thread Matt Turner
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 { } is > ill-formed in C++11 [-Wnarrowing] > in ff_fragment_shader.cpp and gen6_

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

2012-08-20 Thread Kenneth Graunke
On 08/20/2012 10:04 AM, Ian Romanick wrote: > On 08/20/2012 12:15 AM, Kenneth Graunke wrote: >> On 08/19/2012 11:28 PM, Kenneth Graunke wrote: >> Wait, no, there is a bug: it turns out that MultiTexCoord does >> absolutely /no/ validation on its targets. From vbo_attrib_tmp.h: >> >> static void GL

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

2012-08-20 Thread Kenneth Graunke
On 08/20/2012 09:46 AM, Ian Romanick wrote: > Mesa always advertises GL_EXT_texture3D (part of OpenGL 1.2) and, > therefore, OES_texture_3D. It doesn't check for support because it > always is supported. :) Then why is it not &dummy_true in extensions.c? __

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

2012-08-20 Thread Chad Versace
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 { } is ill-formed in C++11 [-Wnarrowing] in ff_fragment_shader.cpp and gen6_blorp.cpp. When building i965, I observed no other difference in

Re: [Mesa-dev] [PATCH] intel: Don't advertise GLX_SWAP_COPY_OML

2012-08-20 Thread Chad Versace
On 08/14/2012 11:09 AM, Ian Romanick wrote: > On 08/13/2012 08:43 AM, Eric Anholt wrote: >> Ian Romanick writes: >>> The tail should not wag the dog. If the application requests such a >>> config, we should not page flip. There are cases where the copy is >>> preferable because it leaves the back

Re: [Mesa-dev] [PATCH 2/2] gbm: Use libkms to work around missing cursor support in dri drivers

2012-08-20 Thread Scott Moreau
*snip* >> Reviewed-by: Kristian Høgsberg > > > > > > I briefly tested these patches on RV350 and it fixes the problem here > > https://bugs.freedesktop.org/show_bug.cgi?id=52267 > > I did notice that the last frame of the last instance of weston is > 'flashed' > > during the fade-in when running

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

2012-08-20 Thread Vadim Girlin
Add fake pixel exports if we have less than two when dual_src_blend is enabled. Fixes lockups with ext_framebuffer_multisample- alpha-to-coverage-dual-src-blend piglit test on juniper. Signed-off-by: Vadim Girlin --- Tested on evergreen only. Don't know if it's documented somewhere, possibly w

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

2012-08-20 Thread Scott Moreau
I tested this series and it works. It fixes weston drm backend as outlined here https://bugs.freedesktop.org/show_bug.cgi?id=52267 There is a typo in this series, to get it to build you need: diff --git a/src/gbm/backends/dri/gbm_dri.c b/src/gbm/backends/dri/gbm_dri.c index dfa5d39..0d48d70 100644

Re: [Mesa-dev] [PATCH] i965/msaa: Add sample-alpha-to-coverage support for multiple render targets

2012-08-20 Thread Paul Berry
On 13 August 2012 16:46, Anuj Phogat wrote: > Render Target Write message should include source zero alpha value when > sample-alpha-to-coverage is enabled for an FBO with multiple render > targets. > Source zero alpha value is used as fragment coverage for all the render > targets. > > This pat

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

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50754 --- Comment #14 from Matt Turner 2012-08-20 17:33:34 UTC --- It looks like in general that we shouldn't modify the CFLAGS/CXXFLAGS in configure.ac, but rather use AM_* (according to http://www.gnu.org/software/automake/manual/automake.html#User-

[Mesa-dev] [Bug 51972] Compilation error on x86-64 with --enable-32-bit option

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51972 Matt Turner changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

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

2012-08-20 Thread Ian Romanick
On 08/20/2012 12:15 AM, Kenneth Graunke wrote: On 08/19/2012 11:28 PM, Kenneth Graunke wrote: On 08/17/2012 08:11 PM, Ian Romanick wrote: From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 12 - src/mesa/main/es1_conversion.c | 51 -

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

2012-08-20 Thread Ian Romanick
On 08/19/2012 11:28 PM, Kenneth Graunke wrote: On 08/17/2012 08:11 PM, Ian Romanick wrote: From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 12 - src/mesa/main/es1_conversion.c | 51 2 files changed, 0

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

2012-08-20 Thread Ian Romanick
On 08/19/2012 11:40 PM, Kenneth Graunke wrote: On 08/17/2012 08:11 PM, Ian Romanick wrote: From: Ian Romanick --- 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

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

2012-08-20 Thread Ian Romanick
On 08/19/2012 11:58 PM, Kenneth Graunke wrote: On 08/17/2012 08:11 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/APIs

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

2012-08-20 Thread Ian Romanick
On 08/18/2012 12:44 AM, Tomeu Vizoso wrote: On Sat, Aug 18, 2012 at 5:20 AM, Ian Romanick wrote: On 08/17/2012 10:08 AM, Paulo Alcantara wrote: 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).

Re: [Mesa-dev] [PATCH] radeon-llvm: Start multithreaded before using llvm.

2012-08-20 Thread Tom Stellard
Pushed. Thanks for investigating this and coming up with a clean solution. -Tom On Sat, Aug 18, 2012 at 11:43:51AM +0200, Mathias Fröhlich wrote: > This is required to make some of llvm's api calls > thread save. In particular the PassRegistry, which is > implicitly accessed while compiling shad

Re: [Mesa-dev] Upcoming Mesa releases

2012-08-20 Thread Ian Romanick
On 08/20/2012 07:26 AM, Marek Olšák wrote: On Fri, Aug 10, 2012 at 4:01 AM, Ian Romanick wrote: After the big announcement at SIGGRAPH, I want to discuss plans for upcoming Mesa releases. This is basically inline with what we discussed a few months ago, but there are a couple changes. I know

Re: [Mesa-dev] [PATCH] r600g-llvm: Crude fix for a race in initialization of the llvm backend

2012-08-20 Thread Tom Stellard
On Sat, Aug 18, 2012 at 11:43:45AM +0200, Mathias Fröhlich wrote: > > Tom, > > On Thursday, August 16, 2012 14:50:57 you wrote: > > Actually, I just noticed that the LLVM docs say that only one thread can > > access the target registry at a time: > > http://llvm.org/docs/doxygen/html/structllvm_1

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

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 --- Comment #2 from Matt Turner 2012-08-20 16:27:05 UTC --- Patches on the list to fix this now. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assigne

Re: [Mesa-dev] [PATCH] Remove 3D registers from compute command stream

2012-08-20 Thread Tom Stellard
On Mon, Aug 13, 2012 at 09:05:29PM +0100, archibald wrote: > Hi list, > > Here is my attempt at solving the task "Remove 3D registers from > compute > command stream" on http://dri.freedesktop.org/wiki/R600ToDo. It's my > first attempt at a patch for mesa, so I'd appreciate any comments or > advic

Re: [Mesa-dev] Upcoming Mesa releases

2012-08-20 Thread Marek Olšák
On Fri, Aug 10, 2012 at 4:01 AM, Ian Romanick wrote: > After the big announcement at SIGGRAPH, I want to discuss plans for upcoming > Mesa releases. This is basically inline with what we discussed a few months > ago, but there are a couple changes. I know a lot of people have been doing > a lot

[Mesa-dev] [Bug 38172] Mesa build errors using build.sh script

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38172 --- Comment #5 from Knut Petersen 2012-08-20 14:17:18 UTC --- (In reply to comment #2) > This issue is NOT resolved. > > Matt Turner wrote : "This looks like you don't have the Xlib headers > installed." > > Read what I wrote : "The problem ha

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

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 --- Comment #1 from Kevin Hobbs 2012-08-20 13:44:51 UTC --- I got the same error and started a thread in the developers list: http://lists.freedesktop.org/archives/mesa-dev/2012-August/025659.html I was building from git with the configuration

[Mesa-dev] [Bug 38172] Mesa build errors using build.sh script

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38172 --- Comment #4 from Dan Nicholson 2012-08-20 12:15:12 UTC --- I'd also just like to quickly say that this situation creeps in frequently because almost everyone doing graphics development has /usr/include/X11/Xlib.h installed and doesn't notice

[Mesa-dev] [Bug 38172] Mesa build errors using build.sh script

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38172 Dan Nicholson changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|NOTABUG

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

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 Fabio Pedretti changed: What|Removed |Added Summary|/usr/bin/ld: cannot find|[build error] /usr/bin/ld:

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

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53835 Bug #: 53835 Summary: /usr/bin/ld: cannot find -l-O2 Classification: Unclassified Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW Seve

[Mesa-dev] [Bug 51749] make[6]: ../../../../src/mesa/Makefile.old: No such file or directory

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51749 Fabio Pedretti changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

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

2012-08-20 Thread Kenneth Graunke
On 08/17/2012 04:46 PM, Matt Turner wrote: > --- > configure.ac | 37 ++--- > 1 files changed, 6 insertions(+), 31 deletions(-) These patches look okay to me. I suspect the most contentious one will be #5 (sensible defaults), as it hardcodes the Linux defaults a

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

2012-08-20 Thread Kenneth Graunke
On 08/17/2012 04:46 PM, Matt Turner wrote: > --- > configure.ac | 37 ++--- > 1 files changed, 6 insertions(+), 31 deletions(-) These patches look okay to me. I suspect the most contentious one will be #5 ("sane defaults"). It does make things less automatic (n

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

2012-08-20 Thread Kenneth Graunke
On 08/17/2012 04:46 PM, Matt Turner wrote: > --- > 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 > @@

[Mesa-dev] [Bug 37423] Broken build

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37423 Knut Petersen changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Mesa-dev] [Bug 53696] EGL: GL contexts show GLES extensions

2012-08-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53696 --- Comment #4 from Pekka Paalanen 2012-08-20 07:27:37 UTC --- Hi, a couple of things you could check, since from a quick glance of the code I could not spot them: - where does your code call eglBindAPI() to take the big OpenGL into use? Or the

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

2012-08-20 Thread Kenneth Graunke
On 08/19/2012 11:28 PM, Kenneth Graunke wrote: > On 08/17/2012 08:11 PM, Ian Romanick wrote: >> From: Ian Romanick >> >> Signed-off-by: Ian Romanick >> --- >> src/mesa/main/APIspec.xml | 12 - >> src/mesa/main/es1_conversion.c | 51 >> >>