etnaviv: isa: Add clang-format special comments

We want to keep the defines as formated as they are.

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28929>
This commit is contained in:
Christian Gmeiner
2024-04-22 11:27:48 +02:00
committed by Marge Bot
parent bc72126cb4
commit 0c70dcd6f7
+2
View File
@@ -21,6 +21,7 @@
#define SWIZ_Z(z) (((z) & 0x03) << 4)
#define SWIZ_W(w) (((w) & 0x03) << 6)
/* clang-format off */
/* Broadcast swizzle to all four components */
#define INST_SWIZ_BROADCAST(x) \
(SWIZ_X(x) | SWIZ_Y(x) | SWIZ_Z(x) | SWIZ_W(x))
@@ -35,6 +36,7 @@
ISA_SWIZ_##c1, \
ISA_SWIZ_##c2, \
ISA_SWIZ_##c3)
/* clang-format on */
/*** operands ***/