Merge branch 'mesa_7_6_branch'
authorBrian Paul <brianp@vmware.com>
Tue, 29 Sep 2009 15:46:49 +0000 (09:46 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 29 Sep 2009 15:46:49 +0000 (09:46 -0600)
Conflicts:

Makefile
configs/default
docs/relnotes.html
src/gallium/drivers/softpipe/sp_context.c
src/gallium/drivers/softpipe/sp_tile_cache.c
src/mesa/main/version.h

1  2 
docs/relnotes.html
src/gallium/drivers/softpipe/sp_tile_cache.c
src/mesa/main/texstate.c

@@@ -13,7 -13,7 +13,8 @@@ The release notes summarize what's new 
  </p>
  
  <UL>
 +<LI><A HREF="relnotes-7.7.html">7.7 release notes</A>
+ <LI><A HREF="relnotes-7.6.1.html">7.6.1 release notes</A>
  <LI><A HREF="relnotes-7.6.html">7.6 release notes</A>
  <LI><A HREF="relnotes-7.5.2.html">7.5.2 release notes</A>
  <LI><A HREF="relnotes-7.5.1.html">7.5.1 release notes</A>
@@@ -93,9 -127,14 +93,14 @@@ sp_create_tile_cache( struct pipe_scree
     if (tc) {
        tc->screen = screen;
        for (pos = 0; pos < NUM_ENTRIES; pos++) {
 -         tc->entries[pos].x =
 -         tc->entries[pos].y = -1;
 +         tc->entries[pos].addr.bits.invalid = 1;
        }
 +      tc->last_tile = &tc->entries[0]; /* any tile */
+ #if TILE_CLEAR_OPTIMIZATION
+       /* set flags to indicate all the tiles are cleared */
+       memset(tc->clear_flags, 255, sizeof(tc->clear_flags));
+ #endif
     }
     return tc;
  }
Simple merge