blob: a1c571ef4143ea6cf92d5c2ad59f76bd534561eb [file] [log] [blame]
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +00001/*
robertphillips901e96d2014-06-02 07:15:18 -07002 * 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 */
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +00007
8#ifndef GrRectanizer_skyline_DEFINED
9#define GrRectanizer_skyline_DEFINED
10
11#include "GrRectanizer.h"
12#include "SkTDArray.h"
13
14// Pack rectangles and track the current silhouette
robertphillips901e96d2014-06-02 07:15:18 -070015// Based, in part, on Jukka Jylanki's work at http://clb.demon.fi
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +000016class GrRectanizerSkyline : public GrRectanizer {
17public:
18 GrRectanizerSkyline(int w, int h) : INHERITED(w, h) {
19 this->reset();
20 }
21
robertphillips60029a52015-11-09 13:51:06 -080022 ~GrRectanizerSkyline() override { }
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +000023
robertphillips60029a52015-11-09 13:51:06 -080024 void reset() override {
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +000025 fAreaSoFar = 0;
26 fSkyline.reset();
27 SkylineSegment* seg = fSkyline.append(1);
28 seg->fX = 0;
29 seg->fY = 0;
30 seg->fWidth = this->width();
31 }
32
mtklein36352bf2015-03-25 18:17:31 -070033 bool addRect(int w, int h, SkIPoint16* loc) override;
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +000034
mtklein36352bf2015-03-25 18:17:31 -070035 float percentFull() const override {
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +000036 return fAreaSoFar / ((float)this->width() * this->height());
37 }
38
39private:
40 struct SkylineSegment {
41 int fX;
42 int fY;
43 int fWidth;
44 };
45
46 SkTDArray<SkylineSegment> fSkyline;
47
48 int32_t fAreaSoFar;
49
robertphillips4cbf8e32014-06-09 07:59:25 -070050 // 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
halcanary9d524f22016-03-29 09:03:52 -070052 // 'y' with the y-location at which it fits (the x location is pulled from
robertphillips4cbf8e32014-06-09 07:59:25 -070053 // 'skylineIndex's segment.
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +000054 bool rectangleFits(int skylineIndex, int width, int height, int* y) const;
robertphillips4cbf8e32014-06-09 07:59:25 -070055 // Update the skyline structure to include a width x height rect located
56 // at x,y.
commit-bot@chromium.orgad854bf2014-05-29 18:46:38 +000057 void addSkylineLevel(int skylineIndex, int x, int y, int width, int height);
58
59 typedef GrRectanizer INHERITED;
60};
61
62#endif