mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
radv: remove redundant zero initialization of pipeline layout
It's already zeroed in radv_pipeline_layout_init(). Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21048>
This commit is contained in:
parent
1f67782eb2
commit
853f8eb930
1 changed files with 1 additions and 1 deletions
|
|
@ -4914,7 +4914,7 @@ radv_graphics_pipeline_init(struct radv_graphics_pipeline *pipeline, struct radv
|
||||||
const VkGraphicsPipelineCreateInfo *pCreateInfo,
|
const VkGraphicsPipelineCreateInfo *pCreateInfo,
|
||||||
const struct radv_graphics_pipeline_create_info *extra)
|
const struct radv_graphics_pipeline_create_info *extra)
|
||||||
{
|
{
|
||||||
struct radv_pipeline_layout pipeline_layout = {0};
|
struct radv_pipeline_layout pipeline_layout;
|
||||||
struct vk_graphics_pipeline_state state = {0};
|
struct vk_graphics_pipeline_state state = {0};
|
||||||
bool fast_linking_enabled = false;
|
bool fast_linking_enabled = false;
|
||||||
VkResult result;
|
VkResult result;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue