r600g: fix layered clear
authorMarek Olšák <marek.olsak@amd.com>
Wed, 20 Aug 2014 17:17:09 +0000 (19:17 +0200)
committerMarek Olšák <marek.olsak@amd.com>
Mon, 1 Sep 2014 19:18:42 +0000 (21:18 +0200)
Cc: mesa-stable@lists.freedesktop.org
Acked-by: Michel Dänzer <michel.daenzer@amd.com>
src/gallium/drivers/r600/r600_blit.c

index 0f438399432de89e4bc3fbea1ded82c61e0a6967..f766e37f2b23ca7a000d0f14845f776f8ceaad56 100644 (file)
@@ -441,7 +441,8 @@ static void r600_clear(struct pipe_context *ctx, unsigned buffers,
        }
 
        r600_blitter_begin(ctx, R600_CLEAR);
-       util_blitter_clear(rctx->blitter, fb->width, fb->height, 1,
+       util_blitter_clear(rctx->blitter, fb->width, fb->height,
+                          util_framebuffer_get_num_layers(fb),
                           buffers, color, depth, stencil);
        r600_blitter_end(ctx);