Module: Mesa Branch: main Commit: ee044d445d1d41b1a934ac8dd165891a9d1c82dc URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ee044d445d1d41b1a934ac8dd165891a9d1c82dc
Author: Alyssa Rosenzweig <[email protected]> Date: Tue Jan 25 18:10:10 2022 -0500 panfrost: Remove NO_BLEND_PACKS quirk Now unused. Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14724> --- src/panfrost/include/panfrost-quirks.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/panfrost/include/panfrost-quirks.h b/src/panfrost/include/panfrost-quirks.h index 8b372230f4a..e7fc45fd6e0 100644 --- a/src/panfrost/include/panfrost-quirks.h +++ b/src/panfrost/include/panfrost-quirks.h @@ -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:
