diff options
author | Marek Olšák <[email protected]> | 2013-05-29 15:51:20 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-06-13 03:54:13 +0200 |
commit | d6d4a9a2e87d9ed2c5b3a6acee771ff55a903e47 (patch) | |
tree | abac1d5bb5d132d25028691c85812f10d13f2fa1 /src/gallium/drivers/r600/r600_blit.c | |
parent | 17350ea979b883662573dac136cd9efb49938210 (diff) |
gallium/u_blitter: make clearing independent of the colorbuffer format
There isn't any difference between 32_FLOAT and 32_*INT in vertex fetching.
Both of them don't do any format conversion.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_blit.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index eded3555b4f..660f4f9aa96 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -443,8 +443,7 @@ 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, - buffers, fb->nr_cbufs ? fb->cbufs[0]->format : PIPE_FORMAT_NONE, - color, depth, stencil); + buffers, color, depth, stencil); r600_blitter_end(ctx); /* disable fast clear */ |