blob: 59ff938bfdd50a05c1a2e31c7c4177baa47f3b27 [file] [log] [blame]
csmartdaltonbf4a8f92016-09-06 10:01:06 -07001/*
2 * Copyright 2016 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 */
7
8#ifndef GrWindowRectsState_DEFINED
9#define GrWindowRectsState_DEFINED
10
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "src/gpu/GrWindowRectangles.h"
csmartdaltonbf4a8f92016-09-06 10:01:06 -070012
13class GrWindowRectsState {
14public:
15 enum class Mode : bool {
16 kExclusive,
17 kInclusive
18 };
19
20 GrWindowRectsState() : fMode(Mode::kExclusive) {}
Brian Salomon9a767722017-03-13 17:57:28 -040021 GrWindowRectsState(const GrWindowRectangles& windows, Mode mode)
csmartdaltonbf4a8f92016-09-06 10:01:06 -070022 : fMode(mode)
csmartdaltonbf4a8f92016-09-06 10:01:06 -070023 , fWindows(windows) {
24 }
25
26 bool enabled() const { return Mode::kInclusive == fMode || !fWindows.empty(); }
27 Mode mode() const { return fMode; }
csmartdaltonbf4a8f92016-09-06 10:01:06 -070028 const GrWindowRectangles& windows() const { return fWindows; }
29 int numWindows() const { return fWindows.count(); }
30
31 void setDisabled() {
32 fMode = Mode::kExclusive;
33 fWindows.reset();
34 }
35
Brian Salomon9a767722017-03-13 17:57:28 -040036 void set(const GrWindowRectangles& windows, Mode mode) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -070037 fMode = mode;
csmartdaltonbf4a8f92016-09-06 10:01:06 -070038 fWindows = windows;
39 }
40
Brian Salomon9a767722017-03-13 17:57:28 -040041 bool operator==(const GrWindowRectsState& that) const {
csmartdaltonbf4a8f92016-09-06 10:01:06 -070042 if (fMode != that.fMode) {
43 return false;
44 }
csmartdaltonbf4a8f92016-09-06 10:01:06 -070045 return fWindows == that.fWindows;
46 }
Brian Salomon9a767722017-03-13 17:57:28 -040047 bool operator!=(const GrWindowRectsState& that) const { return !(*this == that); }
csmartdaltonbf4a8f92016-09-06 10:01:06 -070048
49private:
50 Mode fMode;
csmartdaltonbf4a8f92016-09-06 10:01:06 -070051 GrWindowRectangles fWindows;
52};
53
54#endif