diff options
| author | 2021-06-25 02:41:34 -0300 | |
|---|---|---|
| committer | 2021-06-26 02:17:36 -0300 | |
| commit | b4894faeae86ec9097068189288cb2c82f1f2f01 (patch) | |
| tree | 77ef4e42c5fc783fa9919c5bbfa89c62a18226b8 /src/video_core/texture_cache | |
| parent | buffer_cache: Silence implicit cast warning (diff) | |
| download | yuzu-b4894faeae86ec9097068189288cb2c82f1f2f01.tar.gz yuzu-b4894faeae86ec9097068189288cb2c82f1f2f01.tar.xz yuzu-b4894faeae86ec9097068189288cb2c82f1f2f01.zip | |
buffer_cache/texture_cache: Make GC functions private
Diffstat (limited to 'src/video_core/texture_cache')
| -rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index 84530a179..c7cfd02b6 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h | |||
| @@ -110,9 +110,6 @@ public: | |||
| 110 | /// Notify the cache that a new frame has been queued | 110 | /// Notify the cache that a new frame has been queued |
| 111 | void TickFrame(); | 111 | void TickFrame(); |
| 112 | 112 | ||
| 113 | /// Runs the Garbage Collector. | ||
| 114 | void RunGarbageCollector(); | ||
| 115 | |||
| 116 | /// Return a constant reference to the given image view id | 113 | /// Return a constant reference to the given image view id |
| 117 | [[nodiscard]] const ImageView& GetImageView(ImageViewId id) const noexcept; | 114 | [[nodiscard]] const ImageView& GetImageView(ImageViewId id) const noexcept; |
| 118 | 115 | ||
| @@ -207,6 +204,9 @@ private: | |||
| 207 | } | 204 | } |
| 208 | } | 205 | } |
| 209 | 206 | ||
| 207 | /// Runs the Garbage Collector. | ||
| 208 | void RunGarbageCollector(); | ||
| 209 | |||
| 210 | /// Fills image_view_ids in the image views in indices | 210 | /// Fills image_view_ids in the image views in indices |
| 211 | void FillImageViews(DescriptorTable<TICEntry>& table, | 211 | void FillImageViews(DescriptorTable<TICEntry>& table, |
| 212 | std::span<ImageViewId> cached_image_view_ids, std::span<const u32> indices, | 212 | std::span<ImageViewId> cached_image_view_ids, std::span<const u32> indices, |