| 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 |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 | 293 |
| 294 void application_term() { | 294 void application_term() { |
| 295 SkEvent::Term(); | 295 SkEvent::Term(); |
| 296 SkGraphics::Term(); | 296 SkGraphics::Term(); |
| 297 } | 297 } |
| 298 | 298 |
| 299 SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) { | 299 SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) { |
| 300 return new VisualBench(hwnd, argc, argv); | 300 return new VisualBench(hwnd, argc, argv); |
| 301 } | 301 } |
| 302 | 302 |
| OLD | NEW |