diff options
| author | 2020-05-09 21:03:39 -0400 | |
|---|---|---|
| committer | 2020-05-09 21:03:39 -0400 | |
| commit | 1887afaf9e712ba91f6a4f87e7c0f52c17ca8c8b (patch) | |
| tree | 715af3e60e00d1fd87052918e6c229170184a3f4 | |
| parent | VkPipelineCache: Use a null shader on invalid address. (diff) | |
| download | yuzu-1887afaf9e712ba91f6a4f87e7c0f52c17ca8c8b.tar.gz yuzu-1887afaf9e712ba91f6a4f87e7c0f52c17ca8c8b.tar.xz yuzu-1887afaf9e712ba91f6a4f87e7c0f52c17ca8c8b.zip | |
RasterizerCache: Correct documentation.
| -rw-r--r-- | src/video_core/rasterizer_cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/rasterizer_cache.h b/src/video_core/rasterizer_cache.h index 5236fbb00..096ee337c 100644 --- a/src/video_core/rasterizer_cache.h +++ b/src/video_core/rasterizer_cache.h | |||
| @@ -75,8 +75,8 @@ public: | |||
| 75 | private: | 75 | private: |
| 76 | bool is_registered{}; ///< Whether the object is currently registered with the cache | 76 | bool is_registered{}; ///< Whether the object is currently registered with the cache |
| 77 | bool is_dirty{}; ///< Whether the object is dirty (out of sync with guest memory) | 77 | bool is_dirty{}; ///< Whether the object is dirty (out of sync with guest memory) |
| 78 | bool is_memory_marked{}; ///< Whether it's marking rasterizer memory. | 78 | bool is_memory_marked{}; ///< Whether the object is marking rasterizer memory. |
| 79 | bool is_sync_pending{}; ///< Whether it's pending deletion. | 79 | bool is_sync_pending{}; ///< Whether the object is pending deletion. |
| 80 | u64 last_modified_ticks{}; ///< When the object was last modified, used for in-order flushing | 80 | u64 last_modified_ticks{}; ///< When the object was last modified, used for in-order flushing |
| 81 | VAddr cpu_addr{}; ///< Cpu address memory, unique from emulated virtual address space | 81 | VAddr cpu_addr{}; ///< Cpu address memory, unique from emulated virtual address space |
| 82 | }; | 82 | }; |