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

Side by Side Diff: tools/pinspect.cpp

Issue 313613004: Alter SkCanvas::drawPicture (devirtualize, take const SkPicture, take pointer) (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add staging entry point for Chromium and Android Created 6 years, 6 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
« include/core/SkCanvas.h ('K') | « tools/lua/lua_pictures.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 "LazyDecodeBitmap.h" 8 #include "LazyDecodeBitmap.h"
9 #include "SkBitmap.h" 9 #include "SkBitmap.h"
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 30 matching lines...) Expand all
41 return NULL; 41 return NULL;
42 } 42 }
43 printf("picture size:[%d %d]\n", pic->width(), pic->height()); 43 printf("picture size:[%d %d]\n", pic->width(), pic->height());
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_DEVELOPER
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_DEVELOPER 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");
(...skipping 18 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
« include/core/SkCanvas.h ('K') | « tools/lua/lua_pictures.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698