HomeSort by relevance Sort by last modified time
    Searched defs:RectSet (Results 1 - 2 of 2) sorted by null

  /external/drm_hwcomposer/
separate_rects.h 144 struct RectSet {
148 RectSet(const IdSet<TId> &i, const Rect<TNum> &r) : id_set(i), rect(r) {
151 bool operator==(const RectSet<TId, TNum> &rhs) const {
163 std::vector<RectSet<uint64_t, float>> *out);
165 std::vector<RectSet<uint64_t, int>> *out);
separate_rects.cpp 75 std::vector<RectSet<TId, TNum>> *out) {
292 out->push_back(RectSet<TId, TNum>(proto_rect.id_set, out_rect));
308 std::vector<RectSet<uint64_t, float>> *out) {
313 std::vector<RectSet<uint64_t, int>> *out) {
324 #define RectSet RectSet<TId, TNum>
331 std::vector<RectSet> out;
332 std::vector<RectSet> expected_out;
370 expected_out.push_back(RectSet(IdSet(0), Rect(0, 0, 2, 5)));
371 expected_out.push_back(RectSet(IdSet(1), Rect(2, 5, 6, 6)))
    [all...]

Completed in 2956 milliseconds