summaryrefslogtreecommitdiffstats
path: root/src/vulkan/gen8_pipeline.c
diff options
context:
space:
mode:
authorKristian Høgsberg Kristensen <[email protected]>2016-02-08 16:21:09 -0800
committerKristian Høgsberg Kristensen <[email protected]>2016-02-10 14:31:26 -0800
commit51c01e292c9a71958bb495d30397e82ba1a3d5d8 (patch)
tree539a62ae2d13825c02a577f6da534fb9e8964fd8 /src/vulkan/gen8_pipeline.c
parent09b3e30dc672d38e60aac1d279eb1db94c9b048e (diff)
anv: Generate pack headers from XML definition
This huge commit switches us over to using a simple xml format (genxml) for defining our command streamer commands and a python script for generating the pack headers we use in the driver.
Diffstat (limited to 'src/vulkan/gen8_pipeline.c')
-rw-r--r--src/vulkan/gen8_pipeline.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vulkan/gen8_pipeline.c b/src/vulkan/gen8_pipeline.c
index 389f7f797c0..e31966f7d85 100644
--- a/src/vulkan/gen8_pipeline.c
+++ b/src/vulkan/gen8_pipeline.c
@@ -319,7 +319,7 @@ genX(graphics_pipeline_create)(
anv_batch_emit(&pipeline->batch, GENX(3DSTATE_GS),
.SingleProgramFlow = false,
.KernelStartPointer = pipeline->gs_kernel,
- .VectorMaskEnable = Dmask,
+ .VectorMaskEnable = false,
.SamplerCount = 0,
.BindingTableEntryCount = 0,
.ExpectedVertexCount = pipeline->gs_vertex_count,
@@ -375,12 +375,12 @@ genX(graphics_pipeline_create)(
else
anv_batch_emit(&pipeline->batch, GENX(3DSTATE_VS),
.KernelStartPointer = vs_start,
- .SingleVertexDispatch = Multiple,
- .VectorMaskEnable = Dmask,
+ .SingleVertexDispatch = false,
+ .VectorMaskEnable = false,
.SamplerCount = 0,
.BindingTableEntryCount =
vue_prog_data->base.binding_table.size_bytes / 4,
- .ThreadDispatchPriority = Normal,
+ .ThreadDispatchPriority = false,
.FloatingPointMode = IEEE754,
.IllegalOpcodeExceptionEnable = false,
.AccessesUAV = false,