summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/accelerated_swizzle.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
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.
2021-01-15common/alignment: Rename AlignBits to AlignUpLog2ReinUsesLisp1-2/+2
AlignUpLog2 describes what the function does better than AlignBits.
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-0/+70
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.