1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-19 05:52:11 +01:00

[dxbc] Fix xfb passthrough for system values

vReg should be always allocated for system values which is
necessary for emitXfbOutputSetup and is already done for
hull shader passthrough.

Signed-off-by: Danylo Piliaiev <danylo.piliaiev@globallogic.com>
This commit is contained in:
Danylo Piliaiev 2019-03-07 18:45:52 +02:00 committed by Philip Rebohle
parent 2afe5ec141
commit 261d31cac6

View File

@ -189,7 +189,7 @@ namespace dxvk {
for (auto e = m_isgn->begin(); e != m_isgn->end(); e++) {
emitDclInput(e->registerId, 1,
e->componentMask, e->systemValue,
e->componentMask, DxbcSystemValue::None,
DxbcInterpolationMode::Undefined);
}