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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 DeviceManager* fDevManager; | 174 DeviceManager* fDevManager; |
175 | 175 |
176 bool fSaveToPdf; | 176 bool fSaveToPdf; |
177 SkCanvas* fPdfCanvas; | 177 SkCanvas* fPdfCanvas; |
178 SkData* fPDFData; | 178 SkData* fPDFData; |
179 | 179 |
180 bool fUseClip; | 180 bool fUseClip; |
181 bool fNClip; | 181 bool fNClip; |
182 bool fAnimating; | 182 bool fAnimating; |
183 bool fRotate; | 183 bool fRotate; |
| 184 SkScalar fRotateAnimTime; |
184 bool fPerspAnim; | 185 bool fPerspAnim; |
185 SkScalar fPerspAnimTime; | 186 SkScalar fPerspAnimTime; |
186 bool fRequestGrabImage; | 187 bool fRequestGrabImage; |
187 bool fMeasureFPS; | 188 bool fMeasureFPS; |
188 SkMSec fMeasureFPS_Time; | 189 SkMSec fMeasureFPS_Time; |
189 SkMSec fMeasureFPS_StartTime; | 190 SkMSec fMeasureFPS_StartTime; |
190 bool fMagnify; | 191 bool fMagnify; |
191 SkISize fTileCount; | 192 SkISize fTileCount; |
192 | 193 |
193 | 194 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 void updateMatrix(); | 237 void updateMatrix(); |
237 void postAnimatingEvent(); | 238 void postAnimatingEvent(); |
238 void installDrawFilter(SkCanvas*); | 239 void installDrawFilter(SkCanvas*); |
239 int findByTitle(const char*); | 240 int findByTitle(const char*); |
240 void listTitles(); | 241 void listTitles(); |
241 | 242 |
242 typedef SkOSWindow INHERITED; | 243 typedef SkOSWindow INHERITED; |
243 }; | 244 }; |
244 | 245 |
245 #endif | 246 #endif |
OLD | NEW |