Skip to content

Commit df9ed89

Browse files
johnstiles-googleSkia Commit-Bot
authored and
Skia Commit-Bot
committed
Fix logic error in GrProcessorSet::dumpProcessors.
I broke this during the refactor, at http://review.skia.org/304857 Change-Id: I9f16acd05fbb3767eed59810a1b1a8a110ce29d4 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/309878 Commit-Queue: Brian Salomon <[email protected]> Reviewed-by: Brian Salomon <[email protected]> Auto-Submit: John Stiles <[email protected]>
1 parent fec8e60 commit df9ed89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gpu/GrProcessorSet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ SkString GrProcessorSet::dumpProcessors() const {
5858
} else {
5959
result.append("No color fragment processor.\n");
6060
}
61-
if (this->hasColorFragmentProcessor()) {
61+
if (this->hasCoverageFragmentProcessor()) {
6262
result.append("Coverage Fragment Processor:\n");
6363
result += this->coverageFragmentProcessor()->dumpTreeInfo();
6464
} else {

0 commit comments

Comments
 (0)