summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/util.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-01-24video_core: Silence -Wmissing-field-initializers warningsReinUsesLisp1-24/+35
2021-01-17texture_cache/util: Resolve -Wsign-compare warningLioncash1-1/+1
Resolves a -Wsign-compare warning on Clang.
2021-01-15common/alignment: Rename AlignBits to AlignUpLog2ReinUsesLisp1-5/+5
AlignUpLog2 describes what the function does better than AlignBits.
2021-01-04gl_texture_cache: Avoid format views on Intel and AMDReinUsesLisp1-6/+7
Intel and AMD proprietary drivers are incapable of rendering to texture views of different formats than the original texture. Avoid creating these at a cache level. This will consume more memory, emulating them with copies.
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-0/+1232
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.