gallium/docs: update SLT, SGE, SFL, STR opcode docs
authorBrian Paul <brianp@vmware.com>
Mon, 17 Mar 2014 21:13:55 +0000 (15:13 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 18 Mar 2014 14:03:27 +0000 (08:03 -0600)
To emphasize that the result is floating point 1.0 or 0.0, to match
other opcodes like SLE and SEQ.

Reviewed-by: Roland Scheidegger <sroland@vmware.com>
src/gallium/docs/source/tgsi.rst

index 03c5df846f7a0b627c0fcce5dd3159d50f7f5915..e184b2ff592ba4fc2a4200378b22c2e97f598346 100644 (file)
@@ -223,26 +223,26 @@ This instruction replicates its result.
 
 .. math::
 
-  dst.x = (src0.x < src1.x) ? 1 : 0
+  dst.x = (src0.x < src1.x) ? 1.0F : 0.0F
 
-  dst.y = (src0.y < src1.y) ? 1 : 0
+  dst.y = (src0.y < src1.y) ? 1.0F : 0.0F
 
-  dst.z = (src0.z < src1.z) ? 1 : 0
+  dst.z = (src0.z < src1.z) ? 1.0F : 0.0F
 
-  dst.w = (src0.w < src1.w) ? 1 : 0
+  dst.w = (src0.w < src1.w) ? 1.0F : 0.0F
 
 
 .. opcode:: SGE - Set On Greater Equal Than
 
 .. math::
 
-  dst.x = (src0.x >= src1.x) ? 1 : 0
+  dst.x = (src0.x >= src1.x) ? 1.0F : 0.0F
 
-  dst.y = (src0.y >= src1.y) ? 1 : 0
+  dst.y = (src0.y >= src1.y) ? 1.0F : 0.0F
 
-  dst.z = (src0.z >= src1.z) ? 1 : 0
+  dst.z = (src0.z >= src1.z) ? 1.0F : 0.0F
 
-  dst.w = (src0.w >= src1.w) ? 1 : 0
+  dst.w = (src0.w >= src1.w) ? 1.0F : 0.0F
 
 
 .. opcode:: MAD - Multiply And Add
@@ -527,7 +527,7 @@ This instruction replicates its result.
 
 .. math::
 
-  dst = 0
+  dst = 0.0F
 
 .. note::
 
@@ -588,7 +588,7 @@ This instruction replicates its result.
 
 .. math::
 
-  dst = 1
+  dst = 1.0F
 
 
 .. opcode:: TEX - Texture Lookup