Mesa (master): freedreno/a6xx: Program SP_2D_SRC_FORMAT outside blit loop

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jul 14 06:27:38 UTC 2020


Module: Mesa
Branch: master
Commit: b36c675858f01c029e6cbee25340b6463d09a8b7
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b36c675858f01c029e6cbee25340b6463d09a8b7

Author: Kristian H. Kristensen <hoegsberg at google.com>
Date:   Thu Jul  2 04:00:42 2020 -0700

freedreno/a6xx: Program SP_2D_SRC_FORMAT outside blit loop

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5717>

---

 src/gallium/drivers/freedreno/a6xx/fd6_blitter.c | 46 ++++++++++++------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c b/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c
index b46e865b807..93e460acce2 100644
--- a/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c
+++ b/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c
@@ -604,6 +604,29 @@ emit_blit_or_clear_texture(struct fd_context *ctx, struct fd_ringbuffer *ring,
 	OUT_PKT4(ring, REG_A6XX_GRAS_2D_BLIT_CNTL, 1);
 	OUT_RING(ring, blit_cntl);
 
+	if (dfmt == FMT6_10_10_10_2_UNORM_DEST)
+		sfmt = FMT6_16_16_16_16_FLOAT;
+
+	/* This register is probably badly named... it seems that it's
+	 * controlling the internal/accumulator format or something like
+	 * that. It's certainly not tied to only the src format.
+	 */
+	OUT_PKT4(ring, REG_A6XX_SP_2D_SRC_FORMAT, 1);
+	OUT_RING(ring, A6XX_SP_2D_SRC_FORMAT_COLOR_FORMAT(sfmt) |
+			COND(util_format_is_pure_sint(info->src.format),
+					A6XX_SP_2D_SRC_FORMAT_SINT) |
+			COND(util_format_is_pure_uint(info->src.format),
+					A6XX_SP_2D_SRC_FORMAT_UINT) |
+			COND(util_format_is_snorm(info->src.format),
+					A6XX_SP_2D_SRC_FORMAT_SINT |
+						A6XX_SP_2D_SRC_FORMAT_NORM) |
+			COND(util_format_is_unorm(info->src.format),
+// TODO sometimes blob uses UINT+NORM but dEQP seems unhappy about that
+//						A6XX_SP_2D_SRC_FORMAT_UINT |
+					A6XX_SP_2D_SRC_FORMAT_NORM) |
+			COND(util_format_is_srgb(info->dst.format), A6XX_SP_2D_SRC_FORMAT_SRGB) |
+			A6XX_SP_2D_SRC_FORMAT_MASK(0xf));
+
 	for (unsigned i = 0; i < info->dst.box.depth; i++) {
 
 		emit_blit_src(ring, info, sbox->z + i, nr_samples);
@@ -620,29 +643,6 @@ emit_blit_or_clear_texture(struct fd_context *ctx, struct fd_ringbuffer *ring,
 		OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8C01, 1);
 		OUT_RING(ring, 0);
 
-		if (dfmt == FMT6_10_10_10_2_UNORM_DEST)
-			sfmt = FMT6_16_16_16_16_FLOAT;
-
-		/* This register is probably badly named... it seems that it's
-		 * controlling the internal/accumulator format or something like
-		 * that. It's certainly not tied to only the src format.
-		 */
-		OUT_PKT4(ring, REG_A6XX_SP_2D_SRC_FORMAT, 1);
-		OUT_RING(ring, A6XX_SP_2D_SRC_FORMAT_COLOR_FORMAT(sfmt) |
-				COND(util_format_is_pure_sint(info->src.format),
-						A6XX_SP_2D_SRC_FORMAT_SINT) |
-				COND(util_format_is_pure_uint(info->src.format),
-						A6XX_SP_2D_SRC_FORMAT_UINT) |
-				COND(util_format_is_snorm(info->src.format),
-						A6XX_SP_2D_SRC_FORMAT_SINT |
-						A6XX_SP_2D_SRC_FORMAT_NORM) |
-				COND(util_format_is_unorm(info->src.format),
-// TODO sometimes blob uses UINT+NORM but dEQP seems unhappy about that
-//						A6XX_SP_2D_SRC_FORMAT_UINT |
-						A6XX_SP_2D_SRC_FORMAT_NORM) |
-				COND(util_format_is_srgb(info->dst.format), A6XX_SP_2D_SRC_FORMAT_SRGB) |
-				A6XX_SP_2D_SRC_FORMAT_MASK(0xf));
-
 		OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8E04, 1);
 		OUT_RING(ring, fd6_context(ctx)->magic.RB_UNKNOWN_8E04_blit);
 



More information about the mesa-commit mailing list