[Mesa-dev] [PATCH 00/13] st/mesa: finally finish ARB_enhanced_layouts

Nicolai Hähnle nhaehnle at gmail.com
Fri Oct 7 19:55:11 UTC 2016


Hi everybody,

this series implements the missing piece of ARB_enhanced_layouts, which is
the component numbers part of the extension.  You can find the full series
here: https://cgit.freedesktop.org/~nh/mesa/log/?h=ARB_enhanced_layouts

The series follows the approach sketched by Ilia a few months back.  The
UsageMask part of input and output declarations is put to use, translating

layout(location = 0, component = 1) in vec2 a[4];
layout(location = 2, component = 3) in float b[4];
layout(location = 1, component = 3) in float c;
layout(location = 2, component = 0) in float d;

into

DCL IN[0..3].yz, ARRAY(1), GENERIC[0], PERSPECTIVE
DCL IN[2..5].w, ARRAY(2), GENERIC[2], PERSPECTIVE
DCL IN[1].w, GENERIC[1], PERSPECTIVE
DCL IN[2].x, GENERIC[2], PERSPECTIVE

It turns out that this approach works on radeonsi, softpipe, and llvmpipe
without any driver changes at all, but I'm introducing a new pipe cap anyway
just in case.  Unless your driver is doing something particularly fancy with
arrays, chances are that you only have to flip on the new cap and things
will Just Work.  (I can squash that into this series before I push if you
don't want to keep track of the trivial patch for that.)

Most of the work in the series lies in rearranging how we emit the
declarations for input and output arrays -- that's patch #10, after some
preparatory work.

There is one caveat to the use of UsageMask: arrays of dvec3 leave the zw
components free in every other slot, and that space can be used by other
declarations.  In that case, declarations will not be disjoint; and since
this problem is unavoidable for dvec3 arrays, I'm not even trying to do
anything about dvec3 non-arrays.  If your driver has problems with that, my
suggestion would be to fix the dvec3 non-array case and add an additional
special case bit to the array declaration token.

So far, I've tested this series on radeonsi with Piglit (plus two new tests
which I'm going to send out as well).  The enhanced layouts parts pass, and
I think I fixed all the regressions elsewhere.  I plan to do further tests
with CTS before this is pushed.

Finally, as a little addition, the last patch turns on GLSL 4.50 for
radeonsi.  All the bits for OpenGL 4.5 are implemented with this series,
though we do have to be careful about really claiming support in the
release because we haven't done the whole CTS results submission dance (and
there are still a bunch of genuine failures as well).

Please review!

Thanks,
Nicolai
--
 docs/features.txt                            |  16 +-
 docs/relnotes/12.1.0.html                    |   2 +-
 src/compiler/glsl/ir_print_visitor.cpp       |  10 +-
 src/gallium/auxiliary/tgsi/tgsi_scan.c       |   9 +-
 src/gallium/auxiliary/tgsi/tgsi_ureg.c       | 115 +++--
 src/gallium/auxiliary/tgsi/tgsi_ureg.h       |  30 ++
 src/gallium/docs/source/screen.rst           |   8 +
 .../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     |   1 +
 .../drivers/nouveau/nv30/nv30_screen.c       |   1 +
 .../drivers/nouveau/nv50/nv50_screen.c       |   1 +
 .../drivers/nouveau/nvc0/nvc0_screen.c       |   1 +
 src/gallium/drivers/r300/r300_screen.c       |   1 +
 src/gallium/drivers/r600/r600_pipe.c         |   1 +
 src/gallium/drivers/radeonsi/si_pipe.c       |   3 +-
 src/gallium/drivers/softpipe/sp_screen.c     |   1 +
 src/gallium/drivers/svga/svga_screen.c       |   1 +
 src/gallium/drivers/swr/swr_screen.cpp       |   1 +
 src/gallium/drivers/vc4/vc4_screen.c         |   1 +
 src/gallium/drivers/virgl/virgl_screen.c     |   1 +
 src/gallium/include/pipe/p_defines.h         |   1 +
 src/mesa/state_tracker/st_extensions.c       |   7 +
 src/mesa/state_tracker/st_glsl_to_tgsi.cpp   | 441 +++++++++--------
 25 files changed, 416 insertions(+), 240 deletions(-)



More information about the mesa-dev mailing list