softpipe: const qualifiers, comments
authorBrian Paul <brianp@vmware.com>
Thu, 18 Feb 2010 23:32:36 +0000 (16:32 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 18 Feb 2010 23:58:38 +0000 (16:58 -0700)
src/gallium/drivers/softpipe/sp_setup.c

index b8590a8cc2c7370abbb0c04ae9e671a8204704b2..85966bc5e4902d8b00782ee184162d7ee21e9890 100644 (file)
@@ -211,11 +211,11 @@ static void flush_spans( struct setup_context *setup )
    const int xright1 = setup->span.right[1];
    struct quad_stage *pipe = setup->softpipe->quad.first;
 
-
-   int minleft = block_x(MIN2(xleft0, xleft1));
-   int maxright = MAX2(xright0, xright1);
+   const int minleft = block_x(MIN2(xleft0, xleft1));
+   const int maxright = MAX2(xright0, xright1);
    int x;
 
+   /* process quads in horizontal chunks of 16 */
    for (x = minleft; x < maxright; x += step) {
       unsigned skip_left0 = CLAMP(xleft0 - x, 0, step);
       unsigned skip_left1 = CLAMP(xleft1 - x, 0, step);