mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
fix bug when rasterfont disappears sometimes
This commit is contained in:
parent
41b1128fdd
commit
13e9bb56f8
3 changed files with 60 additions and 51 deletions
|
@ -202,6 +202,7 @@ void VideoBackend::Video_Prepare()
|
|||
PixelShaderManager::Init();
|
||||
ProgramShaderCache::Init();
|
||||
PostProcessing::Init();
|
||||
Renderer::Init();
|
||||
GL_REPORT_ERRORD();
|
||||
VertexLoaderManager::Init();
|
||||
TextureConverter::Init();
|
||||
|
@ -226,6 +227,7 @@ void VideoBackend::Shutdown()
|
|||
|
||||
// The following calls are NOT Thread Safe
|
||||
// And need to be called from the video thread
|
||||
Renderer::Shutdown();
|
||||
TextureConverter::Shutdown();
|
||||
VertexLoaderManager::Shutdown();
|
||||
ProgramShaderCache::Shutdown();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue