Skip to content

Commit

Permalink
Revert "ccpr: Unblacklist Sandy Bridge/Bay Trail on Mesa"
Browse files Browse the repository at this point in the history
This reverts commit c4d3ded.

Reason for revert: http://skbug.com/8171

Bug: skia:8171

Original change's description:
> ccpr: Unblacklist Sandy Bridge/Bay Trail on Mesa
> 
> Bug: skia:8162
> Change-Id: I9fb35f8bb80e659ca9d9862fd1fc69b7d79c5eef
> Reviewed-on: https://skia-review.googlesource.com/c/159400
> Reviewed-by: Brian Salomon <bsalomon@google.com>
> Commit-Queue: Chris Dalton <csmartdalton@google.com>

TBR=bsalomon@google.com,csmartdalton@google.com

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug: skia:8162
Change-Id: I12680d929511d8c2ae3a565b400974a60a6f90fa
Reviewed-on: https://skia-review.googlesource.com/c/168360
Reviewed-by: Chris Dalton <csmartdalton@google.com>
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
  • Loading branch information
csmartdalton86 authored and Skia Commit-Bot committed Nov 5, 2018
1 parent 1d5762f commit 32262da
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/gpu/gl/GrGLCaps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2715,6 +2715,14 @@ void GrGLCaps::applyDriverCorrectnessWorkarounds(const GrGLContextInfo& ctxInfo,
// On Nexus Player we get incorrect filter modes when using sampler objects.
fSamplerObjectSupport = false;
}

// CCPR edge AA is busted on Mesa, Sandy Bridge/Bay Trail.
// http://skbug.com/8162
if (kMesa_GrGLDriver == ctxInfo.driver() &&
(kIntelSandyBridge_GrGLRenderer == ctxInfo.renderer() ||
kIntelBayTrail_GrGLRenderer == ctxInfo.renderer())) {
fBlacklistCoverageCounting = true;
}
}

void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
Expand Down

0 comments on commit 32262da

Please sign in to comment.