diff options
author | Marek Olšák <[email protected]> | 2016-06-06 01:42:46 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-06-08 00:22:45 +0200 |
commit | 4be46c7d9dbeaff9dede941ee6518f68ad0c5f75 (patch) | |
tree | 3bf409a894a65236bc045cb583206ac82ccd47c3 /src/gallium/drivers/radeonsi/si_blit.c | |
parent | c06246501ed9c095a3fa9f8fe2a5dadd1df55271 (diff) |
radeonsi: don't allocate DCC for the temporary MSAA resolve surface
Allocating it has no effect, but it adds overhead (useless DCC clear).
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_blit.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_blit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_blit.c b/src/gallium/drivers/radeonsi/si_blit.c index 2059d9d018c..dee3c2f32d3 100644 --- a/src/gallium/drivers/radeonsi/si_blit.c +++ b/src/gallium/drivers/radeonsi/si_blit.c @@ -928,7 +928,8 @@ static bool do_hardware_msaa_resolve(struct pipe_context *ctx, templ.depth0 = 1; templ.array_size = 1; templ.usage = PIPE_USAGE_DEFAULT; - templ.flags = R600_RESOURCE_FLAG_FORCE_TILING; + templ.flags = R600_RESOURCE_FLAG_FORCE_TILING | + R600_RESOURCE_FLAG_DISABLE_DCC; tmp = ctx->screen->resource_create(ctx->screen, &templ); if (!tmp) |