docs: Use proper XOR symbol.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Tue, 19 Jan 2010 01:37:25 +0000 (17:37 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Tue, 19 Jan 2010 02:06:55 +0000 (18:06 -0800)
src/gallium/docs/source/tgsi.rst

index d9a043fde8744670b567839939bb41b4c731bad7..65a669d8cfaaa9c71f677e83fa2562611d733e53 100644 (file)
@@ -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