From 306abbead34815be303daebba9333b4c4f0975e8 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 15 Dec 2015 11:36:55 -0800 Subject: [PATCH] anv/pipeline: Properly set IncludeVertexHandles in 3DSTATE_GS --- src/vulkan/gen7_pipeline.c | 1 + src/vulkan/gen8_pipeline.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/vulkan/gen7_pipeline.c b/src/vulkan/gen7_pipeline.c index e3bfc708deb..63aca1f6b32 100644 --- a/src/vulkan/gen7_pipeline.c +++ b/src/vulkan/gen7_pipeline.c @@ -491,6 +491,7 @@ genX(graphics_pipeline_create)( .OutputVertexSize = gs_prog_data->output_vertex_size_hwords * 2 - 1, .OutputTopology = gs_prog_data->output_topology, .VertexURBEntryReadLength = gs_prog_data->base.urb_read_length, + .IncludeVertexHandles = gs_prog_data->base.include_vue_handles, .DispatchGRFStartRegisterforURBData = gs_prog_data->base.base.dispatch_grf_start_reg, diff --git a/src/vulkan/gen8_pipeline.c b/src/vulkan/gen8_pipeline.c index d3b307ca5f7..3c3f079b408 100644 --- a/src/vulkan/gen8_pipeline.c +++ b/src/vulkan/gen8_pipeline.c @@ -453,6 +453,7 @@ genX(graphics_pipeline_create)( .OutputVertexSize = gs_prog_data->output_vertex_size_hwords * 2 - 1, .OutputTopology = gs_prog_data->output_topology, .VertexURBEntryReadLength = gs_prog_data->base.urb_read_length, + .IncludeVertexHandles = gs_prog_data->base.include_vue_handles, .DispatchGRFStartRegisterForURBData = gs_prog_data->base.base.dispatch_grf_start_reg,