docs: Document TGSI Declaration token.
authorMichal Krol <michal@vmware.com>
Wed, 3 Feb 2010 14:45:32 +0000 (15:45 +0100)
committerMichal Krol <michal@vmware.com>
Tue, 9 Feb 2010 14:29:52 +0000 (15:29 +0100)
src/gallium/docs/source/tgsi.rst

index 5478d866678bbd2309cf997b878591797b982c8a..fc5482d38421ea9bac7740078133879bdde1314a 100644 (file)
@@ -1280,6 +1280,34 @@ Other tokens
 ---------------
 
 
+Declaration
+^^^^^^^^^^^
+
+
+Declares a register that is will be referenced as an operand in Instruction
+tokens.
+
+File field contains register file that is being declared and is one
+of TGSI_FILE.
+
+UsageMask field specifies which of the register components can be accessed
+and is one of TGSI_WRITEMASK.
+
+Interpolate field is only valid for fragment shader INPUT register files.
+It specifes the way input is being interpolated by the rasteriser and is one
+of TGSI_INTERPOLATE.
+
+If Dimension flag is set to 1, a Declaration Dimension token follows.
+
+If Semantic flag is set to 1, a Declaration Semantic token follows.
+
+CylindricalWrap bitfield is only valid for fragment shader INPUT register
+files. It specifies which register components should be subject to cylindrical
+wrapping when interpolating by the rasteriser. If TGSI_CYLINDRICAL_WRAP_X
+is set to 1, the X component should be interpolated according to cylindrical
+wrapping rules.
+
+
 Declaration Semantic
 ^^^^^^^^^^^^^^^^^^^^^^^^