OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #ifndef SKDEBUGGERUI_H | 9 #ifndef SKDEBUGGERUI_H |
10 #define SKDEBUGGERUI_H | 10 #define SKDEBUGGERUI_H |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 | 350 |
351 /** | 351 /** |
352 Fills in the clip stack pane with text | 352 Fills in the clip stack pane with text |
353 */ | 353 */ |
354 void setupClipStackText(); | 354 void setupClipStackText(); |
355 | 355 |
356 /** | 356 /** |
357 Render the supplied picture several times tracking the time consumed | 357 Render the supplied picture several times tracking the time consumed |
358 by each command. | 358 by each command. |
359 */ | 359 */ |
360 void run(SkTimedPicture* pict, | 360 void run(const SkPicture* pict, |
361 sk_tools::PictureRenderer* renderer, | 361 sk_tools::PictureRenderer* renderer, |
362 int repeats); | 362 int repeats); |
363 }; | 363 }; |
364 | 364 |
365 #endif // SKDEBUGGERUI_H | 365 #endif // SKDEBUGGERUI_H |
OLD | NEW |