ccpr: Unblacklist Radeon in MSAA mode

Bug: skia:
Change-Id: I9e0bf68f9c684e7e7ffa293312f9d79e5bcb2d87
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/229014
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
This commit is contained in:
Chris Dalton 2019-07-22 15:07:12 -04:00 committed by Skia Commit-Bot
parent b7dad44040
commit 76da035ae9

View File

@ -3261,8 +3261,7 @@ void GrGLCaps::applyDriverCorrectnessWorkarounds(const GrGLContextInfo& ctxInfo,
// Temporarily disable the MSAA implementation of CCPR on various platforms while we work out
// specific issues.
if (kATI_GrGLVendor == ctxInfo.vendor() || // Radeon hts an internal compiler error.
kQualcomm_GrGLVendor == ctxInfo.vendor() || // Pixel2 crashes in nanobench.
if (kQualcomm_GrGLVendor == ctxInfo.vendor() || // Pixel2 crashes in nanobench.
kImagination_GrGLVendor == ctxInfo.vendor() /* PowerVR doesn't draw curves */) {
fDriverBlacklistMSAACCPR = true;
}