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

[dxso] Fix potential fallthrough in RasterizerOut

This commit is contained in:
Joshua Ashton 2022-03-09 21:33:15 +00:00 committed by Philip Rebohle
parent a5b0f2898a
commit f4ab14cafa

View File

@ -1225,6 +1225,12 @@ namespace dxvk {
spv::StorageClassOutput, spv::BuiltInPointSize);
}
return m_vs.oPSize;
default: {
DxsoRegisterPointer nullPointer;
nullPointer.id = 0;
return nullPointer;
}
}
case DxsoRegisterType::ColorOut: {