|
|
|
@ -30,12 +30,12 @@ public: |
|
|
|
explicit CachedGlobalRegion(VAddr addr, u32 size); |
|
|
|
|
|
|
|
/// Gets the address of the shader in guest memory, required for cache management |
|
|
|
VAddr GetAddr() const { |
|
|
|
VAddr GetAddr() const override { |
|
|
|
return addr; |
|
|
|
} |
|
|
|
|
|
|
|
/// Gets the size of the shader in guest memory, required for cache management |
|
|
|
std::size_t GetSizeInBytes() const { |
|
|
|
std::size_t GetSizeInBytes() const override { |
|
|
|
return size; |
|
|
|
} |
|
|
|
|
|
|
|
@ -70,7 +70,7 @@ public: |
|
|
|
private: |
|
|
|
GlobalRegion TryGetReservedGlobalRegion(VAddr addr, u32 size) const; |
|
|
|
GlobalRegion GetUncachedGlobalRegion(VAddr addr, u32 size); |
|
|
|
void ReserveGlobalRegion(const GlobalRegion& region); |
|
|
|
void ReserveGlobalRegion(GlobalRegion region); |
|
|
|
|
|
|
|
std::unordered_map<VAddr, GlobalRegion> reserve; |
|
|
|
}; |
|
|
|
|