summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core/engines: Remove unnecessary includesLioncash2019-03-061-0/+1
| | | | | | | | | Removes a few unnecessary dependencies on core-related machinery, such as the core.h and memory.h, which reduces the amount of rebuilding necessary if those files change. This also uncovered some indirect dependencies within other source files. This also fixes those.
* video_core: Remove usages of System::GetInstance() within the enginesLioncash2019-02-161-2/+8
| | | | | Avoids the use of the global accessor in favor of explicitly making the system a dependency within the interface.
* gpu: Rewrite GPU command list processing with DmaPusher class.bunnei2018-11-271-1/+1
| | | | - More accurate impl., fixes Undertale (among other games).
* GPU: Improved implementation of maxwell DMA (Subv).bunnei2018-10-191-1/+7
|
* Propagate depth and depth_block on modules using decodersFernandoS272018-10-131-0/+4
|
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-1/+1
|
* video_core: Use nested namespaces where applicableLioncash2018-07-211-4/+2
| | | | Compresses a few namespace specifiers to be more compact.
* GPU: Partially implemented the Maxwell DMA engine.Subv2018-06-121-0/+155
Only tiled->linear and linear->tiled copies that aren't offsetted are supported for now. Queries are not supported. Swizzled copies are not supported.