libretro: Recreate resources after context reset

This commit is contained in:
Connor McLaughlin
2020-08-23 14:21:06 +10:00
parent 32921acc5a
commit df14519a97
4 changed files with 15 additions and 0 deletions

View File

@ -137,6 +137,13 @@ void LibretroHostDisplay::DestroyRenderDevice() {}
void LibretroHostDisplay::DestroyRenderSurface() {}
bool LibretroHostDisplay::CreateResources()
{
return true;
}
void LibretroHostDisplay::DestroyResources() {}
bool LibretroHostDisplay::ChangeRenderWindow(const WindowInfo& wi)
{
m_window_info = wi;