diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index 8bec661cc2..ae7ebcf0b2 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -44,7 +44,6 @@ namespace DriverDetails static BugInfo m_known_bugs[] = { {OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, BUG_BROKENBUFFERSTREAM, -1.0, -1.0, true}, {OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, BUG_BROKENNEGATEDBOOLEAN,-1.0, -1.0, true}, - {OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, BUG_BROKENALPHATEST, -1.0, -1.0, true}, {OS_ALL, VENDOR_ARM, DRIVER_ARM, Family::UNKNOWN, BUG_BROKENBUFFERSTREAM, -1.0, -1.0, true}, {OS_ALL, VENDOR_ARM, DRIVER_ARM, Family::UNKNOWN, BUG_BROKENVSYNC, -1.0, -1.0, true}, {OS_ALL, VENDOR_IMGTEC, DRIVER_IMGTEC, Family::UNKNOWN, BUG_BROKENBUFFERSTREAM, -1.0, -1.0, true}, diff --git a/Source/Core/VideoCommon/DriverDetails.h b/Source/Core/VideoCommon/DriverDetails.h index d9d3f9873b..74a05a5a75 100644 --- a/Source/Core/VideoCommon/DriverDetails.h +++ b/Source/Core/VideoCommon/DriverDetails.h @@ -169,17 +169,6 @@ namespace DriverDetails // the GL_VERSION string, we will have to force vsync to be enabled at all times. BUG_BROKENVSYNC, - // Bug: Adreno has a broken alpha test - // Affected Devices: Adreno - // Started Version: v103 confirmed (v95 potentially as well?) - // Ended Version: -1 - // The Qualcomm video drivers have somehow managed to hit a situation where in a certain situation the alpha test - // always evaluates to false for some reason. - // This has yet to be tracked as to why they fail at such a simple check - // Example alpha test path - // if(( (prev.a > alphaRef.r) && (prev.a > alphaRef.g)) == false) { - BUG_BROKENALPHATEST, - // Bug: Broken lines in geometry shaders // Affected Devices: Mesa r600/radeonsi, Mesa Sandy Bridge // Started Version: -1