| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 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 #ifndef SkWindow_DEFINED | 8 #ifndef SkWindow_DEFINED |
| 9 #define SkWindow_DEFINED | 9 #define SkWindow_DEFINED |
| 10 | 10 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 bool fWaitingOnInval; | 111 bool fWaitingOnInval; |
| 112 | 112 |
| 113 SkString fTitle; | 113 SkString fTitle; |
| 114 SkMatrix fMatrix; | 114 SkMatrix fMatrix; |
| 115 | 115 |
| 116 typedef SkView INHERITED; | 116 typedef SkView INHERITED; |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 //////////////////////////////////////////////////////////////////////////////// | 119 //////////////////////////////////////////////////////////////////////////////// |
| 120 | 120 |
| 121 #if defined(SK_BUILD_FOR_MAC) | 121 #if defined(SK_USE_SDL) |
| 122 #include "SkOSWindow_SDL.h" |
| 123 #elif defined(SK_BUILD_FOR_MAC) |
| 122 #include "SkOSWindow_Mac.h" | 124 #include "SkOSWindow_Mac.h" |
| 123 #elif defined(SK_BUILD_FOR_WIN) | 125 #elif defined(SK_BUILD_FOR_WIN) |
| 124 #include "SkOSWindow_Win.h" | 126 #include "SkOSWindow_Win.h" |
| 125 #elif defined(SK_BUILD_FOR_ANDROID) | 127 #elif defined(SK_BUILD_FOR_ANDROID) |
| 126 #include "SkOSWindow_Android.h" | 128 #include "SkOSWindow_Android.h" |
| 127 #elif defined(SK_BUILD_FOR_UNIX) | 129 #elif defined(SK_BUILD_FOR_UNIX) |
| 128 #include "SkOSWindow_Unix.h" | 130 #include "SkOSWindow_Unix.h" |
| 129 #elif defined(SK_BUILD_FOR_SDL) | |
| 130 #include "SkOSWindow_SDL.h" | |
| 131 #elif defined(SK_BUILD_FOR_IOS) | 131 #elif defined(SK_BUILD_FOR_IOS) |
| 132 #include "SkOSWindow_iOS.h" | 132 #include "SkOSWindow_iOS.h" |
| 133 #endif | 133 #endif |
| 134 | 134 |
| 135 #endif | 135 #endif |
| OLD | NEW |