summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_accelerated.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* RasterizerInterface: Correct size of CPU addresses to cache.FernandoS272021-10-041-1/+1
|
* video_core: rasterizer_cache: Use u16 for cached page count.bunnei2021-05-271-6/+6
| | | | - Greatly reduces the risk of overflow, at the cost of doubling the size of this array.
* video_core: rasterizer_accelerated: Use a flat array instead of interval_map for cached pages.bunnei2021-03-031-6/+19
| | | | | | - Uses a fixed 64MB for the cache instead of an ever growing map. - Slightly faster by using atomics instead of a single mutex for access. - Thanks for Rodrigo for the idea.
* core: memory: Move to Core::Memory namespace.bunnei2020-04-171-3/+3
| | | | - helpful to disambiguate Kernel::Memory namespace.
* core: Prepare various classes for memory read/write migrationLioncash2019-11-271-2/+7
| | | | | | | | | | Amends a few interfaces to be able to handle the migration over to the new Memory class by passing the class by reference as a function parameter where necessary. Notably, within the filesystem services, this eliminates two ReadBlock() calls by using the helper functions of HLERequestContext to do that for us.
* rasterizer_accelerated: Add intermediary for GPU rasterizersReinUsesLisp2019-10-271-0/+31
Add an intermediary class that implements common functions across GPU accelerated rasterizers. This avoids code repetition on different backends.