mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-26 12:15:42 +01:00
Buffer Cache: Adress Feedback.
This commit is contained in:
parent
6ce2c85047
commit
83ec2091c1
@ -19,8 +19,8 @@ public:
|
|||||||
return (cache_addr < end) && (cache_addr_end > start);
|
return (cache_addr < end) && (cache_addr_end > start);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsInside(const CacheAddr other_start, const CacheAddr other_end) {
|
bool IsInside(const CacheAddr other_start, const CacheAddr other_end) const {
|
||||||
return (cache_addr <= other_start && other_end <= cache_addr_end);
|
return cache_addr <= other_start && other_end <= cache_addr_end;
|
||||||
}
|
}
|
||||||
|
|
||||||
u8* GetWritableHostPtr() const {
|
u8* GetWritableHostPtr() const {
|
||||||
@ -61,8 +61,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit BufferBlock(CacheAddr cache_addr,const std::size_t size)
|
explicit BufferBlock(CacheAddr cache_addr, const std::size_t size) : size{size} {
|
||||||
: size{size} {
|
|
||||||
SetCacheAddr(cache_addr);
|
SetCacheAddr(cache_addr);
|
||||||
}
|
}
|
||||||
~BufferBlock() = default;
|
~BufferBlock() = default;
|
||||||
|
Loading…
Reference in New Issue
Block a user