early-access version 4028

This commit is contained in:
pineappleEA
2023-12-20 02:37:09 +01:00
parent 4539458956
commit 7bd2421ff9
51 changed files with 1669 additions and 645 deletions

View File

@@ -485,6 +485,10 @@ void RasterizerVulkan::DispatchCompute() {
}
void RasterizerVulkan::ResetCounter(VideoCommon::QueryType type) {
if (type != VideoCommon::QueryType::ZPassPixelCount64) {
LOG_DEBUG(Render_Vulkan, "Unimplemented counter reset={}", type);
return;
}
query_cache.CounterReset(type);
}