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

Side by Side Diff: src/images/SkForceLinking.cpp

Issue 2250683003: Add test for platform encoders, turn off platform encoders by default (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Test on windows Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 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 "SkImageEncoder.h" 8 #include "SkImageEncoder.h"
9 #include "SkForceLinking.h" 9 #include "SkForceLinking.h"
10 10
11 // This method is required to fool the linker into not discarding the pre-main 11 // This method is required to fool the linker into not discarding the pre-main
12 // initialization and registration of the encoder classes. Passing true will 12 // initialization and registration of the encoder classes. Passing true will
13 // cause memory leaks. 13 // cause memory leaks.
14 int SkForceLinking(bool doNotPassTrue) { 14 int SkForceLinking(bool doNotPassTrue) {
15 if (doNotPassTrue) { 15 if (doNotPassTrue) {
16 SkASSERT(false); 16 SkASSERT(false);
17 #if !defined(SK_BUILD_FOR_MAC) && !defined(SK_BUILD_FOR_WIN) && !defined(SK_BUIL D_FOR_IOS) && \ 17 #if defined(SK_HAS_JPEG_LIBRARY) && !defined(SK_USE_CG_ENCODER) && !defined(SK_U SE_WIC_ENCODER)
18 defined(SK_HAS_JPEG_LIBRARY)
19 CreateJPEGImageEncoder(); 18 CreateJPEGImageEncoder();
20 #endif 19 #endif
21 #if defined(SK_HAS_WEBP_LIBRARY) 20 #if defined(SK_HAS_WEBP_LIBRARY) && !defined(SK_USE_CG_ENCODER) && !defined(SK_U SE_WIC_ENCODER)
22 CreateWEBPImageEncoder(); 21 CreateWEBPImageEncoder();
23 #endif 22 #endif
23 #if defined(SK_HAS_PNG_LIBRARY) && !defined(SK_USE_CG_ENCODER) && !defined(SK_US E_WIC_ENCODER)
24 CreatePNGImageEncoder();
25 #endif
24 26
25 // Only link hardware texture codecs on platforms that build them. See i mages.gyp 27 // Only link hardware texture codecs on platforms that build them. See i mages.gyp
26 #ifndef SK_BUILD_FOR_ANDROID_FRAMEWORK 28 #ifndef SK_BUILD_FOR_ANDROID_FRAMEWORK
27 CreateKTXImageEncoder(); 29 CreateKTXImageEncoder();
28 #endif 30 #endif
29 31
30 #if !defined(SK_BUILD_FOR_MAC) && !defined(SK_BUILD_FOR_WIN) && !defined(SK_BUIL D_FOR_IOS) && \ 32 #if defined (SK_USE_CG_ENCODER)
31 defined(SK_HAS_PNG_LIBRARY) 33 CreateImageEncoder_CG(SkImageEncoder::kPNG_Type);
32 CreatePNGImageEncoder();
33 #endif 34 #endif
34 #if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS) 35 #if defined (SK_USE_WIC_ENCODER)
35 CreatePNGImageEncoder_CG(); 36 CreateImageEncoder_WIC(SkImageEncoder::kPNG_Type);
36 #endif
37 #if defined(SK_BUILD_FOR_WIN)
38 CreateImageEncoder_WIC();
39 #endif 37 #endif
40 return -1; 38 return -1;
41 } 39 }
42 return 0; 40 return 0;
43 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698