Re: [Mesa-dev] [RFC] OES_external_image for i965

2013-03-01 Thread Pohjolainen, Topi
On Tue, Feb 26, 2013 at 04:05:25PM +, Tom Cooksey wrote: Hi Topi, The second more or less questionable part is the support for creating YUV buffers. In order to test for YUV sampling one needs a way of providing them for the EGL stack. Here I chose to augment the dri driver backing

[Mesa-dev] [PATCH] GLSL: fix too eager constant variable optimization

2013-03-01 Thread Aras Pranckevicius
Hi, opt_constant_variable was marking a variable as constant as long as there was exactly one constant assignment to it, but did not take into account that this assignment might be in a dynamic branch or a loop. Was happening on a fragment shader like this: uniform float mode; float func (float

Re: [Mesa-dev] RFC: enforcing gallium resource bind flags

2013-03-01 Thread Marek Olšák
On Fri, Mar 1, 2013 at 12:31 AM, Roland Scheidegger srol...@vmware.com wrote: Hi, there is some sloppy usage of bind flags in the opengl state tracker (that is, resources get used for things which they didn't have the bind flag set). We'd really like to enforce these flags to be honored but

[Mesa-dev] [PATCH] GLSL: fix lower_jumps to report progress properly

2013-03-01 Thread Aras Pranckevicius
Hi, A fix for lower_jumps progress reporting, very much like similar in c1e591eed: http://cgit.freedesktop.org/mesa/mesa/commit/src/glsl/lower_variable_index_to_cond_assign.cpp?id=c1e591eed -- Aras Pranckevičius work: http://unity3d.com home: http://aras-p.info glsl-lower-jumps-fix.diff

Re: [Mesa-dev] RFC: enforcing gallium resource bind flags

2013-03-01 Thread Jose Fonseca
- Original Message - On Fri, Mar 1, 2013 at 12:31 AM, Roland Scheidegger srol...@vmware.com wrote: Hi, there is some sloppy usage of bind flags in the opengl state tracker (that is, resources get used for things which they didn't have the bind flag set). We'd really like to

Re: [Mesa-dev] RFC: enforcing gallium resource bind flags

2013-03-01 Thread Christoph Bumiller
On 01.03.2013 11:30, Jose Fonseca wrote: - Original Message - On Fri, Mar 1, 2013 at 12:31 AM, Roland Scheidegger srol...@vmware.com wrote: Hi, there is some sloppy usage of bind flags in the opengl state tracker (that is, resources get used for things which they didn't have the

Re: [Mesa-dev] RFC: enforcing gallium resource bind flags

2013-03-01 Thread Jose Fonseca
- Original Message - On 01.03.2013 11:30, Jose Fonseca wrote: - Original Message - On Fri, Mar 1, 2013 at 12:31 AM, Roland Scheidegger srol...@vmware.com wrote: Hi, there is some sloppy usage of bind flags in the opengl state tracker (that is, resources get used

Re: [Mesa-dev] [PATCH 2/3] Add dri image entry point for creating image from fd

2013-03-01 Thread Ander Conselvan de Oliveira
On 02/28/2013 03:52 AM, Kristian Høgsberg wrote: --- include/GL/internal/dri_interface.h| 14 +++- src/mesa/drivers/dri/intel/intel_regions.c | 33 +++ src/mesa/drivers/dri/intel/intel_regions.h | 6 src/mesa/drivers/dri/intel/intel_screen.c | 53

Re: [Mesa-dev] [PATCH 3/3] wayland: Add prime fd passing as a buffer sharing mechanism

2013-03-01 Thread Ander Conselvan de Oliveira
On 02/28/2013 03:52 AM, Kristian Høgsberg wrote: diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c index b5cd04a..1b42a98 100644 --- a/src/egl/drivers/dri2/platform_wayland.c +++ b/src/egl/drivers/dri2/platform_wayland.c @@ -451,6 +451,46 @@ static

Re: [Mesa-dev] [PATCH] llvmpipe: bump glsl version to 140

2013-03-01 Thread Roland Scheidegger
Am 01.03.2013 08:50, schrieb Andreas Boll: 2013/3/1 srol...@vmware.com: From: Roland Scheidegger srol...@vmware.com texel offsets should have been the last missing feature (not sure if anything is actually missing for 140). In any case we still don't do OpenGL 3.0 (missing MSAA which will

[Mesa-dev] [PATCH] draw/llvm: skip clipping and viewport transform if there's no position output

2013-03-01 Thread sroland
From: Roland Scheidegger srol...@vmware.com With glsl 1.40 writing position is not required (useful for transform feedback, though in fact it's still possible to rasterize such geometry even if the results aren't too well defined). Prevents crashes in that case. Fixes piglit

[Mesa-dev] [PATCH] llvmpipe: don't assert on illegal surface creation.

2013-03-01 Thread sroland
From: Roland Scheidegger srol...@vmware.com Since c8eb2d0e829d0d2aea6a982620da0d3cfb5982e2 llvmpipe checks if it's actually legal to create a surface. The opengl state tracker doesn't quite obey this so for now just warn instead of assert. Also warn instead of disabled assert when creating

Re: [Mesa-dev] [RFC] OES_external_image for i965

2013-03-01 Thread Kristian Høgsberg
On Fri, Mar 1, 2013 at 3:51 AM, Pohjolainen, Topi topi.pohjolai...@intel.com wrote: On Tue, Feb 26, 2013 at 04:05:25PM +, Tom Cooksey wrote: Hi Topi, The second more or less questionable part is the support for creating YUV buffers. In order to test for YUV sampling one needs a way of

[Mesa-dev] [PATCH] Fix out-of-tree build of 'make check' in src/mesa/main/tests

2013-03-01 Thread Jon TURNEY
Signed-off-by: Jon TURNEY jon.tur...@dronecode.org.uk --- src/mesa/main/tests/Makefile.am |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesa/main/tests/Makefile.am b/src/mesa/main/tests/Makefile.am index 012b353..4acc815 100644 ---

Re: [Mesa-dev] [PATCH] Fix out-of-tree build of 'make check' in src/mesa/main/tests

2013-03-01 Thread Andreas Boll
2013/3/1 Jon TURNEY jon.tur...@dronecode.org.uk: Signed-off-by: Jon TURNEY jon.tur...@dronecode.org.uk Reviewed-by: Andreas Boll andreas.boll@gmail.com --- src/mesa/main/tests/Makefile.am |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git

[Mesa-dev] [PATCH 1/6] r600g: don't check for R600_ENABLE_S3TC env var

2013-03-01 Thread Marek Olšák
--- src/gallium/drivers/r600/r600_texture.c | 13 +++-- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index acea19d..aefc40f 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++

[Mesa-dev] [PATCH 2/6] r600g: cleanup #include recursion between r600_pipe.h and evergreen_compute.h

2013-03-01 Thread Marek Olšák
--- src/gallium/drivers/r600/compute_memory_pool.c|1 + src/gallium/drivers/r600/evergreen_compute.h |2 +- src/gallium/drivers/r600/evergreen_compute_internal.c |1 + src/gallium/drivers/r600/r600_pipe.c |1 + src/gallium/drivers/r600/r600_pipe.h

[Mesa-dev] [PATCH 3/6] r600g: use a single env var R600_DEBUG, disable bytecode dumping

2013-03-01 Thread Marek Olšák
Only the disassembler is used to dump shaders. Here's a few examples how to use R600_DEBUG. Log compute info: R600_DEBUG=compute Dump all shaders: R600_DEBUG=fs,vs,gs,ps,cs Dump pixel shaders only: R600_DEBUG=ps Disable Hyper-Z: R600_DEBUG=nohyperz Disable the LLVM backend:

[Mesa-dev] [PATCH 4/6] r600g: remove bytecode dumping

2013-03-01 Thread Marek Olšák
--- src/gallium/drivers/r600/r600_asm.c | 239 --- src/gallium/drivers/r600/r600_asm.h |1 - 2 files changed, 240 deletions(-) diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 283682f..805467e 100644 ---

[Mesa-dev] [PATCH 5/6] gallium/util: dump instance_divisor

2013-03-01 Thread Marek Olšák
--- src/gallium/auxiliary/util/u_dump_state.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/util/u_dump_state.c b/src/gallium/auxiliary/util/u_dump_state.c index d7df5b4..2f28f3c 100644 --- a/src/gallium/auxiliary/util/u_dump_state.c +++

[Mesa-dev] [PATCH 6/6] r600g: dump vertex elements state along with the fetch shader

2013-03-01 Thread Marek Olšák
--- src/gallium/drivers/r600/r600_asm.c |8 1 file changed, 8 insertions(+) diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 805467e..4e0cd01 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@

Re: [Mesa-dev] [PATCH] Fix out-of-tree build of 'make check' in src/mesa/main/tests

2013-03-01 Thread Matt Turner
On Fri, Mar 1, 2013 at 7:28 AM, Jon TURNEY jon.tur...@dronecode.org.uk wrote: Signed-off-by: Jon TURNEY jon.tur...@dronecode.org.uk --- Candidate for the stable branch? ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org

[Mesa-dev] [PATCH] tgsi: add texel offsets and derivatives to sampler interface

2013-03-01 Thread sroland
From: Roland Scheidegger srol...@vmware.com Something I never got around to implement, but this is the tgsi execution side for implementing texel offsets (for ordinary texturing) and explicit derivatives for sampling (though I guess the ordering of the components for the derivs parameters is

Re: [Mesa-dev] [PATCH] tgsi: add texel offsets and derivatives to sampler interface

2013-03-01 Thread Brian Paul
Looks good, just minor things below. Reviewed-by: Brian Paul bri...@vmware.com On 03/01/2013 11:41 AM, srol...@vmware.com wrote: From: Roland Scheideggersrol...@vmware.com Something I never got around to implement, but this is the tgsi execution side for implementing texel offsets (for

Re: [Mesa-dev] [PATCH 08/12] intel: Refactor selection of miptree tiling

2013-03-01 Thread Ian Romanick
On 02/28/2013 03:45 PM, Chad Versace wrote: This patch (1) extracts from intel_miptree_create() the spaghetti logic that selects the tiling format, (2) rewrites that spaghetti into a lucid form, and (3) moves it to a new function, intel_miptree_choose_tiling(). No behavioral change. As a bonus,

Re: [Mesa-dev] [PATCH V4 00/19] ARB_texture_multisample support

2013-03-01 Thread Paul Berry
On 26 February 2013 02:10, Chris Forbes chr...@ijw.co.nz wrote: This series adds the core mesa bits for ARB_texture_multisample, and support in the i965 driver for Gen6 and Gen7. I've addressed the issues that were raised for V3, and also fixed some other bugs which I found while beefing

Re: [Mesa-dev] [PATCH 10/12] i965: Push stencil alignment w/a down to brw_miptree_layout()

2013-03-01 Thread Ian Romanick
On 02/28/2013 03:45 PM, Chad Versace wrote: Miptree creation has a workaround for separate stencil buffers. After the layout is created, we override the tiling to I915_NONE and align it 64x64, the size of a W-tile. Before this patch, the workaround occurs in an odd place:

Re: [Mesa-dev] [PATCH] GLSL: fix too eager constant variable optimization

2013-03-01 Thread Ian Romanick
On 03/01/2013 02:02 AM, Aras Pranckevicius wrote: Hi, opt_constant_variable was marking a variable as constant as long as there was exactly one constant assignment to it, but did not take into account that this assignment might be in a dynamic branch or a loop. Was happening on a fragment

Re: [Mesa-dev] [PATCH] GLSL: fix too eager constant variable optimization

2013-03-01 Thread Paul Berry
On 1 March 2013 02:02, Aras Pranckevicius a...@unity3d.com wrote: Hi, opt_constant_variable was marking a variable as constant as long as there was exactly one constant assignment to it, but did not take into account that this assignment might be in a dynamic branch or a loop. Was

Re: [Mesa-dev] [PATCH 10/12] i965: Push stencil alignment w/a down to brw_miptree_layout()

2013-03-01 Thread Chad Versace
On 03/01/2013 11:00 AM, Ian Romanick wrote: On 02/28/2013 03:45 PM, Chad Versace wrote: Miptree creation has a workaround for separate stencil buffers. After the layout is created, we override the tiling to I915_NONE and align it 64x64, the size of a W-tile. Before this patch, the

Re: [Mesa-dev] [PATCH V4 00/19] ARB_texture_multisample support

2013-03-01 Thread Chris Forbes
The minmax regression is addressed by my followup series, which adds the internalformat_query interactions. Do I need to fold that into this one? On Sat, Mar 2, 2013 at 7:59 AM, Paul Berry stereotype...@gmail.com wrote: On 26 February 2013 02:10, Chris Forbes chr...@ijw.co.nz wrote: This

Re: [Mesa-dev] [PATCH V4 00/19] ARB_texture_multisample support

2013-03-01 Thread Chris Forbes
I've had a quick look at the push-pop-texture-state regression, and that looks like a real bug I've introduced. I'm looking into it. On Sat, Mar 2, 2013 at 8:44 AM, Chris Forbes chr...@ijw.co.nz wrote: The minmax regression is addressed by my followup series, which adds the internalformat_query

Re: [Mesa-dev] [PATCH V4 00/19] ARB_texture_multisample support

2013-03-01 Thread Chris Forbes
I missed a case in attrib.c; this small patch should be folded in with the rest of the changes which add support for the new targets: commit 8b16367bab07cfe2eb44cc96a22bb925593b1e20 Author: Chris Forbes chr...@ijw.co.nz Date: Sat Mar 2 09:10:25 2013 +1300 fixup glPopAttrib(GL_TEXTURE_BIT)

[Mesa-dev] [PATCH] winsys/radeon: Only add bo to hash table when creating flink

2013-03-01 Thread Martin Andersson
The problem is that we mix bo handles and flinked names in the hash table. Because kms type handles are not flinked they should not be added to the hash table. If we do that we will sooner or later get a situation where we will overwrite a correct entry because the bo handle was the same as a

Re: [Mesa-dev] [PATCH] tgsi: add texel offsets and derivatives to sampler interface

2013-03-01 Thread Roland Scheidegger
Am 01.03.2013 19:54, schrieb Brian Paul: Looks good, just minor things below. Reviewed-by: Brian Paul bri...@vmware.com On 03/01/2013 11:41 AM, srol...@vmware.com wrote: From: Roland Scheideggersrol...@vmware.com Something I never got around to implement, but this is the tgsi execution

[Mesa-dev] [Bug 61364] LLVM assertion when starting X11

2013-03-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61364 Martin Stolpe martinsto...@gmail.com changed: What|Removed |Added CC|

Re: [Mesa-dev] [PATCH 3/3] egl: Add MESA_image_sRGB extension.

2013-03-01 Thread Ian Romanick
On 02/27/2013 10:19 PM, John Kåre Alsaker wrote: On Mon, Feb 25, 2013 at 8:55 PM, Ian Romanick i...@freedesktop.org wrote: Also... are there piglit tests coming? Not unless you convince me otherwise. I don't think I'll be able to verify that said tests work however. More recent versions of

[Mesa-dev] [Bug 61364] LLVM assertion when starting X11

2013-03-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61364 --- Comment #2 from John Kåre Alsaker john.kare.alsa...@gmail.com --- Created a LLVM bug report since it looks a LLVM issue: http://llvm.org/bugs/show_bug.cgi?id=15410 -- You are receiving this mail because: You are the assignee for the bug.

Re: [Mesa-dev] [PATCH] winsys/radeon: Only add bo to hash table when creating flink

2013-03-01 Thread Jerome Glisse
On Fri, Mar 1, 2013 at 4:34 PM, Martin Andersson g02ma...@gmail.com wrote: The problem is that we mix bo handles and flinked names in the hash table. Because kms type handles are not flinked they should not be added to the hash table. If we do that we will sooner or later get a situation where

Re: [Mesa-dev] [PATCH] winsys/radeon: Only add bo to hash table when creating flink

2013-03-01 Thread Alex Deucher
On Fri, Mar 1, 2013 at 4:34 PM, Martin Andersson g02ma...@gmail.com wrote: The problem is that we mix bo handles and flinked names in the hash table. Because kms type handles are not flinked they should not be added to the hash table. If we do that we will sooner or later get a situation where

[Mesa-dev] R600 backend patch avaiable for Mesa 9.1

2013-03-01 Thread Tom Stellard
Hi, I've generated a patch from the master branch of my llvm tree (http://cgit.freedesktop.org/~tstellar/llvm/) that can be applied against the LLVM 3.2 code base to add the R600 backend. For the Mesa 9.1 release, this patch is required in order to use the radeonsi driver, experimental compute

[Mesa-dev] [RFC] GLX_MESA_query_renderer

2013-03-01 Thread Ian Romanick
Since last September I've been gradually working on an extension to let applications query information about the renderer before (and after) creating a context. I've talked it over with a few ISVs and with various other folks. I also gathered some input from folks at FOSDEM after my talk

[Mesa-dev] [PATCH] i965: Fix Haswell/CRW PCI IDs.

2013-03-01 Thread Kenneth Graunke
The second digit was off by one, which meant we accidentally treated GT(n) as GT(n-1). This also meant no support for GT1 at all. NOTE: This is a candidate for stable branches. Signed-off-by: Kenneth Graunke kenn...@whitecape.org --- include/pci_ids/i965_pci_ids.h | 18

[Mesa-dev] [PATCH 1/2] draw: fix no position output in non-llvm pipeline.

2013-03-01 Thread sroland
From: Roland Scheidegger srol...@vmware.com It seems easiest (and best) if we simply skip all the later stages (after stream output). (This is different to the llvm case at least for now where we will simply try to render garbage, though both behaviors should be correct.) Fixes piglit

[Mesa-dev] [PATCH] st/mesa: convert ir_triop_lrp to TGSI_OPCODE_LRP

2013-03-01 Thread Brian Paul
AFAICT, all gallium drivers implemente TGSI_OPCODE_LRP. Tested with softpipe, llvmpipe, svga drivers. --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp

[Mesa-dev] [PATCH] svga: always link with C++

2013-03-01 Thread Brian Paul
Even when we don't have LLVM since there's other C++ code in the resulting DRI driver object. --- src/gallium/targets/dri-vmwgfx/Makefile.am |6 +- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/src/gallium/targets/dri-vmwgfx/Makefile.am

Re: [Mesa-dev] [PATCH] svga: always link with C++

2013-03-01 Thread Matt Turner
On Fri, Mar 1, 2013 at 3:56 PM, Brian Paul bri...@vmware.com wrote: Even when we don't have LLVM since there's other C++ code in the resulting DRI driver object. --- src/gallium/targets/dri-vmwgfx/Makefile.am |6 +- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git

Re: [Mesa-dev] [PATCH] st/mesa: convert ir_triop_lrp to TGSI_OPCODE_LRP

2013-03-01 Thread Matt Turner
On Fri, Mar 1, 2013 at 3:56 PM, Brian Paul bri...@vmware.com wrote: AFAICT, all gallium drivers implemente TGSI_OPCODE_LRP. Tested with softpipe, llvmpipe, svga drivers. Oh yeah, looks like it. Cool. Maybe a comment to note the argument ordering difference between ir_triop_lrp and

Re: [Mesa-dev] [PATCH] st/mesa: convert ir_triop_lrp to TGSI_OPCODE_LRP

2013-03-01 Thread Brian Paul
On 03/01/2013 05:23 PM, Matt Turner wrote: On Fri, Mar 1, 2013 at 3:56 PM, Brian Paulbri...@vmware.com wrote: AFAICT, all gallium drivers implemente TGSI_OPCODE_LRP. Tested with softpipe, llvmpipe, svga drivers. Oh yeah, looks like it. Cool. Maybe a comment to note the argument ordering

[Mesa-dev] [PATCH 1/2] mesa: add switch case for ir_txf_ms to silence warning

2013-03-01 Thread Brian Paul
--- src/mesa/program/ir_to_mesa.cpp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 5432323..486cf46 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -2045,6

[Mesa-dev] [PATCH 2/2] st/mesa: add switch case for ir_txf_ms to silence warning

2013-03-01 Thread Brian Paul
--- src/mesa/state_tracker/st_glsl_to_tgsi.cpp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 8e3e3b8..c41b583 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++

Re: [Mesa-dev] [PATCH 2/2] draw: additional fix for the no-position case with llvm

2013-03-01 Thread Brian Paul
On 03/01/2013 04:52 PM, srol...@vmware.com wrote: From: Roland Scheideggersrol...@vmware.com Similar fix to what is done for the non-llvm case, we could otherwise still hit the stages (near certainly with gs) which crash. It is probably a much better idea to skip trying to draw at that point

Re: [Mesa-dev] [RFC] GLX_MESA_query_renderer

2013-03-01 Thread Paul Berry
On 1 March 2013 15:14, Ian Romanick i...@freedesktop.org wrote: Since last September I've been gradually working on an extension to let applications query information about the renderer before (and after) creating a context. I've talked it over with a few ISVs and with various other folks.

Re: [Mesa-dev] r600g: status of my work on the shader optimization

2013-03-01 Thread Sebastien Caty
On February 28, 2013 12:19:30 PM Vadim Girlin wrote: Make sure that you have recent patches, some problems with R7xx chips were fixed yesterday. Then please check if there are any regressions with piglit tests (as compared to the piglit results with R600_SB=0). If there are regressions, send

Re: [Mesa-dev] [PATCH 2/2] st/mesa: add switch case for ir_txf_ms to silence warning

2013-03-01 Thread Roland Scheidegger
Am 02.03.2013 01:36, schrieb Brian Paul: --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 8e3e3b8..c41b583 100644 ---

[Mesa-dev] [Bug 61647] [llvmpipe] lp_texture.c:580:llvmpipe_create_surface: Assertion `pt-bind ((1 0) | (1 1))' failed.

2013-03-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61647 Roland Scheidegger srol...@vmware.com changed: What|Removed |Added Status|NEW |RESOLVED

Re: [Mesa-dev] r600g: status of my work on the shader optimization

2013-03-01 Thread Matt Turner
On Fri, Mar 1, 2013 at 5:15 PM, Sebastien Caty sc...@dcinformatique.com wrote: Trying to dig more and found out which shader is causing trouble but I haven't found out how to run a specific test with piglit. Documentation isn't to friendly...Id appreciate some help with this. If you click the

Re: [Mesa-dev] [PATCH 1/2] mesa: add switch case for ir_txf_ms to silence warning

2013-03-01 Thread Ian Romanick
On 03/01/2013 04:36 PM, Brian Paul wrote: --- src/mesa/program/ir_to_mesa.cpp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 5432323..486cf46 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++

Re: [Mesa-dev] [PATCH 2/2] st/mesa: add switch case for ir_txf_ms to silence warning

2013-03-01 Thread Dave Airlie
On Sat, Mar 2, 2013 at 12:02 PM, Roland Scheidegger srol...@vmware.com wrote: Am 02.03.2013 01:36, schrieb Brian Paul: --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp

[Mesa-dev] [Bug 61361] Version mismatch error. This is libtool 2.4.2, but the definition of this LT_INIT comes from libtool 2.2.8.

2013-03-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61361 --- Comment #6 from Dennis Heuer dh-b...@online.de --- the check fails at glsl. as far as i understand, the missing support for shaders is the reason. possibly i'm wrong. -- You are receiving this mail because: You are the assignee for the bug.

Re: [Mesa-dev] [RFC] GLX_MESA_query_renderer

2013-03-01 Thread Nicholas Miell
On 03/01/2013 03:14 PM, Ian Romanick wrote: New Procedures and Functions Bool glXQueryRendererIntegerMESA(Display *dpy, int screen, int renderer, int attribute, unsigned int *value); Bool

[Mesa-dev] [Bug 61416] Clover doesn't work on a PRIME system when run under X

2013-03-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61416 --- Comment #3 from Mike Lothian m...@fireburn.co.uk --- There's a chance this might not be related to PRIME I've tested this on another system that uses a Radeon 4200 (I know it doesn't work with the R600 backend yet) The interesting thing was

Re: [Mesa-dev] r600g: status of my work on the shader optimization

2013-03-01 Thread Sebastien Caty
On March 1, 2013 06:24:01 PM Matt Turner wrote: On Fri, Mar 1, 2013 at 5:15 PM, Sebastien Caty sc...@dcinformatique.com wrote: Trying to dig more and found out which shader is causing trouble but I haven't found out how to run a specific test with piglit. Documentation isn't to

Re: [Mesa-dev] r600g: status of my work on the shader optimization

2013-03-01 Thread Vadim Girlin
On 03/02/2013 05:15 AM, Sebastien Caty wrote: On February 28, 2013 12:19:30 PM Vadim Girlin wrote: Make sure that you have recent patches, some problems with R7xx chips were fixed yesterday. Then please check if there are any regressions with piglit tests (as compared to the piglit results with

Re: [Mesa-dev] r600g: status of my work on the shader optimization

2013-03-01 Thread Vadim Girlin
On 03/02/2013 10:06 AM, Sebastien Caty wrote: On March 1, 2013 06:24:01 PM Matt Turner wrote: On Fri, Mar 1, 2013 at 5:15 PM, Sebastien Caty sc...@dcinformatique.com wrote: Trying to dig more and found out which shader is causing trouble but I haven't found out how to run a specific test with