[Mesa-dev] [PATCH 1/2] vkpipeline-db: add sType to pipeline info

Grazvydas Ignotas notasas at gmail.com
Tue Jun 12 08:46:09 UTC 2018


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


More information about the mesa-dev mailing list