summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/surface_view.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-68/+0
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.
2020-12-05video_core: Resolve more variable shadowing scenarios pt.3Lioncash1-5/+5
Cleans out the rest of the occurrences of variable shadowing and makes any further occurrences of shadowing compiler errors.
2020-04-16surface_view: Add missing operator!= to ViewParamsLioncash1-0/+1
Provides logical symmetry to the interface.
2019-09-06texture_cache: Minor changesReinUsesLisp1-10/+10
2019-06-24texture_cache/surface_view: Address feedbackReinUsesLisp1-1/+0
2019-06-21surface_view: Add constructor for ViewParamsReinUsesLisp1-1/+7
2019-06-21Correct Surface Base and Views for new Texture CacheFernando Sahmkow1-4/+31
2019-06-21texture_cache: Split texture cache into different filesReinUsesLisp1-0/+35