GS:MTL: Allow disabling fbfetch

For testing and stuff
This commit is contained in:
TellowKrinkle 2023-07-12 21:12:17 -05:00 committed by lightningterror
parent d4acb95d7c
commit ba37a0f3a9
1 changed files with 1 additions and 1 deletions

View File

@ -907,7 +907,7 @@ bool GSDeviceMTL::Create()
m_features.prefer_new_textures = true;
m_features.dxt_textures = true;
m_features.bptc_textures = true;
m_features.framebuffer_fetch = m_dev.features.framebuffer_fetch;
m_features.framebuffer_fetch = m_dev.features.framebuffer_fetch && !GSConfig.DisableFramebufferFetch;
m_features.dual_source_blend = true;
m_features.clip_control = true;
m_features.stencil_buffer = true;