Merge pull request #264 from OFFTKP/thessaloniki

Eliminate compiler warning
This commit is contained in:
wheremyfoodat 2024-07-07 22:21:28 +00:00 committed by GitHub
commit f8c2dc0a18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -222,6 +222,8 @@ vk::CompareOp DepthCompare(AmdGpu::DepthCompare comp) {
return vk::CompareOp::eGreaterOrEqual;
case AmdGpu::DepthCompare::Always:
return vk::CompareOp::eAlways;
default:
UNREACHABLE();
}
}