Просмотр исходного кода

GPU: Don't try to route PFIFO methods (0-0x40) to the other engines.

Subv 7 лет назад
Родитель
Сommit
b873253da1
1 измененных файлов с 6 добавлено и 0 удалено
  1. 6 0
      src/video_core/gpu.cpp

+ 6 - 0
src/video_core/gpu.cpp

@@ -141,6 +141,12 @@ void GPU::CallMethod(const MethodCall& method_call) {
         return;
     }
 
+    if (method_call.method < static_cast<u32>(BufferMethods::CountBufferMethods)) {
+        // TODO(Subv): Research and implement these methods.
+        LOG_ERROR(HW_GPU, "Special buffer methods other than Bind are not implemented");
+        return;
+    }
+
     const EngineID engine = bound_engines[method_call.subchannel];
 
     switch (engine) {