vkd3d/meta: Initialize flags variable.

Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
This commit is contained in:
Hans-Kristian Arntzen 2020-06-24 12:36:48 +02:00
parent 8c216e637c
commit 24be81fdfb
1 changed files with 1 additions and 0 deletions

View File

@ -251,6 +251,7 @@ static VkResult vkd3d_meta_create_graphics_pipeline(struct vkd3d_meta_ops *meta_
pipeline_info.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
pipeline_info.pNext = NULL;
pipeline_info.flags = 0;
pipeline_info.stageCount = 0;
pipeline_info.pStages = shader_stages;
pipeline_info.pVertexInputState = &vi_state;