Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(938)

Unified Diff: src/gpu/GrPipeline.cpp

Issue 2120153002: Check fIgnoresCoverage in GrPipeline::AreEqual (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrPipeline.cpp
diff --git a/src/gpu/GrPipeline.cpp b/src/gpu/GrPipeline.cpp
index 20089a6a4c6ced2199754d4a6ab100e3fd7da694..7767bf220d4175eede1b43f4b6fca14f747dfb39 100644
--- a/src/gpu/GrPipeline.cpp
+++ b/src/gpu/GrPipeline.cpp
@@ -228,7 +228,8 @@ bool GrPipeline::AreEqual(const GrPipeline& a, const GrPipeline& b,
a.fScissorState != b.fScissorState ||
a.fFlags != b.fFlags ||
a.fStencilSettings != b.fStencilSettings ||
- a.fDrawFace != b.fDrawFace) {
+ a.fDrawFace != b.fDrawFace ||
+ a.fIgnoresCoverage != b.fIgnoresCoverage) {
return false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698