OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 | 8 |
9 #include "VisualLightweightBenchModule.h" | 9 #include "VisualLightweightBenchModule.h" |
10 | 10 |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 this->postDraw(canvas); | 247 this->postDraw(canvas); |
248 this->nextState(kPreWarmLoopsPerCanvasPreDraw_State); | 248 this->nextState(kPreWarmLoopsPerCanvasPreDraw_State); |
249 } else { | 249 } else { |
250 this->nextState(kPreWarmTimingPerCanvasPreDraw_State); | 250 this->nextState(kPreWarmTimingPerCanvasPreDraw_State); |
251 } | 251 } |
252 this->resetTimingState(); | 252 this->resetTimingState(); |
253 } else { | 253 } else { |
254 fCurrentFrame++; | 254 fCurrentFrame++; |
255 } | 255 } |
256 } | 256 } |
| 257 |
| 258 bool VisualLightweightBenchModule::onHandleChar(SkUnichar c) { |
| 259 return true; |
| 260 } |
OLD | NEW |