summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_cache.h
diff options
context:
space:
mode:
authorGravatar bunnei2019-03-30 20:00:26 -0400
committerGravatar GitHub2019-03-30 20:00:26 -0400
commit1960164055ae49973828142a60ef537857f9193e (patch)
tree5379aaf02254070764a6aab59f6a35d1f52f2f9e /src/video_core/rasterizer_cache.h
parentMerge pull request #2298 from lioncash/variable (diff)
parentvideo_core: Amend constructor initializer list order where applicable (diff)
downloadyuzu-1960164055ae49973828142a60ef537857f9193e.tar.gz
yuzu-1960164055ae49973828142a60ef537857f9193e.tar.xz
yuzu-1960164055ae49973828142a60ef537857f9193e.zip
Merge pull request #2297 from lioncash/reorder
video_core: Amend constructor initializer list order where applicable
Diffstat (limited to 'src/video_core/rasterizer_cache.h')
-rw-r--r--src/video_core/rasterizer_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_cache.h b/src/video_core/rasterizer_cache.h
index 9fc9f3056..110ad7d26 100644
--- a/src/video_core/rasterizer_cache.h
+++ b/src/video_core/rasterizer_cache.h
@@ -71,8 +71,8 @@ private:
71 bool is_registered{}; ///< Whether the object is currently registered with the cache 71 bool is_registered{}; ///< Whether the object is currently registered with the cache
72 bool is_dirty{}; ///< Whether the object is dirty (out of sync with guest memory) 72 bool is_dirty{}; ///< Whether the object is dirty (out of sync with guest memory)
73 u64 last_modified_ticks{}; ///< When the object was last modified, used for in-order flushing 73 u64 last_modified_ticks{}; ///< When the object was last modified, used for in-order flushing
74 CacheAddr cache_addr{}; ///< Cache address memory, unique from emulated virtual address space
75 const u8* host_ptr{}; ///< Pointer to the memory backing this cached region 74 const u8* host_ptr{}; ///< Pointer to the memory backing this cached region
75 CacheAddr cache_addr{}; ///< Cache address memory, unique from emulated virtual address space
76}; 76};
77 77
78template <class T> 78template <class T>