mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 21:37:56 -05:00
video_core/memory_manager: Mark IsBlockContinuous() as a const member function
Corrects the typo in its name and marks the function as a const member function, given it doesn't actually modify memory manager state.
This commit is contained in:
@ -66,8 +66,8 @@ public:
|
||||
u8* GetPointer(GPUVAddr addr);
|
||||
const u8* GetPointer(GPUVAddr addr) const;
|
||||
|
||||
// Returns true if the block is continuous in host memory, false otherwise
|
||||
bool IsBlockContinous(GPUVAddr start, std::size_t size);
|
||||
/// Returns true if the block is continuous in host memory, false otherwise
|
||||
bool IsBlockContinuous(GPUVAddr start, std::size_t size) const;
|
||||
|
||||
/**
|
||||
* ReadBlock and WriteBlock are full read and write operations over virtual
|
||||
|
Reference in New Issue
Block a user