diff options
author | Samuel Pitoiset <[email protected]> | 2017-10-04 22:27:39 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-10-04 23:18:51 +0200 |
commit | 8196a3c63ee1c31dafe7459aaadda0efbd1ac4d2 (patch) | |
tree | 8c567c070ab0e37bd7ad1b6adda54f02d57daec4 /src/amd/vulkan/radv_meta_decompress.c | |
parent | b53c207659e65a29081c0f26b189f37fdd895406 (diff) |
radv: remove useless checks around radv_CmdBindPipeline()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_meta_decompress.c')
-rw-r--r-- | src/amd/vulkan/radv_meta_decompress.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/amd/vulkan/radv_meta_decompress.c b/src/amd/vulkan/radv_meta_decompress.c index c68be27f1f6..f4ed63f68be 100644 --- a/src/amd/vulkan/radv_meta_decompress.c +++ b/src/amd/vulkan/radv_meta_decompress.c @@ -269,12 +269,8 @@ emit_depth_decomp(struct radv_cmd_buffer *cmd_buffer, { VkCommandBuffer cmd_buffer_h = radv_cmd_buffer_to_handle(cmd_buffer); - RADV_FROM_HANDLE(radv_pipeline, pipeline, pipeline_h); - - if (cmd_buffer->state.pipeline != pipeline) { - radv_CmdBindPipeline(cmd_buffer_h, VK_PIPELINE_BIND_POINT_GRAPHICS, - pipeline_h); - } + radv_CmdBindPipeline(cmd_buffer_h, VK_PIPELINE_BIND_POINT_GRAPHICS, + pipeline_h); radv_CmdSetViewport(radv_cmd_buffer_to_handle(cmd_buffer), 0, 1, &(VkViewport) { .x = 0, |