aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorKristian H. Kristensen <[email protected]>2020-07-03 14:34:28 -0700
committerMarge Bot <[email protected]>2020-07-14 06:12:22 +0000
commit77d4aa76876ec64eb500e0eefab8f4c6c9ca6d05 (patch)
tree468caf84bdb7e48ef5e3ce84cba04da56d4eb677 /src/gallium
parent1a58596258b434b7b487513bdebaf3777a8e772a (diff)
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: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5717>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/freedreno/a6xx/fd6_blitter.c3
1 files changed, 0 insertions, 3 deletions
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;
}