summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/types.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Buffer Cache: Fix High Downloads and don't predownload on Extreme.Fernando Sahmkow2021-07-091-2/+2
|
* Texture Cache: Initial Implementation of Sparse Textures.Fernando Sahmkow2021-07-041-0/+1
|
* texture_cache: Handle out of bound texture blitsameerj2021-05-081-0/+7
| | | | Some games interleave a texture blit using regions which are out-of-bounds. This addresses the interleaving to avoid oob reads from the src texture.
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-0/+140
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.