diff options
| author | 2018-11-28 10:12:37 -0500 | |
|---|---|---|
| committer | 2018-11-28 10:12:37 -0500 | |
| commit | 6f849887c9e7fa51743809c3a4bcfd2e319dff8d (patch) | |
| tree | ba26ea7fcb626dacab4b7997149ad52c21ba526c /src/video_core/macro_interpreter.cpp | |
| parent | Merge pull request #1735 from FernandoS27/tex-spacing (diff) | |
| parent | dma_pushbuffer: Optimize to avoid loop and copy on Push. (diff) | |
| download | yuzu-6f849887c9e7fa51743809c3a4bcfd2e319dff8d.tar.gz yuzu-6f849887c9e7fa51743809c3a4bcfd2e319dff8d.tar.xz yuzu-6f849887c9e7fa51743809c3a4bcfd2e319dff8d.zip | |
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) { | |||
| 250 | } | 250 | } |
| 251 | 251 | ||
| 252 | void MacroInterpreter::Send(u32 value) { | 252 | void MacroInterpreter::Send(u32 value) { |
| 253 | maxwell3d.WriteReg(method_address.address, value, 0); | 253 | maxwell3d.CallMethod({method_address.address, value}); |
| 254 | // Increment the method address by the method increment. | 254 | // Increment the method address by the method increment. |
| 255 | method_address.address.Assign(method_address.address.Value() + | 255 | method_address.address.Assign(method_address.address.Value() + |
| 256 | method_address.increment.Value()); | 256 | method_address.increment.Value()); |