shorten loops over color bufs
authorBrian <brian.paul@tungstengraphics.com>
Sat, 8 Dec 2007 03:58:01 +0000 (20:58 -0700)
committerBrian <brian.paul@tungstengraphics.com>
Sat, 8 Dec 2007 03:58:01 +0000 (20:58 -0700)
src/mesa/pipe/softpipe/sp_clear.c
src/mesa/pipe/softpipe/sp_context.c
src/mesa/pipe/softpipe/sp_flush.c

index f32e834ac0ef3a1ba56c72b8b9f5e3ddff08f9c1..5b3857145d6aa02a8c84f959b83c176cc25fc15f 100644 (file)
@@ -59,7 +59,7 @@ softpipe_clear(struct pipe_context *pipe, struct pipe_surface *ps,
       return;
    }
 
-   for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
+   for (i = 0; i < softpipe->framebuffer.num_cbufs; i++) {
       if (ps == sp_tile_cache_get_surface(softpipe->cbuf_cache[i])) {
          sp_tile_cache_clear(softpipe->cbuf_cache[i], clearValue);
          return;
index bdfd6228ef8ef6360d9d01283a4b4ee331079a75..df4e0cbd5aed7e8d82d72fbd7c37971793179867 100644 (file)
@@ -94,7 +94,7 @@ softpipe_unmap_surfaces(struct softpipe_context *sp)
    struct pipe_surface *ps;
    uint i;
 
-   for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++)
+   for (i = 0; i < sp->framebuffer.num_cbufs; i++)
       sp_flush_tile_cache(sp, sp->cbuf_cache[i]);
    sp_flush_tile_cache(sp, sp->zbuf_cache);
    sp_flush_tile_cache(sp, sp->sbuf_cache);
index 1010924bf61a54d362bf7b29a49febd8a1aaa559..47b11803ce1aaa2602cf628e15d524c2f34739dc 100644 (file)
@@ -55,7 +55,7 @@ softpipe_flush( struct pipe_context *pipe,
     * - flush the render cache
     */
 
-   for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++)
+   for (i = 0; i < softpipe->framebuffer.num_cbufs; i++)
       if (softpipe->cbuf_cache[i])
          sp_flush_tile_cache(softpipe, softpipe->cbuf_cache[i]);