[Mesa-dev] [PATCH 15/19] radv: drop useless param in emit_depth_decomp()
Samuel Pitoiset
samuel.pitoiset at gmail.com
Fri Sep 29 15:49:02 UTC 2017
Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
src/amd/vulkan/radv_meta_decompress.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/src/amd/vulkan/radv_meta_decompress.c b/src/amd/vulkan/radv_meta_decompress.c
index fedcfad3ae..ff5a8404cc 100644
--- a/src/amd/vulkan/radv_meta_decompress.c
+++ b/src/amd/vulkan/radv_meta_decompress.c
@@ -249,7 +249,6 @@ cleanup:
static void
emit_depth_decomp(struct radv_cmd_buffer *cmd_buffer,
- const VkOffset2D *dest_offset,
const VkExtent2D *depth_decomp_extent,
VkPipeline pipeline_h)
{
@@ -263,8 +262,8 @@ emit_depth_decomp(struct radv_cmd_buffer *cmd_buffer,
}
radv_CmdSetViewport(radv_cmd_buffer_to_handle(cmd_buffer), 0, 1, &(VkViewport) {
- .x = dest_offset->x,
- .y = dest_offset->y,
+ .x = 0,
+ .y = 0,
.width = depth_decomp_extent->width,
.height = depth_decomp_extent->height,
.minDepth = 0.0f,
@@ -272,7 +271,7 @@ emit_depth_decomp(struct radv_cmd_buffer *cmd_buffer,
});
radv_CmdSetScissor(radv_cmd_buffer_to_handle(cmd_buffer), 0, 1, &(VkRect2D) {
- .offset = *dest_offset,
+ .offset = { 0, 0 },
.extent = *depth_decomp_extent,
});
@@ -361,7 +360,7 @@ radv_decompress_depth_image_inplace(struct radv_cmd_buffer *cmd_buffer,
VkPipeline pipeline_h =
meta_state->depth_decomp[samples_log2].decompress_pipeline;
- emit_depth_decomp(cmd_buffer, &(VkOffset2D){0, 0 }, &(VkExtent2D){width, height}, pipeline_h);
+ emit_depth_decomp(cmd_buffer, &(VkExtent2D){width, height}, pipeline_h);
radv_CmdEndRenderPass(cmd_buffer_h);
radv_DestroyFramebuffer(device_h, fb_h,
--
2.14.2
More information about the mesa-dev
mailing list