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

Side by Side Diff: src/core/SkClipStack.cpp

Issue 839883003: Add repro GM for GPU clipped-AA vs. non-AA drawRect discrepancy (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix nuisance change Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « gyp/gmslides.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkClipStack.h" 9 #include "SkClipStack.h"
10 #include "SkPath.h" 10 #include "SkPath.h"
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 901
902 void SkClipStack::dump() const { 902 void SkClipStack::dump() const {
903 B2TIter iter(*this); 903 B2TIter iter(*this);
904 const Element* e; 904 const Element* e;
905 while ((e = iter.next())) { 905 while ((e = iter.next())) {
906 e->dump(); 906 e->dump();
907 SkDebugf("\n"); 907 SkDebugf("\n");
908 } 908 }
909 } 909 }
910 #endif 910 #endif
OLDNEW
« no previous file with comments | « gyp/gmslides.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698