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:
parent
1a8567a363
commit
87f9bcfd75
@ -5924,7 +5924,7 @@ namespace dxvk {
|
|||||||
uint32_t varId = m_module.newVar (ptrType, storageClass);
|
uint32_t varId = m_module.newVar (ptrType, storageClass);
|
||||||
|
|
||||||
m_module.setDebugName (varId, isInput ? "vVertex" : "oVertex");
|
m_module.setDebugName (varId, isInput ? "vVertex" : "oVertex");
|
||||||
m_module.decorateLocation (varId, 32);
|
m_module.decorateLocation (varId, 0);
|
||||||
|
|
||||||
m_entryPointInterfaces.push_back(varId);
|
m_entryPointInterfaces.push_back(varId);
|
||||||
return varId;
|
return varId;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user