summaryrefslogtreecommitdiffstats
path: root/src/video_core/memory_manager.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-06-20 12:25:59 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-07-04 22:32:35 +0200
commit8f9f142956bb5de205cad2237f0cf60770796867 (patch)
tree00aa9899f418b73889955da8dfdbb6a9c3c20a27 /src/video_core/memory_manager.h
parentTexture Cache: Improve accuracy of sparse texture detection. (diff)
downloadyuzu-8f9f142956bb5de205cad2237f0cf60770796867.tar
yuzu-8f9f142956bb5de205cad2237f0cf60770796867.tar.gz
yuzu-8f9f142956bb5de205cad2237f0cf60770796867.tar.bz2
yuzu-8f9f142956bb5de205cad2237f0cf60770796867.tar.lz
yuzu-8f9f142956bb5de205cad2237f0cf60770796867.tar.xz
yuzu-8f9f142956bb5de205cad2237f0cf60770796867.tar.zst
yuzu-8f9f142956bb5de205cad2237f0cf60770796867.zip
Diffstat (limited to 'src/video_core/memory_manager.h')
-rw-r--r--src/video_core/memory_manager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h
index 305c4b1f1..99d13e7f6 100644
--- a/src/video_core/memory_manager.h
+++ b/src/video_core/memory_manager.h
@@ -114,22 +114,22 @@ public:
void WriteBlockUnsafe(GPUVAddr gpu_dest_addr, const void* src_buffer, std::size_t size);
/**
- * IsGranularRange checks if a gpu region can be simply read with a pointer.
+ * Checks if a gpu region can be simply read with a pointer.
*/
[[nodiscard]] bool IsGranularRange(GPUVAddr gpu_addr, std::size_t size) const;
/**
- * IsContinousRange checks if a gpu region is mapped by a single range of cpu addresses.
+ * Checks if a gpu region is mapped by a single range of cpu addresses.
*/
[[nodiscard]] bool IsContinousRange(GPUVAddr gpu_addr, std::size_t size) const;
/**
- * IsFullyMappedRange checks if a gpu region is mapped entirely.
+ * Checks if a gpu region is mapped entirely.
*/
[[nodiscard]] bool IsFullyMappedRange(GPUVAddr gpu_addr, std::size_t size) const;
/**
- * GetSubmappedRange returns a vector with all the subranges of cpu addresses mapped beneath.
+ * Returns a vector with all the subranges of cpu addresses mapped beneath.
* if the region is continous, a single pair will be returned. If it's unmapped, an empty vector
* will be returned;
*/