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 "VisualBench.h" | 9 #include "VisualBench.h" |
10 | 10 |
| 11 #include "GrContext.h" |
11 #include "ProcStats.h" | 12 #include "ProcStats.h" |
12 #include "SkApplication.h" | 13 #include "SkApplication.h" |
13 #include "SkCanvas.h" | 14 #include "SkCanvas.h" |
14 #include "SkCommandLineFlags.h" | 15 #include "SkCommandLineFlags.h" |
15 #include "SkGraphics.h" | 16 #include "SkGraphics.h" |
16 #include "SkGr.h" | 17 #include "SkGr.h" |
17 #include "SkOSFile.h" | 18 #include "SkOSFile.h" |
18 #include "SkStream.h" | 19 #include "SkStream.h" |
19 #include "Stats.h" | 20 #include "Stats.h" |
20 #include "VisualLightweightBenchModule.h" | 21 #include "VisualLightweightBenchModule.h" |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 } | 139 } |
139 | 140 |
140 void application_term() { | 141 void application_term() { |
141 SkEvent::Term(); | 142 SkEvent::Term(); |
142 } | 143 } |
143 | 144 |
144 SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) { | 145 SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) { |
145 return new VisualBench(hwnd, argc, argv); | 146 return new VisualBench(hwnd, argc, argv); |
146 } | 147 } |
147 | 148 |
OLD | NEW |