summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/accelerated_swizzle.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* renderer_vulkan: Accelerate ASTC decodingameerj2021-03-131-2/+2
| | | | Co-Authored-By: Rodrigo Locatti <reinuseslisp@airmail.cc>
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-0/+45
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.