Skip to content
Snippets Groups Projects
Commit b873253d authored by Subv's avatar Subv
Browse files

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

parent e88cdcc9
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment