From: Kristian H. Kristensen Date: Fri, 3 Jul 2020 21:34:28 +0000 (-0700) Subject: freedreno/a6xx: Enable FMT6_10_10_10_2_UNORM blitting X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=77d4aa76876ec64eb500e0eefab8f4c6c9ca6d05;p=mesa.git freedreno/a6xx: Enable FMT6_10_10_10_2_UNORM blitting Now that we correctly program the _DEST version for the blit destination and use float16 internal format, these formats work with the blitter. Part-of: --- diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c b/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c index 8da308556d6..11654bd1ba9 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c +++ b/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c @@ -148,9 +148,6 @@ ok_format(enum pipe_format pfmt) if (fmt == FMT6_NONE) return false; - if (fmt == FMT6_10_10_10_2_UNORM_DEST) - return false; - return true; }