diff options
author | Jason Ekstrand <[email protected]> | 2020-05-12 22:31:54 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-05-14 00:34:47 +0000 |
commit | e3d8edf3e08988b19c6861040b9ed4afa8ca5ec2 (patch) | |
tree | f3c220cde1ca0eac17326637b79f5a009b7f27fb /src/intel/vulkan/genX_pipeline.c | |
parent | 723208988e12f2f3055360ffe8d9bd0b8414171a (diff) |
anv: Set 3DSTATE_VF_INSTANCING on the SVGS element
It probably doesn't matter because that buffer should have a stride of
zero. However, it still seems like a good idea just to be safe.
Reviewed-by: Kenneth Graunke <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5022>
Diffstat (limited to 'src/intel/vulkan/genX_pipeline.c')
-rw-r--r-- | src/intel/vulkan/genX_pipeline.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index f3f9333cc76..e17ba6750d4 100644 --- a/src/intel/vulkan/genX_pipeline.c +++ b/src/intel/vulkan/genX_pipeline.c @@ -219,6 +219,12 @@ emit_vertex_input(struct anv_graphics_pipeline *pipeline, #endif }; GENX(VERTEX_ELEMENT_STATE_pack)(NULL, &p[1 + id_slot * 2], &element); + +#if GEN_GEN >= 8 + anv_batch_emit(&pipeline->base.batch, GENX(3DSTATE_VF_INSTANCING), vfi) { + vfi.VertexElementIndex = id_slot; + } +#endif } #if GEN_GEN >= 8 |