On Tue, Jun 12, 2018 at 8:07 AM, Timothy Arceri <tarc...@itsqueeze.com> wrote: > From: Timothy Arceri <tarceri@localhost.localdomain>
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; > > -- > 2.17.1 > > _______________________________________________ > mesa-dev mailing list > mesa-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev