| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 #include "SampleApp.h" | 8 #include "SampleApp.h" |
| 9 | 9 |
| 10 #include "OverView.h" | 10 #include "OverView.h" |
| (...skipping 2379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2390 // setenv("ANDROID_ROOT", "../../../data", 0); | 2390 // setenv("ANDROID_ROOT", "../../../data", 0); |
| 2391 #ifdef SK_BUILD_FOR_MAC | 2391 #ifdef SK_BUILD_FOR_MAC |
| 2392 setenv("ANDROID_ROOT", "/android/device/data", 0); | 2392 setenv("ANDROID_ROOT", "/android/device/data", 0); |
| 2393 #endif | 2393 #endif |
| 2394 SkGraphics::Init(); | 2394 SkGraphics::Init(); |
| 2395 SkEvent::Init(); | 2395 SkEvent::Init(); |
| 2396 } | 2396 } |
| 2397 | 2397 |
| 2398 void application_term() { | 2398 void application_term() { |
| 2399 SkEvent::Term(); | 2399 SkEvent::Term(); |
| 2400 SkGraphics::Term(); | |
| 2401 } | 2400 } |
| OLD | NEW |