summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Reaper: Setup settings and final tuning.Fernando Sahmkow2021-06-161-4/+4
|
* Reaper: Tune it up to be an smart GC.Fernando Sahmkow2021-06-161-0/+10
|
* Initial Reaper SetupReinUsesLisp2021-06-161-0/+2
| | | | WIP
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-0/+83
The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage.The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage. This commit aims to address those issues.