i965/fs: Update an ancient, wrong comment about reg_offset.
authorEric Anholt <eric@anholt.net>
Tue, 29 Oct 2013 08:06:09 +0000 (01:06 -0700)
committerEric Anholt <eric@anholt.net>
Thu, 31 Oct 2013 00:50:51 +0000 (17:50 -0700)
This hasn't been true since SIMD16 mode was added.

Reviewed-by: Paul Berry <stereotype441@gmail.com>
src/mesa/drivers/dri/i965/brw_fs.h

index 5b783137ddfae325ea6f952bb3a6cca3abe39bc0..5f331e17a58108749859858aec89494d1dcf4523 100644 (file)
@@ -88,9 +88,11 @@ public:
     */
    int reg;
    /**
-    * For virtual registers, this is a hardware register offset from
-    * the start of the register block (for example, a constant index
-    * in an array access).
+    * Offset from the start of the contiguous register block.
+    *
+    * For pre-register-allocation GRFs, this is in units of a float per pixel
+    * (1 hardware register for SIMD8 mode, or 2 registers for SIMD16 mode).
+    * For uniforms, this is in units of 1 float.
     */
    int reg_offset;
    /** Register type.  BRW_REGISTER_TYPE_* */