summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* VideoCore: implement channels on gpu caches.Fernando Sahmkow2022-10-061-0/+3
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* Revert "Memory GPU <-> CPU: reduce infighting in the texture cache by adding CPU Cached memory."bunnei2022-03-261-3/+0
|
* Texture Cache: Add Cached CPU system.Fernando Sahmkow2022-03-251-0/+3
|
* Garbage Collection: Final tuning.Fernando Sahmkow2022-03-251-5/+5
|
* Garbage Collection: Redesign the algorithm to do a better use of memory.Fernando Sahmkow2022-03-251-7/+8
|
* Texture Cahe/Shader decompiler: Resize PointSize on rescaling, refactor and make reaper more agressive on 4Gb GPUs.FernandoS272021-11-161-1/+0
|
* Texture Cache: fix memory managment and optimize scaled downloads, uploads.Fernando Sahmkow2021-11-161-3/+3
|
* Texture Cache: Fix downscaling and correct memory comsumption.Fernando Sahmkow2021-11-161-0/+5
|
* texture_cache: Fix infinitely recursive ImageCanRescale checkameerj2021-11-161-2/+3
|
* texture_cache: Simplify image view queries and blacklistingReinUsesLisp2021-11-161-0/+3
|
* Texture Cache: Implement Rating System.Fernando Sahmkow2021-11-161-0/+2
|
* Texture Cache: Implement Blacklisting.Fernando Sahmkow2021-11-161-0/+1
|
* VideoCore: Initial Setup for the Resolution Scaler.Fernando Sahmkow2021-11-161-0/+4
|
* Garbage Collection: Adress Feedback.Fernando Sahmkow2021-08-291-1/+1
|
* VideoCore: Rework Garbage Collection.Fernando Sahmkow2021-08-281-1/+1
|
* Texture Cache: Fix GCC & Clang.Fernando Sahmkow2021-07-041-4/+4
|
* Texture Cache: Address feedback.Fernando Sahmkow2021-07-041-3/+25
|
* Texture Cache: Improve accuracy of sparse texture detection.Fernando Sahmkow2021-07-041-2/+3
|
* Texture Cache: Initial Implementation of Sparse Textures.Fernando Sahmkow2021-07-041-0/+8
|
* 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.