Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 083a75d

Browse files
csmartdalton86Skia Commit-Bot
authored andcommitted
Revert "Reland "ccpr: Unblacklist Qualcomm with msaa""
This reverts commit 7efe9e8. Reason for revert: Pixel crash repro identified Original change's description: > Reland "ccpr: Unblacklist Qualcomm with msaa" > > This is a reland of 3f55695 > > Original change's description: > > ccpr: Unblacklist Qualcomm with msaa > > > > Bug: skia: > > Change-Id: I1ab69fe87136955b01a329675f1d0affec3700ec > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/245530 > > Commit-Queue: Chris Dalton <csmartdalton@google.com> > > Reviewed-by: Brian Salomon <bsalomon@google.com> > > Bug: skia: > Change-Id: Icbd0ad7546bc089c538afafed515b22b05130e47 > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/248702 > Reviewed-by: Ravi Mistry <rmistry@google.com> > Commit-Queue: Chris Dalton <csmartdalton@google.com> TBR=bsalomon@google.com,rmistry@google.com,csmartdalton@google.com Change-Id: I0e8df5691a787aa8dade7c6386078c5ead746f6d No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia: Reviewed-on: https://skia-review.googlesource.com/c/skia/+/248911 Reviewed-by: Chris Dalton <csmartdalton@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
1 parent 7274850 commit 083a75d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/gpu/gl/GrGLCaps.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3609,7 +3609,8 @@ void GrGLCaps::applyDriverCorrectnessWorkarounds(const GrGLContextInfo& ctxInfo,
36093609
// Temporarily disable the MSAA implementation of CCPR on various platforms while we work out
36103610
// specific issues.
36113611
if (kATI_GrGLVendor == ctxInfo.vendor() || // Radeon drops stencil draws that use sample mask.
3612-
kImagination_GrGLVendor == ctxInfo.vendor() /* PowerVR produces flaky results on Gold. */) {
3612+
kImagination_GrGLVendor == ctxInfo.vendor() || // PowerVR produces flaky results on Gold.
3613+
kQualcomm_GrGLVendor == ctxInfo.vendor() /* Pixel2 crashes in nanobench. */) {
36133614
fDriverBlacklistMSAACCPR = true;
36143615
}
36153616

0 commit comments

Comments
 (0)