[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
1 changed files with 6 additions and 0 deletions

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: {