diff options
| author | bunnei <bunneidev@gmail.com> | 2018-11-28 10:12:37 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-28 10:12:37 -0500 |
| commit | 6f849887c9e7fa51743809c3a4bcfd2e319dff8d (patch) | |
| tree | ba26ea7fcb626dacab4b7997149ad52c21ba526c /src/video_core/macro_interpreter.cpp | |
| parent | 881f5ad70f8500035d6e22000d010b58bfbe93b7 (diff) | |
| parent | ac74b71d7530452126792c5fa0bf01fe7378ba00 (diff) | |
Merge pull request #1792 from bunnei/dma-pusher
gpu: Rewrite GPU command list processing with DmaPusher class.
Diffstat (limited to 'src/video_core/macro_interpreter.cpp')
| -rw-r--r-- | src/video_core/macro_interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/macro_interpreter.cpp b/src/video_core/macro_interpreter.cpp index 2b0dea5cd..9c55e9f1e 100644 --- a/src/video_core/macro_interpreter.cpp +++ b/src/video_core/macro_interpreter.cpp @@ -250,7 +250,7 @@ void MacroInterpreter::SetMethodAddress(u32 address) { } void MacroInterpreter::Send(u32 value) { - maxwell3d.WriteReg(method_address.address, value, 0); + maxwell3d.CallMethod({method_address.address, value}); // Increment the method address by the method increment. method_address.address.Assign(method_address.address.Value() + method_address.increment.Value()); |
