panfrost: Remove NO_BLEND_PACKS quirk

Now unused.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14724>
This commit is contained in:
Alyssa Rosenzweig
2022-01-25 18:10:10 -05:00
committed by Marge Bot
parent 5a8d86f69e
commit ee044d445d
+2 -5
View File
@@ -39,10 +39,7 @@
/* Whether this GPU lacks support for any typed loads, requiring packing */
#define MIDGARD_NO_TYPED_BLEND_LOADS (1 << 7)
/* Lack support for colour pack/unpack opcodes */
#define NO_BLEND_PACKS (1 << 8)
/* bits 9-10 unused */
/* bits 8-10 unused */
/* Does this GPU support anisotropic filtering? */
#define HAS_ANISOTROPIC (1 << 11)
@@ -53,7 +50,7 @@ panfrost_get_quirks(unsigned gpu_id, unsigned gpu_revision)
switch (gpu_id) {
case 0x600:
case 0x620:
return MIDGARD_NO_TYPED_BLEND_LOADS | NO_BLEND_PACKS;
return MIDGARD_NO_TYPED_BLEND_LOADS;
case 0x720:
case 0x820: