[dxbc] Add gs_vertex_in to the entry point interface

Fixes invalid SPIR-V generated in the Blacksmith demo (#267).
This commit is contained in:
Philip Rebohle 2018-04-23 18:07:31 +02:00
parent d91114d733
commit 5eaacf7459
1 changed files with 2 additions and 0 deletions

View File

@ -5790,6 +5790,8 @@ namespace dxvk {
m_perVertexIn = m_module.newVar(
ptrTypeId, spv::StorageClassInput);
m_module.setDebugName(m_perVertexIn, varName);
m_entryPointInterfaces.push_back(m_perVertexIn);
}