| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 bool zoomIn(); | 236 bool zoomIn(); |
| 237 bool zoomOut(); | 237 bool zoomOut(); |
| 238 void updatePointer(int x, int y); | 238 void updatePointer(int x, int y); |
| 239 void magnify(SkCanvas* canvas); | 239 void magnify(SkCanvas* canvas); |
| 240 void showZoomer(SkCanvas* canvas); | 240 void showZoomer(SkCanvas* canvas); |
| 241 void updateMatrix(); | 241 void updateMatrix(); |
| 242 void postAnimatingEvent(); | 242 void postAnimatingEvent(); |
| 243 void installDrawFilter(SkCanvas*); | 243 void installDrawFilter(SkCanvas*); |
| 244 int findByTitle(const char*); | 244 int findByTitle(const char*); |
| 245 void listTitles(); | 245 void listTitles(); |
| 246 SkSize tileSize() const; |
| 246 | 247 |
| 247 typedef SkOSWindow INHERITED; | 248 typedef SkOSWindow INHERITED; |
| 248 }; | 249 }; |
| 249 | 250 |
| 250 #endif | 251 #endif |
| OLD | NEW |