[Mesa-dev] [PATCH v4 0/6] Implement ARB_conditional_render_inverted

Tobias Klausmann tobias.johannes.klausmann at mni.thm.de
Mon Aug 18 15:06:46 PDT 2014


This patch series adds support for ARB_conditional_render_inverted to nvc0,
softpipe and llvmpipe.

V2:
 - Add missing _mesa_BeginConditionalRender() parts to series
 - Fix nvc0 blit and inverted rendering
 - Fix relnotes
 - Enable for softpipe and llvmpipe
 - Rebase on top of current HEAD
V3:
 - Only allow the new modes if the extension is enabled
 - Merge several patches to always have a working tree
V4:
 - Reorder patches
 - Fix nvc0 blit and inverted rendering once more

Tobias Klausmann (6):
  mesa: add ARB_conditional_render_inverted flags
  gallium: Add and handle PIPE_CAP_CONDITIONAL_RENDER_INVERTED
  mesa/st: Support ARB_conditional_render_inverted modes
  nvc0: Handle ARB_conditional_render_inverted and enable it
  llvmpipe/softpipe: enable ARB_conditional_render_inverted
  docs: Update status of ARB_conditional_render_inverted

 docs/GL3.txt                                     |  2 +-
 docs/relnotes/10.3.html                          |  3 +-
 src/gallium/docs/source/screen.rst               |  2 +
 src/gallium/drivers/freedreno/freedreno_screen.c |  1 +
 src/gallium/drivers/i915/i915_screen.c           |  1 +
 src/gallium/drivers/ilo/ilo_screen.c             |  1 +
 src/gallium/drivers/llvmpipe/lp_screen.c         |  2 +
 src/gallium/drivers/nouveau/nv30/nv30_screen.c   |  1 +
 src/gallium/drivers/nouveau/nv50/nv50_screen.c   |  1 +
 src/gallium/drivers/nouveau/nvc0/nvc0_context.h  |  3 +-
 src/gallium/drivers/nouveau/nvc0/nvc0_query.c    | 61 +++++++++++++-----------
 src/gallium/drivers/nouveau/nvc0/nvc0_screen.c   |  1 +
 src/gallium/drivers/nouveau/nvc0/nvc0_surface.c  |  3 +-
 src/gallium/drivers/r300/r300_screen.c           |  1 +
 src/gallium/drivers/r600/r600_pipe.c             |  1 +
 src/gallium/drivers/radeonsi/si_pipe.c           |  1 +
 src/gallium/drivers/softpipe/sp_screen.c         |  2 +
 src/gallium/drivers/svga/svga_screen.c           |  1 +
 src/gallium/drivers/vc4/vc4_screen.c             |  1 +
 src/gallium/include/pipe/p_defines.h             |  1 +
 src/mesa/main/condrender.c                       | 10 +++-
 src/mesa/main/extensions.c                       |  1 +
 src/mesa/main/mtypes.h                           |  1 +
 src/mesa/state_tracker/st_cb_condrender.c        | 20 +++++++-
 src/mesa/state_tracker/st_extensions.c           |  1 +
 25 files changed, 88 insertions(+), 35 deletions(-)

-- 
1.8.4.5



More information about the mesa-dev mailing list