1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 02:52:10 +01:00

[dxbc] Do not use locations >32 for tess control outputs

Fixes an assertion with latest mesa-git.
This commit is contained in:
Philip Rebohle 2018-03-28 11:55:29 +02:00
parent 1a8567a363
commit 87f9bcfd75
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -5924,7 +5924,7 @@ namespace dxvk {
uint32_t varId = m_module.newVar (ptrType, storageClass);
m_module.setDebugName (varId, isInput ? "vVertex" : "oVertex");
m_module.decorateLocation (varId, 32);
m_module.decorateLocation (varId, 0);
m_entryPointInterfaces.push_back(varId);
return varId;