From b09b43b166b1e532bdfb4960a33f9f82e7070029 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Fri, 6 Oct 2017 09:53:20 +0200 Subject: [PATCH] radv: do not need to zero-init ds/raster states Already done when creating the pipeline. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- src/amd/vulkan/radv_pipeline.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 670b89c9223..c3458fa0372 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -937,7 +937,6 @@ radv_pipeline_init_depth_stencil_state(struct radv_pipeline *pipeline, const VkPipelineDepthStencilStateCreateInfo *vkds = pCreateInfo->pDepthStencilState; struct radv_depth_stencil_state *ds = &pipeline->graphics.ds; - memset(ds, 0, sizeof(*ds)); if (!vkds) return; @@ -1004,8 +1003,6 @@ radv_pipeline_init_raster_state(struct radv_pipeline *pipeline, const VkPipelineRasterizationStateCreateInfo *vkraster = pCreateInfo->pRasterizationState; struct radv_raster_state *raster = &pipeline->graphics.raster; - memset(raster, 0, sizeof(*raster)); - raster->spi_interp_control = S_0286D4_FLAT_SHADE_ENA(1) | S_0286D4_PNT_SPRITE_ENA(1) |