| 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 #include "SampleApp.h" | 7 #include "SampleApp.h" |
| 8 | 8 |
| 9 #include "SkData.h" | 9 #include "SkData.h" |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| 11 #include "SkDevice.h" | 11 #include "SkDevice.h" |
| 12 #include "SkGraphics.h" | 12 #include "SkGraphics.h" |
| 13 #include "SkImageDecoder.h" | 13 #include "SkImageDecoder.h" |
| 14 #include "SkImageEncoder.h" | 14 #include "SkImageEncoder.h" |
| 15 #include "SkPaint.h" | 15 #include "SkPaint.h" |
| 16 #include "SkPicture.h" | 16 #include "SkPicture.h" |
| 17 #include "SkPictureRecorder.h" |
| 17 #include "SkStream.h" | 18 #include "SkStream.h" |
| 18 #include "SkTSort.h" | 19 #include "SkTSort.h" |
| 19 #include "SkTime.h" | 20 #include "SkTime.h" |
| 20 #include "SkWindow.h" | 21 #include "SkWindow.h" |
| 21 | 22 |
| 22 #include "SampleCode.h" | 23 #include "SampleCode.h" |
| 23 #include "SkTypeface.h" | 24 #include "SkTypeface.h" |
| 24 | 25 |
| 25 #if SK_SUPPORT_GPU | 26 #if SK_SUPPORT_GPU |
| 26 #include "gl/GrGLInterface.h" | 27 #include "gl/GrGLInterface.h" |
| (...skipping 2529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2556 SkGraphics::Init(); | 2557 SkGraphics::Init(); |
| 2557 SkEvent::Init(); | 2558 SkEvent::Init(); |
| 2558 } | 2559 } |
| 2559 | 2560 |
| 2560 // FIXME: this should be in a header | 2561 // FIXME: this should be in a header |
| 2561 void application_term(); | 2562 void application_term(); |
| 2562 void application_term() { | 2563 void application_term() { |
| 2563 SkEvent::Term(); | 2564 SkEvent::Term(); |
| 2564 SkGraphics::Term(); | 2565 SkGraphics::Term(); |
| 2565 } | 2566 } |
| OLD | NEW |