pan/mdg: Remove reference to removed macro
authorAlyssa Rosenzweig <alyssa@collabora.com>
Wed, 28 Dec 2022 20:57:01 +0000 (15:57 -0500)
committerMarge Bot <emma+marge@anholt.net>
Sat, 11 Mar 2023 06:30:02 +0000 (06:30 +0000)
This will soon be more confusing than helpful.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20445>

src/panfrost/midgard/helpers.h

index f2161c7..ac062e0 100644 (file)
 /* Denotes an opcode that takes a vector input with a fixed-number of
  * channels, but outputs to only a single output channel, like dot products.
  * For these, to determine the effective mask, this quirk can be set. We have
- * an intentional off-by-one (a la MALI_POSITIVE), since 0-channel makes no
- * sense but we need to fit 4 channels in 2-bits. Similarly, 1-channel doesn't
- * make sense (since then why are we quirked?), so that corresponds to "no
- * count set" */
-
+ * an intentional off-by-one, since 0-channel makes no sense but we need to fit
+ * 4 channels in 2-bits. Similarly, 1-channel doesn't make sense (since then why
+ * are we quirked?), so that corresponds to "no count set".
+ */
 #define OP_CHANNEL_COUNT(c)  ((c - 1) << 0)
 #define GET_CHANNEL_COUNT(c) ((c & (0x3 << 0)) ? ((c & (0x3 << 0)) + 1) : 0)