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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 Toggles the visibility of the raster canvas widget. | 134 Toggles the visibility of the raster canvas widget. |
135 */ | 135 */ |
136 void actionRasterWidget(bool isToggled); | 136 void actionRasterWidget(bool isToggled); |
137 | 137 |
138 /** | 138 /** |
139 Toggles the the overdraw visualization on and off | 139 Toggles the the overdraw visualization on and off |
140 */ | 140 */ |
141 void actionOverdrawVizWidget(bool isToggled); | 141 void actionOverdrawVizWidget(bool isToggled); |
142 | 142 |
143 /** | 143 /** |
| 144 Applies the new texture filter override |
| 145 */ |
| 146 void actionTextureFilter(); |
| 147 |
| 148 /** |
144 Rewinds from the current step back to the start of the commands. | 149 Rewinds from the current step back to the start of the commands. |
145 */ | 150 */ |
146 void actionRewind(); | 151 void actionRewind(); |
147 | 152 |
148 /** | 153 /** |
149 Saves the current SKP with all modifications. | 154 Saves the current SKP with all modifications. |
150 */ | 155 */ |
151 void actionSave(); | 156 void actionSave(); |
152 | 157 |
153 /** | 158 /** |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 /** | 333 /** |
329 Render the supplied picture several times tracking the time consumed | 334 Render the supplied picture several times tracking the time consumed |
330 by each command. | 335 by each command. |
331 */ | 336 */ |
332 void run(SkTimedPicture* pict, | 337 void run(SkTimedPicture* pict, |
333 sk_tools::PictureRenderer* renderer, | 338 sk_tools::PictureRenderer* renderer, |
334 int repeats); | 339 int repeats); |
335 }; | 340 }; |
336 | 341 |
337 #endif // SKDEBUGGERUI_H | 342 #endif // SKDEBUGGERUI_H |
OLD | NEW |