libretro: Fix opengl detectvsyncswapinterval crash

This commit is contained in:
sonninnos 2024-06-05 04:50:19 +03:00
parent 0b677dcfdf
commit 4cc75d91fe

View File

@ -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() {