summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_framebuffer_cache.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-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.
* gl_state: Remove completelyReinUsesLisp2020-02-281-2/+0
|
* gl_framebuffer_cache: Optimize framebuffer keyReinUsesLisp2019-11-291-8/+11
| | | | | | Pack color attachment enumerations into a single u32. To determine the number of buffers, the highest color attachment with a shared pointer that doesn't point to null is used.
* gl_rasterizer: Re-enable framebuffer cache for clear buffersReinUsesLisp2019-11-291-2/+2
|
* gl_rasterizer: Remove unused code paths from ConfigureFramebuffersReinUsesLisp2019-09-171-1/+0
|
* gl_framebuffer_cache: Use a hashed struct to cache framebuffersReinUsesLisp2019-06-211-0/+68