Merge pull request #2162 from degasus/prefetch_tex

CustomTexture: prefetch all available textures
This commit is contained in:
Markus Wick
2015-05-26 13:30:26 +02:00
10 changed files with 210 additions and 14 deletions

View File

@ -199,6 +199,9 @@ protected:
virtual_xfb->Enable(vconfig.bUseXFB);
real_xfb->Enable(vconfig.bUseXFB);
// custom textures
cache_hires_textures->Enable(vconfig.bHiresTextures);
// Repopulating the post-processing shaders can't be done from an event
if (choice_ppshader && choice_ppshader->IsEmpty())
PopulatePostProcessingShaders();
@ -262,6 +265,8 @@ protected:
SettingRadioButton* virtual_xfb;
SettingRadioButton* real_xfb;
SettingCheckBox* cache_hires_textures;
wxCheckBox* progressive_scan_checkbox;
wxChoice* choice_ppshader;