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

Side by Side Diff: gm/gmmain.cpp

Issue 670453002: Remove image decoder and encoder autoregistration (Closed) Base URL: https://skia.googlesource.com/skia.git@separate-image-decoder-01-skpicture
Patch Set: Created 6 years, 1 month 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 | « experimental/nanomsg/picture_demo.cpp ('k') | gyp/images.gyp » ('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 /* 8 /*
9 * Code for the "gm" (Golden Master) rendering comparison tool. 9 * Code for the "gm" (Golden Master) rendering comparison tool.
10 * 10 *
(...skipping 11 matching lines...) Expand all
22 #include "Resources.h" 22 #include "Resources.h"
23 #include "SamplePipeControllers.h" 23 #include "SamplePipeControllers.h"
24 #include "SkBitmap.h" 24 #include "SkBitmap.h"
25 #include "SkColorPriv.h" 25 #include "SkColorPriv.h"
26 #include "SkCommandLineFlags.h" 26 #include "SkCommandLineFlags.h"
27 #include "SkData.h" 27 #include "SkData.h"
28 #include "SkDeferredCanvas.h" 28 #include "SkDeferredCanvas.h"
29 #include "SkDevice.h" 29 #include "SkDevice.h"
30 #include "SkDocument.h" 30 #include "SkDocument.h"
31 #include "SkDrawFilter.h" 31 #include "SkDrawFilter.h"
32 #include "SkForceLinking.h"
33 #include "SkGPipe.h" 32 #include "SkGPipe.h"
34 #include "SkGraphics.h" 33 #include "SkGraphics.h"
35 #include "SkImageDecoder.h" 34 #include "SkImageDecoder.h"
36 #include "SkImageEncoder.h" 35 #include "SkImageEncoder.h"
37 #include "SkJSONCPP.h" 36 #include "SkJSONCPP.h"
38 #include "SkOSFile.h" 37 #include "SkOSFile.h"
39 #include "SkPDFRasterizer.h" 38 #include "SkPDFRasterizer.h"
40 #include "SkPicture.h" 39 #include "SkPicture.h"
41 #include "SkPictureRecorder.h" 40 #include "SkPictureRecorder.h"
42 #include "SkRefCnt.h" 41 #include "SkRefCnt.h"
43 #include "SkScalar.h" 42 #include "SkScalar.h"
44 #include "SkStream.h" 43 #include "SkStream.h"
45 #include "SkString.h" 44 #include "SkString.h"
46 #include "SkSurface.h" 45 #include "SkSurface.h"
47 #include "SkTArray.h" 46 #include "SkTArray.h"
48 #include "SkTDict.h" 47 #include "SkTDict.h"
49 48
50 #ifdef SK_DEBUG 49 #ifdef SK_DEBUG
51 static const bool kDebugOnly = true; 50 static const bool kDebugOnly = true;
52 #define GR_DUMP_FONT_CACHE 0 51 #define GR_DUMP_FONT_CACHE 0
53 #else 52 #else
54 static const bool kDebugOnly = false; 53 static const bool kDebugOnly = false;
55 #endif 54 #endif
56 55
57 __SK_FORCE_IMAGE_DECODER_LINKING;
58
59 #if SK_SUPPORT_GPU 56 #if SK_SUPPORT_GPU
60 #include "GrContextFactory.h" 57 #include "GrContextFactory.h"
61 #include "SkGpuDevice.h" 58 #include "SkGpuDevice.h"
62 typedef GrContextFactory::GLContextType GLContextType; 59 typedef GrContextFactory::GLContextType GLContextType;
63 #define DEFAULT_CACHE_VALUE -1 60 #define DEFAULT_CACHE_VALUE -1
64 static int gGpuCacheSizeBytes; 61 static int gGpuCacheSizeBytes;
65 static int gGpuCacheSizeCount; 62 static int gGpuCacheSizeCount;
66 #else 63 #else
67 class GrContextFactory; 64 class GrContextFactory;
68 class GrContext; 65 class GrContext;
(...skipping 2421 matching lines...) Expand 10 before | Expand all | Expand 10 after
2490 if (FLAGS_forceBWtext) { 2487 if (FLAGS_forceBWtext) {
2491 canvas->setDrawFilter(SkNEW(BWTextDrawFilter))->unref(); 2488 canvas->setDrawFilter(SkNEW(BWTextDrawFilter))->unref();
2492 } 2489 }
2493 } 2490 }
2494 2491
2495 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) 2492 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
2496 int main(int argc, char * const argv[]) { 2493 int main(int argc, char * const argv[]) {
2497 return tool_main(argc, (char**) argv); 2494 return tool_main(argc, (char**) argv);
2498 } 2495 }
2499 #endif 2496 #endif
OLDNEW
« no previous file with comments | « experimental/nanomsg/picture_demo.cpp ('k') | gyp/images.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698