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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
143 | 143 |
144 /** | 144 /** |
145 Toggles the the overdraw visualization on and off | 145 Toggles the the overdraw visualization on and off |
146 */ | 146 */ |
147 void actionOverdrawVizWidget(bool isToggled); | 147 void actionOverdrawVizWidget(bool isToggled); |
148 | 148 |
149 /** | 149 /** |
150 Toggles the the mega visualization on and off | 150 Toggles the the mega visualization on and off |
151 */ | 151 */ |
152 void actionMegaVizWidget(bool isToggled); | 152 void actionMegaVizWidget(bool isToggled); |
153 | 153 |
robertphillips
2014/05/16 12:21:24
comment?
caryclark
2014/05/16 13:49:02
Micro comments are fragile, but that's the existin
| |
154 void actionPathOpsWidget(bool ); | |
155 | |
154 /** | 156 /** |
155 Applies the new texture filter override | 157 Applies the new texture filter override |
156 */ | 158 */ |
157 void actionTextureFilter(); | 159 void actionTextureFilter(); |
158 | 160 |
159 /** | 161 /** |
160 Rewinds from the current step back to the start of the commands. | 162 Rewinds from the current step back to the start of the commands. |
161 */ | 163 */ |
162 void actionRewind(); | 164 void actionRewind(); |
163 | 165 |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
335 | 337 |
336 /** | 338 /** |
337 Populates the combo box widget with the vector of strings passed in. | 339 Populates the combo box widget with the vector of strings passed in. |
338 */ | 340 */ |
339 void setupComboBox(SkTArray<SkString>* command); | 341 void setupComboBox(SkTArray<SkString>* command); |
340 | 342 |
341 /** | 343 /** |
342 Fills in the overview pane with text | 344 Fills in the overview pane with text |
343 */ | 345 */ |
344 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i nt numRuns); | 346 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i nt numRuns); |
345 | 347 |
robertphillips
2014/05/16 12:21:24
comment?
caryclark
2014/05/16 13:49:02
Done.
| |
348 void setupClipStackText(); | |
349 | |
346 /** | 350 /** |
347 Render the supplied picture several times tracking the time consumed | 351 Render the supplied picture several times tracking the time consumed |
348 by each command. | 352 by each command. |
349 */ | 353 */ |
350 void run(SkTimedPicture* pict, | 354 void run(SkTimedPicture* pict, |
351 sk_tools::PictureRenderer* renderer, | 355 sk_tools::PictureRenderer* renderer, |
352 int repeats); | 356 int repeats); |
353 }; | 357 }; |
354 | 358 |
355 #endif // SKDEBUGGERUI_H | 359 #endif // SKDEBUGGERUI_H |
OLD | NEW |