summaryrefslogtreecommitdiffstats
path: root/src/video_core/dma_pusher.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-04-06video_core/texures/texture: Remove unnecessary includesLioncash1-0/+1
Nothing in this header relies on common_funcs or the memory manager. This gets rid of reliance on indirect inclusions in the OpenGL caches.
2019-03-16video_core: Refactor to use MemoryManager interface for all memory access.bunnei1-5/+2
# Conflicts: # src/video_core/engines/kepler_memory.cpp # src/video_core/engines/maxwell_3d.cpp # src/video_core/morton.cpp # src/video_core/morton.h # src/video_core/renderer_opengl/gl_global_cache.cpp # src/video_core/renderer_opengl/gl_global_cache.h # src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
2019-03-08dma_pusher: Store command_list_header by copyReinUsesLisp1-1/+1
Instead of holding a reference that will get invalidated by dma_pushbuffer.pop(), hold it as a copy. This doesn't have any performance cost since CommandListHeader is 8 bytes long.
2019-02-19video_core/dma_pusher: Simplyfy Step() logic.Markus Wick1-78/+77
As fetching command list headers and and the list of command headers is a fixed 1:1 relation now, they can be implemented within a single call. This cleans up the Step() logic quite a bit.
2019-02-19video_core/dma_pusher: The full list of headers at once.Markus Wick1-48/+56
Fetching every u32 from memory leads to a big overhead. So let's fetch all of them as a block if possible. This reduces the Memory::* calls by the dma_pusher by a factor of 10.
2019-02-03video_core: Assert on invalid GPU to CPU address queriesReinUsesLisp1-2/+4
2018-11-28dma_pushbuffer: Optimize to avoid loop and copy on Push.bunnei1-2/+10
2018-11-28gpu: Move command list profiling to DmaPusher::DispatchCalls.bunnei1-0/+5
2018-11-27gpu: Rewrite GPU command list processing with DmaPusher class.bunnei1-0/+110
- More accurate impl., fixes Undertale (among other games).