mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 15:45:46 +00:00
GPU: Don't try to route PFIFO methods (0-0x40) to the other engines.
This commit is contained in:
parent
cd9570ce0d
commit
a052151664
1 changed files with 6 additions and 0 deletions
|
@ -141,6 +141,12 @@ void GPU::CallMethod(const MethodCall& method_call) {
|
||||||
return;
|
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];
|
const EngineID engine = bound_engines[method_call.subchannel];
|
||||||
|
|
||||||
switch (engine) {
|
switch (engine) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue