[Mesa-dev] [PATCH] i965: enable ARB_instanced_arrays extension

2012-05-27 Thread Jordan Justen
Set the step_rate value when drawing to implement ARB_instanced_arrays for gen >= 4. Signed-off-by: Jordan Justen --- src/mesa/drivers/dri/i965/brw_context.h |4 +++ src/mesa/drivers/dri/i965/brw_draw.c |1 + src/mesa/drivers/dri/i965/brw_draw_upload.c | 44 +++

[Mesa-dev] Fw: [Intel-gfx] [PATCH] intel: add a timed wait function

2012-05-27 Thread Ben Widawsky
The kernel patches have now landed in Daniel's -next-queued tree. Begin forwarded message: Date: Fri, 11 May 2012 13:54:11 -0700 From: Ben Widawsky To: intel-...@lists.freedesktop.org Cc: Ben Widawsky Subject: [Intel-gfx] [PATCH] intel: add a timed wait function drm_intel_gem_bo_wait(bo, &tim

[Mesa-dev] [Bug 49088] MapsGL labels doen't render properly on nouveau, r600, i965

2012-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49088 --- Comment #13 from Alex Mayorga Adame 2012-05-27 08:32:35 PDT --- How do I test the patch? Please dumb down the instructions as much as possible ;-) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

Re: [Mesa-dev] [PATCH 03/13] gallium/compute: Add PIPE_COMPUTE_CAP_IR_TARGET v2

2012-05-27 Thread Francisco Jerez
Tom Stellard writes: > On Sun, May 27, 2012 at 02:25:05PM +0200, Francisco Jerez wrote: >> Tom Stellard writes: >> >[...] >> > +* ``PIPE_COMPUTE_CAP_IR_TARGET``: A description of the target as a target >> > + triple specification of the form ``processor-manufacturer-os`` that will >> > + be pa

Re: [Mesa-dev] [PATCH 03/13] gallium/compute: Add PIPE_COMPUTE_CAP_IR_TARGET v2

2012-05-27 Thread Tom Stellard
On Sun, May 27, 2012 at 02:25:05PM +0200, Francisco Jerez wrote: > Tom Stellard writes: > > > From: Francisco Jerez > > > > v2: Tom Stellard > > - Update CAP description > > --- > > src/gallium/docs/source/screen.rst |5 + > > src/gallium/include/pipe/p_defines.h |1 + > > 2 fil

Re: [Mesa-dev] [PATCH 12/13] clover: Add function for building a clover::module for non-TGSI targets v4

2012-05-27 Thread Francisco Jerez
tstel...@gmail.com writes: > From: Tom Stellard > > v2: > -Separate IR type and LLVM triple > -Do the OpenCL C->LLVM IR and linking steps for all PIPE_SHADER_IR >types. > > v3: > - Coding style fixes > - Removed compatibility code for LLVM < 3.1 > - Split build_module_llvm() into th

Re: [Mesa-dev] [PATCH 11/13] gallium: Add struct pipe_compute_program

2012-05-27 Thread Francisco Jerez
tstel...@gmail.com writes: > From: Tom Stellard > > This structure is used to pass non-TGSI programs to the drivers. clover > will use this for LLVM bytecode programs. > --- > src/gallium/include/pipe/p_state.h |9 + > 1 files changed, 9 insertions(+), 0 deletions(-) > > diff --git

Re: [Mesa-dev] [PATCH 10/13] clover: Remove target argument from compile_program_tgsi()

2012-05-27 Thread Francisco Jerez
tstel...@gmail.com writes: > From: Tom Stellard > > --- > .../state_trackers/clover/core/compiler.hpp|3 +-- > src/gallium/state_trackers/clover/core/program.cpp |2 +- > .../state_trackers/clover/tgsi/compiler.cpp|3 +-- > 3 files changed, 3 insertions(+), 5 deletion

Re: [Mesa-dev] [PATCH 04/13] clover: Add a function for retrieving a device's preferred ir v3

2012-05-27 Thread Francisco Jerez
Tom Stellard writes: > A device now has two function for getting information about the IR > it needs to return. > > ir_format() => returns the preferred IR > ir_target() => returns the triple for the target that is understood by > clang/llvm. > > v2: > - renamed ir_target() to

Re: [Mesa-dev] [PATCH 03/13] gallium/compute: Add PIPE_COMPUTE_CAP_IR_TARGET v2

2012-05-27 Thread Francisco Jerez
Tom Stellard writes: > From: Francisco Jerez > > v2: Tom Stellard > - Update CAP description > --- > src/gallium/docs/source/screen.rst |5 + > src/gallium/include/pipe/p_defines.h |1 + > 2 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/src/gallium/docs/source/