Reviewed-by: Bas Nieuwenhuizen <[email protected]>
On Tue, Jun 18, 2019 at 11:58 AM Samuel Pitoiset <[email protected]> wrote: > > Only skip levels without DCC when it's a DCC decompression. > Whoops. > > Signed-off-by: Samuel Pitoiset <[email protected]> > --- > src/amd/vulkan/radv_meta_fast_clear.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/src/amd/vulkan/radv_meta_fast_clear.c > b/src/amd/vulkan/radv_meta_fast_clear.c > index 12fea8292c0..4398cb7ca59 100644 > --- a/src/amd/vulkan/radv_meta_fast_clear.c > +++ b/src/amd/vulkan/radv_meta_fast_clear.c > @@ -673,7 +673,8 @@ radv_process_color_image(struct radv_cmd_buffer > *cmd_buffer, > uint32_t width, height; > > /* Do not decompress levels without DCC. */ > - if (!radv_dcc_enabled(image, subresourceRange->baseMipLevel + > l)) > + if (decompress_dcc && > + !radv_dcc_enabled(image, subresourceRange->baseMipLevel + > l)) > continue; > > width = radv_minify(image->info.width, > -- > 2.22.0 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
