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

@ -542,8 +542,7 @@ bool RasterizerVulkan::AccelerateSurfaceCopy(const Tegra::Engines::Fermi2D::Surf
const Tegra::Engines::Fermi2D::Surface& dst,
const Tegra::Engines::Fermi2D::Config& copy_config) {
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& RasterizerVulkan::AccessAccelerateDMA() {