Added back the "Attempted to track non-GPU memory" assert. (#2980)

* Fix log message

* Add non-GPU memory assert back
This commit is contained in:
Lander Gallastegi
2025-05-24 00:48:40 +02:00
committed by GitHub
parent e5c6c88835
commit 10d09ac977
2 changed files with 7 additions and 1 deletions

View File

@@ -668,7 +668,7 @@ void BufferCache::ProcessFaultBuffer() {
const VAddr fault_end = fault + CACHING_PAGESIZE; // This can be adjusted
fault_ranges +=
boost::icl::interval_set<VAddr>::interval_type::right_open(fault, fault_end);
LOG_INFO(Render_Vulkan, "Accessed non-GPU mapped memory at {:#x}", fault);
LOG_INFO(Render_Vulkan, "Accessed non-GPU cached memory at {:#x}", fault);
}
for (const auto& range : fault_ranges) {
const VAddr start = range.lower();