mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
libretro: Fix opengl detectvsyncswapinterval crash
This commit is contained in:
parent
0b677dcfdf
commit
4cc75d91fe
1 changed files with 8 additions and 0 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue