summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/formatter.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-06Implement X8_D24 formatKelebek11-0/+2
2023-05-06Log object names with debug renderer, add a GPU address to ImageViewsKelebek11-1/+1
2023-05-03GPU: implement missing ASTCFernando Sahmkow1-0/+6
2022-11-24GPU: Implement additional render target formats.Fernando Sahmkow1-0/+2
2022-10-06VideoCore: Implement formats needed for N64 emulation.Fernando Sahmkow1-2/+2
2022-10-06Texture Cache: Add ASTC 10x5 Format.Fernando Sahmkow1-0/+4
2022-07-06renderer_(gl/vk): Implement ASTC_10x6_UNORMMorph1-0/+2
- Used by Monster Hunter Rise Update 10.0.2
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-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.
2022-04-14video_core: implement formats for N64 emulationFernando Sahmkow1-0/+4
2021-11-17video_core: Add S8_UINT stencil formatMorph1-0/+2
2021-07-23shader: Initial OpenGL implementationReinUsesLisp1-2/+1
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-0/+263
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.