radv: cleanup creating the decompress/resummarize pipelines
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>
Tue, 31 Mar 2020 13:22:01 +0000 (15:22 +0200)
committerSamuel Pitoiset <samuel.pitoiset@gmail.com>
Wed, 8 Apr 2020 05:55:14 +0000 (07:55 +0200)
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4389>

src/amd/vulkan/radv_meta_decompress.c

index 7b26470cd2456111926b6c4692fa780beda13359..5ab7e4fe243d375e809a206e30debc67cc090981 100644 (file)
@@ -125,7 +125,6 @@ create_pipeline_layout(struct radv_device *device, VkPipelineLayout *layout)
 
 static VkResult
 create_pipeline(struct radv_device *device,
-                VkShaderModule vs_module_h,
                uint32_t samples,
                VkRenderPass pass,
                VkPipelineLayout layout,
@@ -135,7 +134,6 @@ create_pipeline(struct radv_device *device,
 {
        VkResult result;
        VkDevice device_h = radv_device_to_handle(device);
-       struct radv_shader_module vs_module = {0};
 
        mtx_lock(&device->meta_state.mtx);
        if (*pipeline) {
@@ -143,9 +141,14 @@ create_pipeline(struct radv_device *device,
                return VK_SUCCESS;
        }
 
-       if (!vs_module_h) {
-               vs_module.nir = radv_meta_build_nir_vs_generate_vertices();
-               vs_module_h = radv_shader_module_to_handle(&vs_module);
+       struct radv_shader_module vs_module = {
+               .nir = radv_meta_build_nir_vs_generate_vertices()
+       };
+
+       if (!vs_module.nir) {
+               /* XXX: Need more accurate error */
+               result = VK_ERROR_OUT_OF_HOST_MEMORY;
+               goto cleanup;
        }
 
        struct radv_shader_module fs_module = {
@@ -170,7 +173,7 @@ create_pipeline(struct radv_device *device,
                       {
                                .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
                                .stage = VK_SHADER_STAGE_VERTEX_BIT,
-                               .module = vs_module_h,
+                               .module = radv_shader_module_to_handle(&vs_module),
                                .pName = "main",
                        },
                        {
@@ -256,8 +259,7 @@ create_pipeline(struct radv_device *device,
 
 cleanup:
        ralloc_free(fs_module.nir);
-       if (vs_module.nir)
-               ralloc_free(vs_module.nir);
+       ralloc_free(vs_module.nir);
        mtx_unlock(&device->meta_state.mtx);
        return result;
 }
@@ -292,15 +294,6 @@ radv_device_init_meta_depth_decomp_state(struct radv_device *device, bool on_dem
        struct radv_meta_state *state = &device->meta_state;
        VkResult res = VK_SUCCESS;
 
-       struct radv_shader_module vs_module = { .nir = radv_meta_build_nir_vs_generate_vertices() };
-       if (!vs_module.nir) {
-               /* XXX: Need more accurate error */
-               res = VK_ERROR_OUT_OF_HOST_MEMORY;
-               goto fail;
-       }
-
-       VkShaderModule vs_module_h = radv_shader_module_to_handle(&vs_module);
-
        for (uint32_t i = 0; i < ARRAY_SIZE(state->depth_decomp); ++i) {
                uint32_t samples = 1 << i;
 
@@ -317,7 +310,7 @@ radv_device_init_meta_depth_decomp_state(struct radv_device *device, bool on_dem
                        continue;
 
                for (uint32_t j = 0; j < NUM_DEPTH_DECOMPRESS_PIPELINES; j++) {
-                       res = create_pipeline(device, vs_module_h, samples,
+                       res = create_pipeline(device, samples,
                                              state->depth_decomp[i].pass,
                                              state->depth_decomp[i].p_layout,
                                              DEPTH_DECOMPRESS,
@@ -327,7 +320,7 @@ radv_device_init_meta_depth_decomp_state(struct radv_device *device, bool on_dem
                                goto fail;
                }
 
-               res = create_pipeline(device, vs_module_h, samples,
+               res = create_pipeline(device, samples,
                                      state->depth_decomp[i].pass,
                                      state->depth_decomp[i].p_layout,
                                      DEPTH_RESUMMARIZE,
@@ -337,14 +330,10 @@ radv_device_init_meta_depth_decomp_state(struct radv_device *device, bool on_dem
                        goto fail;
        }
 
-       goto cleanup;
+       return VK_SUCCESS;
 
 fail:
        radv_device_finish_meta_depth_decomp_state(device);
-
-cleanup:
-       ralloc_free(vs_module.nir);
-
        return res;
 }
 
@@ -372,7 +361,7 @@ radv_get_depth_pipeline(struct radv_cmd_buffer *cmd_buffer,
                VkResult ret;
 
                for (uint32_t i = 0; i < NUM_DEPTH_DECOMPRESS_PIPELINES; i++) {
-                       ret = create_pipeline(cmd_buffer->device, VK_NULL_HANDLE, samples,
+                       ret = create_pipeline(cmd_buffer->device, samples,
                                              state->depth_decomp[samples_log2].pass,
                                              state->depth_decomp[samples_log2].p_layout,
                                              DEPTH_DECOMPRESS,
@@ -384,7 +373,7 @@ radv_get_depth_pipeline(struct radv_cmd_buffer *cmd_buffer,
                        }
                }
 
-               ret = create_pipeline(cmd_buffer->device, VK_NULL_HANDLE, samples,
+               ret = create_pipeline(cmd_buffer->device, samples,
                                      state->depth_decomp[samples_log2].pass,
                                      state->depth_decomp[samples_log2].p_layout,
                                      DEPTH_RESUMMARIZE,