aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/texture_cache/image_info.h
AgeCommit message (Collapse)Author
2024-02-10Texture Cache: Fix untracking on GPU remapFernando Sahmkow
2023-05-07Texture cache: sync the first flush.Fernando Sahmkow
2023-05-07GPU: Add Reactive flushingFernando Sahmkow
2023-03-14video_core: Better defined ImageInfo parametersFengChen
2023-03-05Engines: Implement Accelerate DMA Texture.Fernando Sahmkow
2022-04-23general: Convert source file copyright comments over to SPDXMorph
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.
2021-11-16Texture Cahe: Fix downscaling on SMO.Fernando Sahmkow
2021-11-16Texture Cache: Implement Rating System.Fernando Sahmkow
2021-11-16VideoCore: Initial Setup for the Resolution Scaler.Fernando Sahmkow
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp
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.