From: Dave Airlie <airl...@redhat.com> These special ALU sources provide the shader engine, simd and hw wave ids.
These are required for images support. Signed-off-by: Dave Airlie <airl...@redhat.com> --- src/gallium/drivers/r600/r600_asm.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index a0f28d2..60c9cec 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -1969,6 +1969,15 @@ static int print_src(struct r600_bytecode_alu *alu, unsigned idx) o += fprintf(stderr, "LDS_OQ_B_POP"); need_chan = 1; break; + case EG_V_SQ_ALU_SRC_SE_ID: + o += fprintf(stderr, "SE_ID"); + break; + case EG_V_SQ_ALU_SRC_SIMD_ID: + o += fprintf(stderr, "SIMD_ID"); + break; + case EG_V_SQ_ALU_SRC_HW_WAVE_ID: + o += fprintf(stderr, "HW_WAVE_ID"); + break; case V_SQ_ALU_SRC_PS: o += fprintf(stderr, "PS"); break; -- 2.9.5 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev