From: Samuel Pitoiset Date: Thu, 16 Aug 2018 09:22:37 +0000 (+0200) Subject: radv: fix missing initialization of the conditional rendering state X-Git-Tag: android-x86-8.1-r1~1483 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f3a78a9da01218df0067b24b52204a4e5f01bc69;p=android-x86%2Fexternal-mesa.git radv: fix missing initialization of the conditional rendering state This was missing when VK_EXT_conditional_rendering has been implemented. The predication type should be -1 to avoid restoring previous state when performing a decompression pass with DCC enabled. Note that we don't have to handle secondary command buffers because we don't support this feature currently. CC: 18.2 Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index 7785ece8ce6..84f7bb42c45 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -2307,6 +2307,7 @@ VkResult radv_BeginCommandBuffer( cmd_buffer->state.last_num_instances = -1; cmd_buffer->state.last_vertex_offset = -1; cmd_buffer->state.last_first_instance = -1; + cmd_buffer->state.predication_type = -1; cmd_buffer->usage_flags = pBeginInfo->flags; /* setup initial configuration into command buffer */