summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-04-16 06:22:50 +0200
committerGitHub <noreply@github.com>2020-04-16 06:22:50 +0200
commit60e8de7c95fff9ebe4ab6aa51c437d56e2167585 (patch)
tree8dccee8fe8712b83f1d07252c9070939047b8f00
parentMerge pull request #3685 from lioncash/copies (diff)
parentsurface_base: Make IsInside() a const member function (diff)
downloadyuzu-60e8de7c95fff9ebe4ab6aa51c437d56e2167585.tar
yuzu-60e8de7c95fff9ebe4ab6aa51c437d56e2167585.tar.gz
yuzu-60e8de7c95fff9ebe4ab6aa51c437d56e2167585.tar.bz2
yuzu-60e8de7c95fff9ebe4ab6aa51c437d56e2167585.tar.lz
yuzu-60e8de7c95fff9ebe4ab6aa51c437d56e2167585.tar.xz
yuzu-60e8de7c95fff9ebe4ab6aa51c437d56e2167585.tar.zst
yuzu-60e8de7c95fff9ebe4ab6aa51c437d56e2167585.zip
-rw-r--r--src/video_core/texture_cache/surface_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/surface_base.h b/src/video_core/texture_cache/surface_base.h
index a39a8661b..c5ab21f56 100644
--- a/src/video_core/texture_cache/surface_base.h
+++ b/src/video_core/texture_cache/surface_base.h
@@ -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