mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 08:15:46 +00:00
fermi_2d: disable sw_blitter
This commit is contained in:
parent
70b8561adb
commit
fe3b12c64e
2 changed files with 3 additions and 3 deletions
|
@ -114,9 +114,9 @@ void Fermi2D::Blit() {
|
|||
}
|
||||
|
||||
memory_manager.FlushCaching();
|
||||
if (!rasterizer->AccelerateSurfaceCopy(src, regs.dst, config)) {
|
||||
/*if (!rasterizer->AccelerateSurfaceCopy(src, regs.dst, config)) {
|
||||
sw_blitter->Blit(src, regs.dst, config);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
} // namespace Tegra::Engines
|
||||
|
|
|
@ -143,7 +143,7 @@ public:
|
|||
virtual void TickFrame() = 0;
|
||||
|
||||
virtual bool AccelerateConditionalRendering() {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
/// Attempt to use a faster method to perform a surface copy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue