mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 00:17:55 -05:00
Texture cache: Fix the remaining issues with memory mnagement and unmapping.
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
#include <deque>
|
||||
#include <limits>
|
||||
#include <mutex>
|
||||
#include <optional>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "common/common_types.h"
|
||||
@ -59,6 +60,15 @@ public:
|
||||
return ref->second.gpu_memory;
|
||||
}
|
||||
|
||||
std::optional<size_t> getStorageID(size_t id) const {
|
||||
std::unique_lock<std::mutex> lk(config_mutex);
|
||||
const auto ref = address_spaces.find(id);
|
||||
if (ref == address_spaces.end()) {
|
||||
return std::nullopt;
|
||||
}
|
||||
return ref->second.storage_id;
|
||||
}
|
||||
|
||||
protected:
|
||||
static constexpr size_t UNSET_CHANNEL{std::numeric_limits<size_t>::max()};
|
||||
|
||||
|
Reference in New Issue
Block a user