OLD | NEW |
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 GrRectanizer_skyline_DEFINED | 8 #ifndef GrRectanizer_skyline_DEFINED |
9 #define GrRectanizer_skyline_DEFINED | 9 #define GrRectanizer_skyline_DEFINED |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 int fY; | 42 int fY; |
43 int fWidth; | 43 int fWidth; |
44 }; | 44 }; |
45 | 45 |
46 SkTDArray<SkylineSegment> fSkyline; | 46 SkTDArray<SkylineSegment> fSkyline; |
47 | 47 |
48 int32_t fAreaSoFar; | 48 int32_t fAreaSoFar; |
49 | 49 |
50 // Can a width x height rectangle fit in the free space represented by | 50 // Can a width x height rectangle fit in the free space represented by |
51 // the skyline segments >= 'skylineIndex'? If so, return true and fill in | 51 // the skyline segments >= 'skylineIndex'? If so, return true and fill in |
52 // 'y' with the y-location at which it fits (the x location is pulled from | 52 // 'y' with the y-location at which it fits (the x location is pulled from |
53 // 'skylineIndex's segment. | 53 // 'skylineIndex's segment. |
54 bool rectangleFits(int skylineIndex, int width, int height, int* y) const; | 54 bool rectangleFits(int skylineIndex, int width, int height, int* y) const; |
55 // Update the skyline structure to include a width x height rect located | 55 // Update the skyline structure to include a width x height rect located |
56 // at x,y. | 56 // at x,y. |
57 void addSkylineLevel(int skylineIndex, int x, int y, int width, int height); | 57 void addSkylineLevel(int skylineIndex, int x, int y, int width, int height); |
58 | 58 |
59 typedef GrRectanizer INHERITED; | 59 typedef GrRectanizer INHERITED; |
60 }; | 60 }; |
61 | 61 |
62 #endif | 62 #endif |
OLD | NEW |