From: Kristian H. Kristensen Date: Thu, 21 Nov 2019 19:40:20 +0000 (-0800) Subject: freedreno/a6xx: Use A6XX_SP_2D_SRC_FORMAT_MASK macro X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a18e5d420b9e4af3fd978ba9923824633c2e805;p=mesa.git freedreno/a6xx: Use A6XX_SP_2D_SRC_FORMAT_MASK macro Reviewed-by: Eric Anholt Signed-off-by: Kristian H. Kristensen Part-of: --- diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c b/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c index 122a63323b4..eb67f02f703 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c +++ b/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c @@ -588,7 +588,7 @@ emit_blit_or_clear_texture(struct fd_context *ctx, struct fd_ringbuffer *ring, // TODO sometimes blob uses UINT+NORM but dEQP seems unhappy about that // A6XX_SP_2D_SRC_FORMAT_UINT | A6XX_SP_2D_SRC_FORMAT_NORM) | - 0xf000); + 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);