i965: Fix the gen6 jump size for BREAK/CONT in new FS.
authorEric Anholt <eric@anholt.net>
Fri, 1 Oct 2010 17:49:01 +0000 (10:49 -0700)
committerEric Anholt <eric@anholt.net>
Fri, 1 Oct 2010 19:19:21 +0000 (12:19 -0700)
Since gen5, jumps are in increments of 64 bits instead of increments
of 128-bit instructions.

src/mesa/drivers/dri/i965/brw_fs.cpp

index 864c0b9..1968e7f 100644 (file)
@@ -2518,7 +2518,7 @@ fs_visitor::generate_code()
         struct brw_instruction *inst0, *inst1;
         GLuint br = 1;
 
-        if (intel->gen == 5)
+        if (intel->gen >= 5)
            br = 2;
 
         assert(loop_stack_depth > 0);