summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-19video_core: Reduce unused includesameerj1-2/+0
2022-03-07MaxwellDMA: Implement semaphore operationsLody1-0/+2
2021-09-20maxwell_dma: Minor refactoringameerj1-1/+1
2021-07-27video_core/engine: Consistently initialize rasterizer pointersLioncash1-1/+1
Ensures all of the engines have consistent and deterministic initialization of the rasterizer pointers.
2021-07-13DMAEngine: Accelerate BufferClearFernando Sahmkow1-0/+2
2021-07-11accelerateDMA: Accelerate Buffer Copies.Fernando Sahmkow1-1/+16
2021-04-12engine_interface: Add missing virtual destructorLioncash1-1/+1
Eliminates a potential bug vector related to inheritance. Plus, we should generally be specifying the destructor as virtual within purely virtual interfaces to begin with.
2020-12-05maxwell_dma: Rename RenderEnable::Mode::FALSE and TRUE to avoid name conflictcomex1-5/+7
On Apple platforms, FALSE and TRUE are defined as macros by <mach/boolean.h>, which is included by various system headers. Note that there appear to be no actual users of the names to fix up.
2020-12-04video_core: Resolve more variable shadowing scenariosLioncash1-2/+2
Resolves variable shadowing scenarios up to the end of the OpenGL code to make it nicer to review. The rest will be resolved in a following commit.
2020-07-08maxwell_dma: Rename registers to match official docs and reorderReinUsesLisp1-144/+204
Rename registers in the MaxwellDMA class to match Nvidia's official documentation. This one can be found here: https://github.com/NVIDIA/open-gpu-doc/blob/master/classes/dma-copy/clb0b5.h While we are at it, reorganize the code in MaxwellDMA to be separated in different functions.
2020-04-28Clang Format and Documentation.Fernando Sahmkow1-1/+2
2020-04-28VideoCore/Engines: Refactor Engines CallMethod.Fernando Sahmkow1-3/+4
2020-04-23DMAPusher: Propagate multimethod writes into the engines.Fernando Sahmkow1-0/+3
2019-11-04common_func: Use std::array for INSERT_PADDING_* macros.bunnei1-5/+5
- Zero initialization here is useful for determinism.
2019-08-30video_core: Silent miscellaneous warnings (#2820)Rodrigo Locatti1-8/+1
* texture_cache/surface_params: Remove unused local variable * rasterizer_interface: Add missing documentation commentary * maxwell_dma: Remove unused rasterizer reference * video_core/gpu: Sort member declaration order to silent -Wreorder warning * fermi_2d: Remove unused MemoryManager reference * video_core: Silent unused variable warnings * buffer_cache: Silent -Wreorder warnings * kepler_memory: Remove unused MemoryManager reference * gl_texture_cache: Add missing override * buffer_cache: Add missing include * shader/decode: Remove unused variables
2019-06-21decoders: correct block calculationFernando Sahmkow1-2/+2
2019-06-21video_core: Use un-shifted block sizes to avoid integer divisionsReinUsesLisp1-2/+2
Instead of storing all block width, height and depths in their shifted form: block_width = 1U << block_shift; Store them like they are provided by the emulated hardware (their block_shift form). This way we can avoid doing the costly Common::AlignUp operation to align texture sizes and drop CPU integer divisions with bitwise logic (defined in Common::AlignBits).
2019-05-01Refactors and name corrections.Fernando Sahmkow1-7/+7
2019-04-23Fixes and Corrections to DMA EngineFernando Sahmkow1-0/+11
2019-04-23Add Swizzle Parameters to the DMA engineFernando Sahmkow1-1/+26
2019-04-23Add Documentation Headers to all the GPU EnginesFernando Sahmkow1-0/+5
2019-04-06video_core/engines: Make memory manager members privateLioncash1-2/+2
These aren't used externally by anything, so they can be made private data members.
2019-04-06video_core/engines: Remove unnecessary inclusions where applicableLioncash1-1/+4
Replaces header inclusions with forward declarations where applicable and also removes unused headers within the cpp file. This reduces a few more dependencies on core/memory.h
2019-03-06video_core/engines: Remove unnecessary includesLioncash1-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.
2019-02-16video_core: Remove usages of System::GetInstance() within the enginesLioncash1-2/+8
Avoids the use of the global accessor in favor of explicitly making the system a dependency within the interface.
2018-11-27gpu: Rewrite GPU command list processing with DmaPusher class.bunnei1-1/+1
- More accurate impl., fixes Undertale (among other games).
2018-10-19GPU: Improved implementation of maxwell DMA (Subv).bunnei1-1/+7
2018-10-13Propagate depth and depth_block on modules using decodersFernandoS271-0/+4
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-1/+1
2018-07-21video_core: Use nested namespaces where applicableLioncash1-4/+2
Compresses a few namespace specifiers to be more compact.
2018-06-12GPU: Partially implemented the Maxwell DMA engine.Subv1-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.