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

  /external/drm_hwcomposer/
seperate_rects.h 117 struct RectSet {
121 RectSet(const IdSet<TId> &i, const Rect<TNum> &r) : id_set(i), rect(r) {
124 bool operator==(const RectSet<TId, TNum> &rhs) const {
136 std::vector<RectSet<uint64_t, float> > *out);
seperate_rects.cpp 75 std::vector<RectSet<TId, TNum> > *out) {
288 out->push_back(RectSet<TId, TNum>(proto_rect.id_set, out_rect));
304 std::vector<RectSet<uint64_t, float> > *out) {
315 #define RectSet RectSet<TId, TNum>
322 std::vector<RectSet> out;
323 std::vector<RectSet> expected_out;
356 expected_out.push_back(RectSet(IdSet(0), Rect(0, 0, 2, 5)));
357 expected_out.push_back(RectSet(IdSet(1), Rect(2, 5, 6, 6)));
358 expected_out.push_back(RectSet(IdSet(1) | 0, Rect(2, 0, 4, 5)))
    [all...]

Completed in 45 milliseconds