Reviewed-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>

On 06/12/2018 07:05 AM, Timothy Arceri wrote:
From: Timothy Arceri <tarceri@localhost.localdomain>

This avoids hitting asserts in anv.
---
  run.c | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/run.c b/run.c
index eafbd7d..a962887 100644
--- a/run.c
+++ b/run.c
@@ -264,6 +264,7 @@ create_graphics_pipeline(VkDevice device, struct 
pipeline_info *info,
          return result;
/* Graphics pipeline. */
+    pipelineInfo.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
      pipelineInfo.stageCount = info->stageCount;
      pipelineInfo.pStages = info->pShaderStagesInfo;
      pipelineInfo.pVertexInputState = &info->vertexInputState;
@@ -292,6 +293,7 @@ create_compute_pipeline(VkDevice device, struct 
pipeline_info *info,
      VkComputePipelineCreateInfo pipelineInfo = {};
/* Compute pipeline. */
+    pipelineInfo.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO;
      pipelineInfo.stage = *info->pShaderStagesInfo;
      pipelineInfo.layout = layout;
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to