panfrost: Remove MALI_ATTR_INTERNAL
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Fri, 27 Dec 2019 17:11:37 +0000 (12:11 -0500)
committerAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Fri, 27 Dec 2019 17:11:37 +0000 (12:11 -0500)
It's a relic from before we understood the varying builtins. It should
never actually come up if the builtins are decoded correctly.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
src/panfrost/include/panfrost-job.h
src/panfrost/pandecode/decode.c

index 1767a5b6f20e963f9db366c11fe6b387053b4dce..157f05ced09ee4b6325b46c2fe91f0e1b0f93676 100644 (file)
@@ -807,7 +807,6 @@ enum mali_attr_mode {
        MALI_ATTR_MODULO = 3,
        MALI_ATTR_NPOT_DIVIDE = 4,
         MALI_ATTR_IMAGE = 5,
-        MALI_ATTR_INTERNAL = 6
 };
 
 /* Pseudo-address for gl_VertexID, gl_FragCoord, gl_FrontFacing */
index 73f26402cb0e8574547359eee2b93209a1b7ffa3..6be8c1b73b105579a84be329006e1174e9c2ffcc 100644 (file)
@@ -432,8 +432,6 @@ static char *pandecode_attr_mode_short(enum mali_attr_mode mode)
                 return "instanced_npot";
         case MALI_ATTR_IMAGE:
                 return "image";
-        case MALI_ATTR_INTERNAL:
-                return "internal";
         default:
                 pandecode_msg("XXX: invalid attribute mode %X\n", mode);
                 return "";