summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_cache.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-18Clang format and other fixesFernandoS271-16/+0
2018-10-18Implement GetInRange in the Rasterizer CacheFernandoS271-0/+16
2018-10-16config: Rename use_accurate_framebuffers -> use_accurate_gpu_emulation.bunnei1-2/+2
- This will be used as a catch-all for slow-but-accurate GPU emulation paths.
2018-10-16rasterizer_cache: Refactor to support in-order flushing.bunnei1-32/+100
2018-10-16gl_rasterizer_cache: Only flush when use_accurate_framebuffers is enabled.bunnei1-1/+7
2018-10-16rasterizer_cache: Reintroduce method for flushing.bunnei1-0/+17
2018-08-31core/core: Replace includes with forward declarations where applicableLioncash1-2/+1
The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which replaces most of the includes in the core header with forward declarations. This makes it so that if any of the headers the core header was previously including change, then no one will need to rebuild the bulk of the core, due to core.h being quite a prevalent inclusion. This should make turnaround for changes much faster for developers.
2018-08-31rasterizer_cache: Use boost::interval_map for a more accurate cache.bunnei1-33/+45
2018-08-31gl_renderer: Cache textures, framebuffers, and shaders based on CPU address.bunnei1-4/+4
2018-08-31gl_rasterizer: Fix issues with the rasterizer cache.bunnei1-46/+8
- Use a single cached page map. - Fix calculation of ending page.
2018-08-28video_core: Add RasterizerCache class for common cache management code.bunnei1-0/+116