blob: 540a5e8f5889f3567afc23016a64b606ce3ac4c3 [file] [log] [blame]
Zach Reizner15c9ffa2015-03-31 17:56:36 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef DRM_HWCOMPOSER_SEPERATE_RECTS_H_
18#define DRM_HWCOMPOSER_SEPERATE_RECTS_H_
19
20#include <stdint.h>
21#include <vector>
22
23namespace seperate_rects {
24
25template <typename TFloat>
26struct Rect {
27 union {
28 struct {
29 TFloat left, top, right, bottom;
30 };
31 struct {
32 TFloat x1, y1, x2, y2;
33 };
34 TFloat bounds[4];
35 };
36
37 typedef TFloat TNum;
38
39 Rect() {
40 }
41
42 Rect(TFloat xx1, TFloat yy1, TFloat xx2, TFloat yy2)
43 : x1(xx1), y1(yy1), x2(xx2), y2(yy2) {
44 }
45
Zach Reizner4a253652015-09-10 18:30:54 -070046 template <typename T>
47 Rect(const Rect<T> &rhs) {
Zach Reizner15c9ffa2015-03-31 17:56:36 -070048 for (int i = 0; i < 4; i++)
49 bounds[i] = rhs.bounds[i];
50 }
51
Zach Reizner4a253652015-09-10 18:30:54 -070052 template <typename T>
53 Rect<TFloat> &operator=(const Rect<T> &rhs) {
54 for (int i = 0; i < 4; i++)
55 bounds[i] = rhs.bounds[i];
56 return *this;
57 }
58
Zach Reizner15c9ffa2015-03-31 17:56:36 -070059 bool operator==(const Rect &rhs) const {
60 for (int i = 0; i < 4; i++) {
61 if (bounds[i] != rhs.bounds[i])
62 return false;
63 }
64
65 return true;
66 }
67};
68
69template <typename TUInt>
70struct IdSet {
71 public:
72 typedef TUInt TId;
73
74 IdSet() : bitset(0) {
75 }
76
77 IdSet(TId id) : bitset(0) {
78 add(id);
79 }
80
81 void add(TId id) {
82 bitset |= ((TUInt)1) << id;
83 }
84
85 void subtract(TId id) {
86 bitset &= ~(((TUInt)1) << id);
87 }
88
89 bool isEmpty() const {
90 return bitset == 0;
91 }
92
93 TUInt getBits() const {
94 return bitset;
95 }
96
97 bool operator==(const IdSet<TId> &rhs) const {
98 return bitset == rhs.bitset;
99 }
100
101 bool operator<(const IdSet<TId> &rhs) const {
102 return bitset < rhs.bitset;
103 }
104
105 IdSet<TId> operator|(const IdSet<TId> &rhs) const {
106 IdSet ret;
107 ret.bitset = bitset | rhs.bitset;
108 return ret;
109 }
110
111 IdSet<TId> operator|(TId id) const {
112 IdSet<TId> ret;
113 ret.bitset = bitset;
114 ret.add(id);
115 return ret;
116 }
117
118 static const int max_elements = sizeof(TId) * 8;
119
120 private:
121 TUInt bitset;
122};
123
124template <typename TId, typename TNum>
125struct RectSet {
126 IdSet<TId> id_set;
127 Rect<TNum> rect;
128
129 RectSet(const IdSet<TId> &i, const Rect<TNum> &r) : id_set(i), rect(r) {
130 }
131
132 bool operator==(const RectSet<TId, TNum> &rhs) const {
133 return id_set == rhs.id_set && rect == rhs.rect;
134 }
135};
136
137// Seperates up to a maximum of 64 input rectangles into mutually non-
138// overlapping rectangles that cover the exact same area and outputs those non-
139// overlapping rectangles. Each output rectangle also includes the set of input
140// rectangle indices that overlap the output rectangle encoded in a bitset. For
141// example, an output rectangle that overlaps input rectangles in[0], in[1], and
142// in[4], the bitset would be (ommitting leading zeroes) 10011.
143void seperate_frects_64(const std::vector<Rect<float> > &in,
144 std::vector<RectSet<uint64_t, float> > *out);
145
146} // namespace seperate_rects
147
148#endif