From: Alyssa Rosenzweig Date: Tue, 20 Aug 2019 20:58:55 +0000 (-0700) Subject: pan/decode: Treat RESERVED swizzles as errors X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b233012d445836c9be9be2a0e2b2e87af34b5fc7;p=mesa.git pan/decode: Treat RESERVED swizzles as errors We've never seen them, so if they come up in trace, we want to draw attention to that. Signed-off-by: Alyssa Rosenzweig --- diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index 208f4103c75..a0c5f94defb 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -442,8 +442,6 @@ pandecode_channel(enum mali_channel channel) DEFINE_CASE(ALPHA); DEFINE_CASE(ZERO); DEFINE_CASE(ONE); - DEFINE_CASE(RESERVED_0); - DEFINE_CASE(RESERVED_1); default: pandecode_msg("XXX: invalid channel %X\n", channel);