VideoBackends:Metal: Add config option to use presentDrawable

This commit is contained in:
TellowKrinkle
2022-07-30 01:32:55 -05:00
parent 5a1b90c7f3
commit a13f09433c
5 changed files with 14 additions and 2 deletions

View File

@ -94,6 +94,8 @@ const Info<bool> GFX_SAVE_TEXTURE_CACHE_TO_STATE{
const Info<TriState> GFX_MTL_MANUALLY_UPLOAD_BUFFERS{
{System::GFX, "Settings", "ManuallyUploadBuffers"}, TriState::Auto};
const Info<bool> GFX_MTL_USE_PRESENT_DRAWABLE{{System::GFX, "Settings", "MTLUsePresentDrawable"},
false};
const Info<bool> GFX_SW_DUMP_OBJECTS{{System::GFX, "Settings", "SWDumpObjects"}, false};
const Info<bool> GFX_SW_DUMP_TEV_STAGES{{System::GFX, "Settings", "SWDumpTevStages"}, false};