Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Side by Side Diff: include/core/SkRTreePicture.h

Issue 243173002: Staging for cleanup of SkPicture-related headers (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Add crucial newline at end of file Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « include/core/SkPictureRecorder.h ('k') | include/core/SkTileGridPicture.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
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 SkRTreePicture_DEFINED 8 #ifndef SkRTreePicture_DEFINED
9 #define SkRTreePicture_DEFINED 9 #define SkRTreePicture_DEFINED
10 10
11 #ifdef SK_SUPPORT_LEGACY_PICTURE_HEADERS
12 #include "SkBBHFactory.h"
13 #endif
14
15 #ifdef SK_SUPPORT_LEGACY_DERIVED_PICTURE_CLASSES
16
11 #include "SkPicture.h" 17 #include "SkPicture.h"
12 18
13 class SkRTreeFactory : public SkBBHFactory {
14 public:
15 virtual SkBBoxHierarchy* operator()(int width, int height) const SK_OVERRIDE ;
16 private:
17 typedef SkBBHFactory INHERITED;
18 };
19
20 #ifdef SK_SUPPORT_LEGACY_DERIVED_PICTURE_CLASSES
21 /** 19 /**
22 * Subclass of SkPicture that creates an RTree acceleration structure. 20 * Subclass of SkPicture that creates an RTree acceleration structure.
23 */ 21 */
24 class SkRTreePicture : public SkPicture { 22 class SkRTreePicture : public SkPicture {
25 public: 23 public:
26 virtual SkBBoxHierarchy* createBBoxHierarchy() const SK_OVERRIDE; 24 virtual SkBBoxHierarchy* createBBoxHierarchy() const SK_OVERRIDE;
27 25
28 private: 26 private:
29 typedef SkPicture INHERITED; 27 typedef SkPicture INHERITED;
30 }; 28 };
31 29
32 class SkRTreePictureFactory : public SkPictureFactory { 30 class SkRTreePictureFactory : public SkPictureFactory {
33 public: 31 public:
34 SkRTreePictureFactory() {} 32 SkRTreePictureFactory() {}
35 33
36 virtual SkPicture* create(int width, int height) SK_OVERRIDE { 34 virtual SkPicture* create(int width, int height) SK_OVERRIDE {
37 return SkNEW(SkRTreePicture); 35 return SkNEW(SkRTreePicture);
38 } 36 }
39 37
40 private: 38 private:
41 typedef SkPictureFactory INHERITED; 39 typedef SkPictureFactory INHERITED;
42 }; 40 };
43 #endif 41 #endif
44 42
45 #endif 43 #endif
OLDNEW
« no previous file with comments | « include/core/SkPictureRecorder.h ('k') | include/core/SkTileGridPicture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698