| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Skia | 2 * Copyright 2011 Skia |
| 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 SampleApp_DEFINED | 8 #ifndef SampleApp_DEFINED |
| 9 #define SampleApp_DEFINED | 9 #define SampleApp_DEFINED |
| 10 | 10 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 SkScalar fZoomScale; | 173 SkScalar fZoomScale; |
| 174 | 174 |
| 175 DeviceType fDeviceType; | 175 DeviceType fDeviceType; |
| 176 DeviceManager* fDevManager; | 176 DeviceManager* fDevManager; |
| 177 | 177 |
| 178 bool fSaveToPdf; | 178 bool fSaveToPdf; |
| 179 bool fSaveToSKP; | 179 bool fSaveToSKP; |
| 180 SkAutoTUnref<SkDocument> fPDFDocument; | 180 SkAutoTUnref<SkDocument> fPDFDocument; |
| 181 | 181 |
| 182 bool fUseClip; | 182 bool fUseClip; |
| 183 bool fUseMPD; | 183 bool fUsePicture; |
| 184 bool fAnimating; | 184 bool fAnimating; |
| 185 bool fRotate; | 185 bool fRotate; |
| 186 bool fPerspAnim; | 186 bool fPerspAnim; |
| 187 bool fRequestGrabImage; | 187 bool fRequestGrabImage; |
| 188 bool fMeasureFPS; | 188 bool fMeasureFPS; |
| 189 WallTimer fTimer; | 189 WallTimer fTimer; |
| 190 double fMeasureFPS_Time; | 190 double fMeasureFPS_Time; |
| 191 bool fMagnify; | 191 bool fMagnify; |
| 192 int fTilingMode; | 192 int fTilingMode; |
| 193 | 193 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 void postAnimatingEvent(); | 229 void postAnimatingEvent(); |
| 230 int findByTitle(const char*); | 230 int findByTitle(const char*); |
| 231 void listTitles(); | 231 void listTitles(); |
| 232 SkSize tileSize() const; | 232 SkSize tileSize() const; |
| 233 bool sendAnimatePulse(); | 233 bool sendAnimatePulse(); |
| 234 | 234 |
| 235 typedef SkOSWindow INHERITED; | 235 typedef SkOSWindow INHERITED; |
| 236 }; | 236 }; |
| 237 | 237 |
| 238 #endif | 238 #endif |
| OLD | NEW |