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

Side by Side Diff: src/utils/SkDeferredCanvas.cpp

Issue 1265033002: IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase (a file was deleted). Created 5 years, 4 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 | « src/svg/SkSVGDevice.cpp ('k') | src/utils/android/SkAndroidSDKCanvas.cpp » ('j') | 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 /* 2 /*
3 * Copyright 2013 Google Inc. 3 * Copyright 2013 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "SkDeferredCanvas.h" 9 #include "SkDeferredCanvas.h"
10 10
11 #include "SkChunkAlloc.h" 11 #include "SkChunkAlloc.h"
12 #include "SkClipStack.h"
12 #include "SkColorFilter.h" 13 #include "SkColorFilter.h"
13 #include "SkDevice.h" 14 #include "SkDevice.h"
14 #include "SkDrawFilter.h" 15 #include "SkDrawFilter.h"
15 #include "SkGPipe.h" 16 #include "SkGPipe.h"
16 #include "SkImage_Base.h" 17 #include "SkImage_Base.h"
17 #include "SkPaint.h" 18 #include "SkPaint.h"
18 #include "SkPaintPriv.h" 19 #include "SkPaintPriv.h"
19 #include "SkRRect.h" 20 #include "SkRRect.h"
20 #include "SkShader.h" 21 #include "SkShader.h"
21 #include "SkSurface.h" 22 #include "SkSurface.h"
(...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 SkDrawFilter* SkDeferredCanvas::setDrawFilter(SkDrawFilter* filter) { 1018 SkDrawFilter* SkDeferredCanvas::setDrawFilter(SkDrawFilter* filter) {
1018 this->drawingCanvas()->setDrawFilter(filter); 1019 this->drawingCanvas()->setDrawFilter(filter);
1019 this->INHERITED::setDrawFilter(filter); 1020 this->INHERITED::setDrawFilter(filter);
1020 this->recordedDrawCommand(); 1021 this->recordedDrawCommand();
1021 return filter; 1022 return filter;
1022 } 1023 }
1023 1024
1024 SkCanvas* SkDeferredCanvas::canvasForDrawIter() { 1025 SkCanvas* SkDeferredCanvas::canvasForDrawIter() {
1025 return this->drawingCanvas(); 1026 return this->drawingCanvas();
1026 } 1027 }
OLDNEW
« no previous file with comments | « src/svg/SkSVGDevice.cpp ('k') | src/utils/android/SkAndroidSDKCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698