summaryrefslogtreecommitdiffstats
path: root/src/panfrost/pandecode/decode.c
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-07-30 17:27:03 -0700
committerAlyssa Rosenzweig <[email protected]>2019-07-31 10:56:11 -0700
commita692126c935d6f7e2d0ae75190b5cd99bd5ff553 (patch)
tree2319391748318522af2c63a7545468e38b38e8dc /src/panfrost/pandecode/decode.c
parentc47af8b95f26bd83efe322ff0baa52263fb8625e (diff)
panfrost: Add MALI_ATTR_IMAGE value
Images are implemented (in part) as special attributes, so include support for decoding this. Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/panfrost/pandecode/decode.c')
-rw-r--r--src/panfrost/pandecode/decode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c
index fb48087cddb..f8942b0ec18 100644
--- a/src/panfrost/pandecode/decode.c
+++ b/src/panfrost/pandecode/decode.c
@@ -371,6 +371,7 @@ static char *pandecode_attr_mode(enum mali_attr_mode mode)
DEFINE_CASE(POT_DIVIDE);
DEFINE_CASE(MODULO);
DEFINE_CASE(NPOT_DIVIDE);
+ DEFINE_CASE(IMAGE);
default:
return "MALI_ATTR_UNUSED /* XXX: Unknown stencil op, check dump */";
}