0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

VideoCore: Sync state after changing rasterizers

This fixes various bugs that appear in the HW rasterizer after switching
between it and the SW one during emulation.
This commit is contained in:
Yuri Kunde Schlesner 2015-12-20 17:37:15 -08:00
parent bbb96a392d
commit 015d7b9779

View File

@ -24,5 +24,6 @@ void RendererBase::RefreshRasterizerSetting() {
rasterizer = Common::make_unique<VideoCore::SWRasterizer>();
}
rasterizer->InitObjects();
rasterizer->Reset();
}
}