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

Side by Side Diff: tools/pinspect.cpp

Issue 1927583002: Repurpose Release_Developer BUILDTYPE and remove SK_DEVELOPER. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix typo 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
« src/core/SkResourceCache.cpp ('K') | « tests/RuntimeConfigTest.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 2012 Google Inc. 2 * Copyright 2012 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 "SkBitmap.h" 8 #include "SkBitmap.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkGraphics.h" 10 #include "SkGraphics.h"
(...skipping 27 matching lines...) Expand all
38 SkDebugf("Could not create SkPicture: %s\n", path); 38 SkDebugf("Could not create SkPicture: %s\n", path);
39 return nullptr; 39 return nullptr;
40 } 40 }
41 printf("picture cullRect: [%f %f %f %f]\n", 41 printf("picture cullRect: [%f %f %f %f]\n",
42 pic->cullRect().fLeft, pic->cullRect().fTop, 42 pic->cullRect().fLeft, pic->cullRect().fTop,
43 pic->cullRect().fRight, pic->cullRect().fBottom); 43 pic->cullRect().fRight, pic->cullRect().fBottom);
44 return pic; 44 return pic;
45 } 45 }
46 46
47 static void dumpOps(SkPicture* pic) { 47 static void dumpOps(SkPicture* pic) {
48 #ifdef SK_DEVELOPER 48 #ifdef SK_DEBUG
49 SkDebugfDumper dumper; 49 SkDebugfDumper dumper;
50 SkDumpCanvas canvas(&dumper); 50 SkDumpCanvas canvas(&dumper);
51 canvas.drawPicture(pic); 51 canvas.drawPicture(pic);
52 #else 52 #else
53 printf("SK_DEVELOPER mode not enabled\n"); 53 printf("SK_DEBUG mode not enabled\n");
54 #endif 54 #endif
55 } 55 }
56 56
57 int tool_main(int argc, char** argv); 57 int tool_main(int argc, char** argv);
58 int tool_main(int argc, char** argv) { 58 int tool_main(int argc, char** argv) {
59 SkAutoGraphics ag; 59 SkAutoGraphics ag;
60 if (argc < 2) { 60 if (argc < 2) {
61 printf("Usage: pinspect [--dump-ops] filename [filename ...]\n"); 61 printf("Usage: pinspect [--dump-ops] filename [filename ...]\n");
62 return 1; 62 return 1;
63 } 63 }
(...skipping 16 matching lines...) Expand all
80 } 80 }
81 } 81 }
82 return 0; 82 return 0;
83 } 83 }
84 84
85 #if !defined SK_BUILD_FOR_IOS 85 #if !defined SK_BUILD_FOR_IOS
86 int main(int argc, char * const argv[]) { 86 int main(int argc, char * const argv[]) {
87 return tool_main(argc, (char**) argv); 87 return tool_main(argc, (char**) argv);
88 } 88 }
89 #endif 89 #endif
OLDNEW
« src/core/SkResourceCache.cpp ('K') | « tests/RuntimeConfigTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698