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

Side by Side Diff: include/core/SkImageFilter.h

Issue 1702073002: Move SkTArray to include/private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix kilobench. Created 4 years, 10 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/kilobench.gyp ('k') | include/core/SkString.h » ('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 * 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 #ifndef SkImageFilter_DEFINED 8 #ifndef SkImageFilter_DEFINED
9 #define SkImageFilter_DEFINED 9 #define SkImageFilter_DEFINED
10 10
11 #include "../private/SkTArray.h"
11 #include "../private/SkTemplates.h" 12 #include "../private/SkTemplates.h"
12 #include "../private/SkMutex.h" 13 #include "../private/SkMutex.h"
13 #include "SkFilterQuality.h" 14 #include "SkFilterQuality.h"
14 #include "SkFlattenable.h" 15 #include "SkFlattenable.h"
15 #include "SkMatrix.h" 16 #include "SkMatrix.h"
16 #include "SkRect.h" 17 #include "SkRect.h"
17 #include "SkSurfaceProps.h" 18 #include "SkSurfaceProps.h"
18 #include "SkTArray.h"
19 19
20 class GrFragmentProcessor; 20 class GrFragmentProcessor;
21 class GrTexture; 21 class GrTexture;
22 class SkBaseDevice; 22 class SkBaseDevice;
23 class SkBitmap; 23 class SkBitmap;
24 class SkColorFilter; 24 class SkColorFilter;
25 struct SkIPoint; 25 struct SkIPoint;
26 26
27 /** 27 /**
28 * Base class for image filters. If one is installed in the paint, then 28 * Base class for image filters. If one is installed in the paint, then
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 */ 460 */
461 #define SK_IMAGEFILTER_UNFLATTEN_COMMON(localVar, expectedCount) \ 461 #define SK_IMAGEFILTER_UNFLATTEN_COMMON(localVar, expectedCount) \
462 Common localVar; \ 462 Common localVar; \
463 do { \ 463 do { \
464 if (!localVar.unflatten(buffer, expectedCount)) { \ 464 if (!localVar.unflatten(buffer, expectedCount)) { \
465 return NULL; \ 465 return NULL; \
466 } \ 466 } \
467 } while (0) 467 } while (0)
468 468
469 #endif 469 #endif
OLDNEW
« no previous file with comments | « gyp/kilobench.gyp ('k') | include/core/SkString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698