summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/gen8_pipeline.c
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-08-06 09:11:53 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-08-08 11:13:46 -0700
commit52fcc40760d943e071536787cf3c49778c502706 (patch)
treee00443533b6024bd5aae402c846c984eecc522a9 /src/intel/vulkan/gen8_pipeline.c
parent21d5c1be6a334b924ac3dcedbdc35285e0c1ba16 (diff)
downloadexternal_mesa3d-52fcc40760d943e071536787cf3c49778c502706.zip
external_mesa3d-52fcc40760d943e071536787cf3c49778c502706.tar.gz
external_mesa3d-52fcc40760d943e071536787cf3c49778c502706.tar.bz2
anv/pipeline/gen7: Set the depth format in 3DSTATE_SF
Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/intel/vulkan/gen8_pipeline.c')
-rw-r--r--src/intel/vulkan/gen8_pipeline.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/intel/vulkan/gen8_pipeline.c b/src/intel/vulkan/gen8_pipeline.c
index e09d8cf..d16ce7b 100644
--- a/src/intel/vulkan/gen8_pipeline.c
+++ b/src/intel/vulkan/gen8_pipeline.c
@@ -119,7 +119,8 @@ genX(graphics_pipeline_create)(
assert(pCreateInfo->pInputAssemblyState);
emit_ia_state(pipeline, pCreateInfo->pInputAssemblyState, extra);
assert(pCreateInfo->pRasterizationState);
- emit_rs_state(pipeline, pCreateInfo->pRasterizationState, extra);
+ emit_rs_state(pipeline, pCreateInfo->pRasterizationState,
+ pass, subpass, extra);
emit_ms_state(pipeline, pCreateInfo->pMultisampleState);
emit_ds_state(pipeline, pCreateInfo->pDepthStencilState, pass, subpass);
emit_cb_state(pipeline, pCreateInfo->pColorBlendState,