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

Side by Side Diff: src/ports/SkGlobalInitialization_default.cpp

Issue 2094083002: remove DownSample imagefilter (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « src/effects/SkTestImageFilters.cpp ('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 "Sk1DPathEffect.h" 8 #include "Sk1DPathEffect.h"
9 #include "Sk2DPathEffect.h" 9 #include "Sk2DPathEffect.h"
10 #include "SkAlphaThresholdFilter.h" 10 #include "SkAlphaThresholdFilter.h"
(...skipping 23 matching lines...) Expand all
34 #include "SkLumaColorFilter.h" 34 #include "SkLumaColorFilter.h"
35 #include "SkMagnifierImageFilter.h" 35 #include "SkMagnifierImageFilter.h"
36 #include "SkMatrixConvolutionImageFilter.h" 36 #include "SkMatrixConvolutionImageFilter.h"
37 #include "SkMergeImageFilter.h" 37 #include "SkMergeImageFilter.h"
38 #include "SkMorphologyImageFilter.h" 38 #include "SkMorphologyImageFilter.h"
39 #include "SkOffsetImageFilter.h" 39 #include "SkOffsetImageFilter.h"
40 #include "SkPaintImageFilter.h" 40 #include "SkPaintImageFilter.h"
41 #include "SkPerlinNoiseShader.h" 41 #include "SkPerlinNoiseShader.h"
42 #include "SkPictureImageFilter.h" 42 #include "SkPictureImageFilter.h"
43 #include "SkTableColorFilter.h" 43 #include "SkTableColorFilter.h"
44 #include "SkTestImageFilters.h"
45 #include "SkTileImageFilter.h" 44 #include "SkTileImageFilter.h"
46 #include "SkXfermodeImageFilter.h" 45 #include "SkXfermodeImageFilter.h"
47 46
48 // Security note: 47 // Security note:
49 // 48 //
50 // As new subclasses are added here, they should be reviewed by chrome security before they 49 // As new subclasses are added here, they should be reviewed by chrome security before they
51 // support deserializing cross-process: chrome-security@google.com. SampleFilter Fuzz.cpp should 50 // support deserializing cross-process: chrome-security@google.com. SampleFilter Fuzz.cpp should
52 // also be amended to exercise the new subclass. 51 // also be amended to exercise the new subclass.
53 // 52 //
54 // See SkReadBuffer::isCrossProcess() and SkPicture::PictureIOSecurityPrecaution sEnabled() 53 // See SkReadBuffer::isCrossProcess() and SkPicture::PictureIOSecurityPrecaution sEnabled()
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkPaintImageFilter) 111 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkPaintImageFilter)
113 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkPictureImageFilter) 112 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkPictureImageFilter)
114 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkTileImageFilter) 113 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkTileImageFilter)
115 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkXfermodeImageFilter) 114 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkXfermodeImageFilter)
116 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMagnifierImageFilter) 115 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMagnifierImageFilter)
117 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMatrixConvolutionImageFilter) 116 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMatrixConvolutionImageFilter)
118 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkOffsetImageFilter) 117 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkOffsetImageFilter)
119 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposeImageFilter) 118 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposeImageFilter)
120 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMergeImageFilter) 119 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMergeImageFilter)
121 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkColorFilterImageFilter) 120 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkColorFilterImageFilter)
122 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkDownSampleImageFilter)
123 SkLightingImageFilter::InitializeFlattenables(); 121 SkLightingImageFilter::InitializeFlattenables();
124 } 122 }
OLDNEW
« no previous file with comments | « src/effects/SkTestImageFilters.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698