mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
libretro: Fix opengl detectvsyncswapinterval crash
This commit is contained in:
@@ -42,6 +42,10 @@ LibretroHWRenderContext::LibretroHWRenderContext(retro_hw_context_type context_t
|
||||
void LibretroHWRenderContext::ContextReset() {
|
||||
INFO_LOG(G3D, "Context reset");
|
||||
|
||||
if (gpu && Libretro::useEmuThread) {
|
||||
Libretro::EmuThreadPause();
|
||||
}
|
||||
|
||||
if (gpu) {
|
||||
gpu->DeviceLost();
|
||||
}
|
||||
@@ -57,6 +61,10 @@ void LibretroHWRenderContext::ContextReset() {
|
||||
if (gpu) {
|
||||
gpu->DeviceRestore(draw_);
|
||||
}
|
||||
|
||||
if (gpu && Libretro::useEmuThread) {
|
||||
Libretro::EmuThreadStart();
|
||||
}
|
||||
}
|
||||
|
||||
void LibretroHWRenderContext::ContextDestroy() {
|
||||
|
||||
Reference in New Issue
Block a user