From d264ec7b22e65c800c893c4d7ba560d7c52d620f Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 19 Oct 2022 14:20:04 +0200 Subject: [PATCH] docs/gallium: use math-role for zero and one also Without this, the zero and one renders with a different font than the other equations. There's no good reason for this, so let's just use the math-role for these too. Reviewed-by: Eric Engestrom Part-of: --- docs/gallium/cso/blend.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/gallium/cso/blend.rst b/docs/gallium/cso/blend.rst index adb995e4aac..ea882fa2f7a 100644 --- a/docs/gallium/cso/blend.rst +++ b/docs/gallium/cso/blend.rst @@ -37,7 +37,7 @@ and performing one of the following operations per-channel: ================== ========================= Operation Equation ================== ========================= -``CLEAR`` 0 +``CLEAR`` :math:`0` ``NOR`` :math:`\lnot(s \lor d)` ``AND_INVERTED`` :math:`\lnot s \land d` ``COPY_INVERTED`` :math:`\lnot s` @@ -52,7 +52,7 @@ Operation Equation ``COPY`` :math:`s` ``OR_REVERSE`` :math:`s \lor \lnot d` ``OR`` :math:`s \lor d` -``SET`` 1 +``SET`` :math:`1` ================== ========================= .. note::