From: Corbin Simpson Date: Tue, 19 Jan 2010 01:37:25 +0000 (-0800) Subject: docs: Use proper XOR symbol. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f90733c116acb68d79b3c4dda76983819062a5f1;p=mesa.git docs: Use proper XOR symbol. --- diff --git a/src/gallium/docs/source/tgsi.rst b/src/gallium/docs/source/tgsi.rst index d9a043fde87..65a669d8cfa 100644 --- a/src/gallium/docs/source/tgsi.rst +++ b/src/gallium/docs/source/tgsi.rst @@ -1000,13 +1000,13 @@ XOR - Bitwise Xor .. math:: - dst.x = src0.x ^ src1.x + dst.x = src0.x \oplus src1.x - dst.y = src0.y ^ src1.y + dst.y = src0.y \oplus src1.y - dst.z = src0.z ^ src1.z + dst.z = src0.z \oplus src1.z - dst.w = src0.w ^ src1.w + dst.w = src0.w \oplus src1.w SAD - Sum Of Absolute Differences