aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/dirty_flags.h
AgeCommit message (Collapse)Author
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.
2020-03-14DirtyFlags: relax need to set render_targets as dirty Fernando Sahmkow
The texture cache already takes care of setting a render target to dirty when invalidated.
2020-02-28video_core/dirty_flags: Address feedbackReinUsesLisp
2020-02-28dirty_flags: Deduplicate code between OpenGL and VulkanReinUsesLisp
2020-02-28video_core: Reintroduce dirty flags infrastructureReinUsesLisp