mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-18 02:48:28 +00:00
Merge pull request #18819 from hrydgard/disable-msaa-adreno
Temporarily disable MSAA on Adreno GPUs
This commit is contained in:
commit
bdfa4c1bcc
@ -966,8 +966,8 @@ VKContext::VKContext(VulkanContext *vulkan, bool useRenderThread)
|
|||||||
caps_.deviceID = deviceProps.deviceID;
|
caps_.deviceID = deviceProps.deviceID;
|
||||||
|
|
||||||
if (caps_.vendor == GPUVendor::VENDOR_QUALCOMM) {
|
if (caps_.vendor == GPUVendor::VENDOR_QUALCOMM) {
|
||||||
if (caps_.deviceID < 0x6000000) // On sub 6xx series GPUs, disallow multisample.
|
// if (caps_.deviceID < 0x6000000) // On sub 6xx series GPUs, disallow multisample.
|
||||||
multisampleAllowed = false;
|
multisampleAllowed = false; // Actually, let's disable it on them all for now. See issue #18818.
|
||||||
|
|
||||||
// Adreno 5xx devices, all known driver versions, fail to discard stencil when depth write is off.
|
// Adreno 5xx devices, all known driver versions, fail to discard stencil when depth write is off.
|
||||||
// See: https://github.com/hrydgard/ppsspp/pull/11684
|
// See: https://github.com/hrydgard/ppsspp/pull/11684
|
||||||
|
@ -342,6 +342,8 @@ void GameSettingsScreen::CreateGraphicsSettings(UI::ViewGroup *graphicsSettings)
|
|||||||
msaaChoice->SetChoiceIcon(i, ImageID("I_WARNING"));
|
msaaChoice->SetChoiceIcon(i, ImageID("I_WARNING"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
g_Config.iMultiSampleLevel = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if PPSSPP_PLATFORM(ANDROID)
|
#if PPSSPP_PLATFORM(ANDROID)
|
||||||
|
Loading…
Reference in New Issue
Block a user