OLD | NEW |
| 1 /* |
| 2 * Copyright 2014 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 7 |
1 #ifndef SkRecording_DEFINED | 8 #ifndef SkRecording_DEFINED |
2 #define SkRecording_DEFINED | 9 #define SkRecording_DEFINED |
3 | 10 |
4 #include "SkCanvas.h" // SkCanvas | 11 #include "SkCanvas.h" // SkCanvas |
5 #include "SkTypes.h" // SkNoncopyable | 12 #include "SkTypes.h" // SkNoncopyable |
6 | 13 |
7 // These are intentionally left opaque. | 14 // These are intentionally left opaque. |
8 class SkRecord; | 15 class SkRecord; |
9 class SkRecorder; | 16 class SkRecorder; |
10 | 17 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 SkRecording(int width, int height); | 65 SkRecording(int width, int height); |
59 ~SkRecording(); | 66 ~SkRecording(); |
60 | 67 |
61 SkRecorder* fRecorder; | 68 SkRecorder* fRecorder; |
62 const SkRecord* fRecord; | 69 const SkRecord* fRecord; |
63 }; | 70 }; |
64 | 71 |
65 } // namespace EXPERIMENTAL | 72 } // namespace EXPERIMENTAL |
66 | 73 |
67 #endif//SkRecording_DEFINED | 74 #endif//SkRecording_DEFINED |
OLD | NEW |