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

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

Issue 1934313002: move colorshader into its own .cpp, add color4f variant (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: register for serialization, amend GM view for future picture expansion Created 4 years, 7 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/core/SkColorShader.cpp ('k') | src/core/SkShader.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 * Copyright 2016 Google Inc. 2 * Copyright 2016 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 "SkBitmapProcShader.h" 8 #include "SkBitmapProcShader.h"
9 #include "SkColorFilter.h" 9 #include "SkColorFilter.h"
10 #include "SkColorFilterShader.h" 10 #include "SkColorFilterShader.h"
(...skipping 14 matching lines...) Expand all
25 * Registers all of the required effects subclasses for picture deserialization . 25 * Registers all of the required effects subclasses for picture deserialization .
26 * 26 *
27 * Optional subclasses (e.g. Blur) should be registered in the ports/ version o f this file, 27 * Optional subclasses (e.g. Blur) should be registered in the ports/ version o f this file,
28 * inside the InitEffects() method. 28 * inside the InitEffects() method.
29 */ 29 */
30 void SkFlattenable::PrivateInitializer::InitCore() { 30 void SkFlattenable::PrivateInitializer::InitCore() {
31 // Shader 31 // Shader
32 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkBitmapProcShader) 32 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkBitmapProcShader)
33 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkColorFilterShader) 33 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkColorFilterShader)
34 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkColorShader) 34 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkColorShader)
35 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkColor4Shader)
35 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposeShader) 36 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposeShader)
36 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkEmptyShader) 37 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkEmptyShader)
37 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkImageShader) 38 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkImageShader)
38 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkLocalMatrixShader) 39 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkLocalMatrixShader)
39 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkPictureShader) 40 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkPictureShader)
40 41
41 // PathEffect 42 // PathEffect
42 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposePathEffect) 43 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposePathEffect)
43 44
44 // ImageFilter 45 // ImageFilter
45 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMatrixImageFilter) 46 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkMatrixImageFilter)
46 47
47 // ColorFilter 48 // ColorFilter
48 SkColorFilter::InitializeFlattenables(); 49 SkColorFilter::InitializeFlattenables();
49 50
50 // Xfermode 51 // Xfermode
51 SkXfermode::InitializeFlattenables(); 52 SkXfermode::InitializeFlattenables();
52 53
53 // Drawable 54 // Drawable
54 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkRecordedDrawable) 55 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkRecordedDrawable)
55 56
56 // Now initialize any optional/additional effects (implemented in src/ports) 57 // Now initialize any optional/additional effects (implemented in src/ports)
57 InitEffects(); 58 InitEffects();
58 }; 59 };
59 60
60 void SkFlattenable::InitializeFlattenablesIfNeeded() { 61 void SkFlattenable::InitializeFlattenablesIfNeeded() {
61 static SkOnce once; 62 static SkOnce once;
62 once(SkFlattenable::PrivateInitializer::InitCore); 63 once(SkFlattenable::PrivateInitializer::InitCore);
63 } 64 }
OLDNEW
« no previous file with comments | « src/core/SkColorShader.cpp ('k') | src/core/SkShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698