Fermi2D: Rework blit engine and add a software blitter.

This commit is contained in:
Fernando Sahmkow 2022-11-05 22:26:38 +01:00
parent 168c9ee341
commit 957840be91
12 changed files with 1431 additions and 18 deletions

View file

@ -466,8 +466,7 @@ bool RasterizerOpenGL::AccelerateSurfaceCopy(const Tegra::Engines::Fermi2D::Surf
const Tegra::Engines::Fermi2D::Config& copy_config) {
MICROPROFILE_SCOPE(OpenGL_Blits);
std::scoped_lock lock{texture_cache.mutex};
texture_cache.BlitImage(dst, src, copy_config);
return true;
return texture_cache.BlitImage(dst, src, copy_config);
}
Tegra::Engines::AccelerateDMAInterface& RasterizerOpenGL::AccessAccelerateDMA() {