mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
surface_base: Make IsInside() a const member function
This doesn't modify internal state, so this can be made const.
This commit is contained in:
parent
e33196d4e7
commit
d551c910bb
1 changed files with 2 additions and 2 deletions
|
@ -72,9 +72,9 @@ public:
|
|||
return (cpu_addr < end) && (cpu_addr_end > start);
|
||||
}
|
||||
|
||||
bool IsInside(const GPUVAddr other_start, const GPUVAddr other_end) {
|
||||
bool IsInside(const GPUVAddr other_start, const GPUVAddr other_end) const {
|
||||
const GPUVAddr gpu_addr_end = gpu_addr + guest_memory_size;
|
||||
return (gpu_addr <= other_start && other_end <= gpu_addr_end);
|
||||
return gpu_addr <= other_start && other_end <= gpu_addr_end;
|
||||
}
|
||||
|
||||
// Use only when recycling a surface
|
||||
|
|
Loading…
Reference in a new issue