summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_accelerated.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-17core: memory: Move to Core::Memory namespace.bunnei1-5/+5
- helpful to disambiguate Kernel::Memory namespace.
2019-12-11Added missing includeJoel Holdsworth1-0/+1
2019-11-27core/memory: Migrate over RasterizerMarkRegionCached() to the Memory classLioncash1-2/+2
This is only used within the accelerated rasterizer in two places, so this is also a very trivial migration.
2019-11-27core: Prepare various classes for memory read/write migrationLioncash1-1/+2
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.
2019-10-27rasterizer_accelerated: Add intermediary for GPU rasterizersReinUsesLisp1-0/+63
Add an intermediary class that implements common functions across GPU accelerated rasterizers. This avoids code repetition on different backends.