summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_cache.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core/core: Replace includes with forward declarations where applicableLioncash2018-08-311-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.
* rasterizer_cache: Use boost::interval_map for a more accurate cache.bunnei2018-08-311-33/+45
|
* gl_renderer: Cache textures, framebuffers, and shaders based on CPU address.bunnei2018-08-311-4/+4
|
* gl_rasterizer: Fix issues with the rasterizer cache.bunnei2018-08-311-46/+8
| | | | | - Use a single cached page map. - Fix calculation of ending page.
* video_core: Add RasterizerCache class for common cache management code.bunnei2018-08-281-0/+116