diff options
| author | 2018-12-04 08:49:22 -0500 | |
|---|---|---|
| committer | 2018-12-04 08:49:22 -0500 | |
| commit | 7f6bc284e9eb39653bfdfba0e988311f24f14b6b (patch) | |
| tree | 6ea0bf63529a0e73535036cace6e88cd416ce067 /src/video_core/gpu.cpp | |
| parent | Merge pull request #1852 from VPeruS/fix-format-string (diff) | |
| parent | Removed unused file. (diff) | |
| download | yuzu-7f6bc284e9eb39653bfdfba0e988311f24f14b6b.tar.gz yuzu-7f6bc284e9eb39653bfdfba0e988311f24f14b6b.tar.xz yuzu-7f6bc284e9eb39653bfdfba0e988311f24f14b6b.zip | |
Merge pull request #1854 from Subv/old_command_processor
Don't try to route PFIFO methods (0-0x40) to the other engines.
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index fd1242333..88c45a423 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp | |||
| @@ -141,6 +141,12 @@ void GPU::CallMethod(const MethodCall& method_call) { | |||
| 141 | return; | 141 | return; |
| 142 | } | 142 | } |
| 143 | 143 | ||
| 144 | if (method_call.method < static_cast<u32>(BufferMethods::CountBufferMethods)) { | ||
| 145 | // TODO(Subv): Research and implement these methods. | ||
| 146 | LOG_ERROR(HW_GPU, "Special buffer methods other than Bind are not implemented"); | ||
| 147 | return; | ||
| 148 | } | ||
| 149 | |||
| 144 | const EngineID engine = bound_engines[method_call.subchannel]; | 150 | const EngineID engine = bound_engines[method_call.subchannel]; |
| 145 | 151 | ||
| 146 | switch (engine) { | 152 | switch (engine) { |