huangcm
2024-12-18 9d29be7f7249789d6ffd0440067187a9f040c2cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
 
#ifndef GrWindowRectsState_DEFINED
#define GrWindowRectsState_DEFINED
 
#include "GrWindowRectangles.h"
 
class GrWindowRectsState {
public:
    enum class Mode : bool {
        kExclusive,
        kInclusive
    };
 
    GrWindowRectsState() : fMode(Mode::kExclusive) {}
    GrWindowRectsState(const GrWindowRectangles& windows, Mode mode)
        : fMode(mode)
        , fWindows(windows) {
    }
 
    bool enabled() const { return Mode::kInclusive == fMode || !fWindows.empty(); }
    Mode mode() const { return fMode; }
    const GrWindowRectangles& windows() const { return fWindows; }
    int numWindows() const { return fWindows.count(); }
 
    void setDisabled() {
        fMode = Mode::kExclusive;
        fWindows.reset();
    }
 
    void set(const GrWindowRectangles& windows, Mode mode) {
        fMode = mode;
        fWindows = windows;
    }
 
    bool operator==(const GrWindowRectsState& that) const {
        if (fMode != that.fMode) {
            return false;
        }
        return fWindows == that.fWindows;
    }
    bool operator!=(const GrWindowRectsState& that) const { return !(*this == that); }
 
private:
    Mode                 fMode;
    GrWindowRectangles   fWindows;
};
 
#endif