mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-21 03:54:45 +00:00
Update liverpool_to_vk.cpp
Missing Default Statement for Stability Exception throw (Later draw it to TextBox instead of exception -> Prevent crash)
This commit is contained in:
parent
0467f60376
commit
2db748889b
1 changed files with 3 additions and 0 deletions
|
@ -222,6 +222,9 @@ vk::CompareOp DepthCompare(AmdGpu::DepthCompare comp) {
|
|||
return vk::CompareOp::eGreaterOrEqual;
|
||||
case AmdGpu::DepthCompare::Always:
|
||||
return vk::CompareOp::eAlways;
|
||||
/// Missing AMG Gpu default statement
|
||||
default:
|
||||
throw std::invalid_argument("Unsupported DeepCompare");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue