memory_manager: Mark IsGranularRange() as a const member function

This doesn't modify internal member state, so it can be marked as const.
This commit is contained in:
Lioncash
2020-08-24 00:37:54 -04:00
parent fff2de8224
commit 5bce81c3d6
2 changed files with 3 additions and 3 deletions

View File

@ -109,7 +109,7 @@ public:
/**
* IsGranularRange checks if a gpu region can be simply read with a pointer.
*/
bool IsGranularRange(GPUVAddr gpu_addr, std::size_t size);
bool IsGranularRange(GPUVAddr gpu_addr, std::size_t size) const;
GPUVAddr Map(VAddr cpu_addr, GPUVAddr gpu_addr, std::size_t size);
GPUVAddr MapAllocate(VAddr cpu_addr, std::size_t size, std::size_t align);