Home
last modified time | relevance | path

Searched refs:GrWindowRectangles (Results 1 – 23 of 23) sorted by relevance

/third_party/skia/src/gpu/
DGrWindowRectangles.h14 class GrWindowRectangles {
18 GrWindowRectangles() : fCount(0) {} in GrWindowRectangles() function
19 GrWindowRectangles(const GrWindowRectangles& that) : fCount(0) { *this = that; } in GrWindowRectangles() function
20 ~GrWindowRectangles() { SkSafeUnref(this->rec()); } in ~GrWindowRectangles()
22 GrWindowRectangles makeOffset(int dx, int dy) const;
29 GrWindowRectangles& operator=(const GrWindowRectangles&);
34 bool operator!=(const GrWindowRectangles& that) const { return !(*this == that); }
35 bool operator==(const GrWindowRectangles&) const;
49 struct GrWindowRectangles::Rec : public GrNonAtomicRef<Rec> {
59 inline const SkIRect* GrWindowRectangles::data() const { in data()
[all …]
DGrWindowRectsState.h21 GrWindowRectsState(const GrWindowRectangles& windows, Mode mode) in GrWindowRectsState()
28 const GrWindowRectangles& windows() const { return fWindows; } in windows()
36 void set(const GrWindowRectangles& windows, Mode mode) { in set()
51 GrWindowRectangles fWindows;
DGrCaps.cpp152 if (fMaxWindowRectangles > GrWindowRectangles::kMaxWindows) { in applyOptionsOverrides()
154 GrWindowRectangles::kMaxWindows, fMaxWindowRectangles); in applyOptionsOverrides()
155 fMaxWindowRectangles = GrWindowRectangles::kMaxWindows; in applyOptionsOverrides()
DGrFixedClip.h45 void setWindowRectangles(const GrWindowRectangles& windows, GrWindowRectsState::Mode mode) { in setWindowRectangles()
DGrAppliedClip.h64 void addWindowRectangles(const GrWindowRectangles& windows, GrWindowRectsState::Mode mode) { in addWindowRectangles()
DBUILD.bazel227 "GrWindowRectangles.h",
/third_party/flutter/skia/src/gpu/
DGrWindowRectangles.h14 class GrWindowRectangles {
18 GrWindowRectangles() : fCount(0) {} in GrWindowRectangles() function
19 GrWindowRectangles(const GrWindowRectangles& that) : fCount(0) { *this = that; } in GrWindowRectangles() function
20 ~GrWindowRectangles() { SkSafeUnref(this->rec()); } in ~GrWindowRectangles()
22 GrWindowRectangles makeOffset(int dx, int dy) const;
29 GrWindowRectangles& operator=(const GrWindowRectangles&);
34 bool operator!=(const GrWindowRectangles& that) const { return !(*this == that); }
35 bool operator==(const GrWindowRectangles&) const;
50 struct GrWindowRectangles::Rec : public GrNonAtomicRef<Rec> {
60 inline const SkIRect* GrWindowRectangles::data() const { in data()
[all …]
DGrWindowRectsState.h21 GrWindowRectsState(const GrWindowRectangles& windows, Mode mode) in GrWindowRectsState()
28 const GrWindowRectangles& windows() const { return fWindows; } in windows()
36 void set(const GrWindowRectangles& windows, Mode mode) { in set()
51 GrWindowRectangles fWindows;
DGrReducedClip.h59 const GrWindowRectangles& windowRectangles() const { return fWindowRects; } in windowRectangles()
143 GrWindowRectangles fWindowRects;
DGrCaps.cpp122 if (fMaxWindowRectangles > GrWindowRectangles::kMaxWindows) { in applyOptionsOverrides()
124 GrWindowRectangles::kMaxWindows, fMaxWindowRectangles); in applyOptionsOverrides()
125 fMaxWindowRectangles = GrWindowRectangles::kMaxWindows; in applyOptionsOverrides()
DGrFixedClip.h41 void setWindowRectangles(const GrWindowRectangles& windows, GrWindowRectsState::Mode mode) { in setWindowRectangles()
DGrAppliedClip.h47 void addWindowRectangles(const GrWindowRectangles& windows, GrWindowRectsState::Mode mode) { in addWindowRectangles()
DGrReducedClip.cpp44 SkASSERT(fMaxWindowRectangles <= GrWindowRectangles::kMaxWindows); in GrReducedClip()
/third_party/flutter/skia/tests/
DWindowRectanglesTest.cpp22 SkIRect windowData[GrWindowRectangles::kMaxWindows]; in DEF_TEST()
23 for (int i = 0; i < GrWindowRectangles::kMaxWindows; ++i) { in DEF_TEST()
27 GrWindowRectangles wr; in DEF_TEST()
28 for (int i = 0; i < GrWindowRectangles::kMaxWindows - 1; ++i) { in DEF_TEST()
32 GrWindowRectangles wr2(wr); in DEF_TEST()
40 SkASSERT(wr.count() == GrWindowRectangles::kMaxWindows - 1); in DEF_TEST()
42 GrWindowRectangles A(wr), B(wr); in DEF_TEST()
46 A.addWindow(windowData[GrWindowRectangles::kMaxWindows - 1]); in DEF_TEST()
54 GrWindowRectangles::kMaxWindows * sizeof(SkIRect))); in DEF_TEST()
56 (GrWindowRectangles::kMaxWindows - 1) * sizeof(SkIRect))); in DEF_TEST()
[all …]
/third_party/skia/tests/
DWindowRectanglesTest.cpp22 SkIRect windowData[GrWindowRectangles::kMaxWindows]; in DEF_TEST()
23 for (int i = 0; i < GrWindowRectangles::kMaxWindows; ++i) { in DEF_TEST()
27 GrWindowRectangles wr; in DEF_TEST()
28 for (int i = 0; i < GrWindowRectangles::kMaxWindows - 1; ++i) { in DEF_TEST()
32 GrWindowRectangles wr2(wr); in DEF_TEST()
40 SkASSERT(wr.count() == GrWindowRectangles::kMaxWindows - 1); in DEF_TEST()
42 GrWindowRectangles A(wr), B(wr); in DEF_TEST()
46 A.addWindow(windowData[GrWindowRectangles::kMaxWindows - 1]); in DEF_TEST()
53 for (int i = 0; i < GrWindowRectangles::kMaxWindows - 1; i++) { in DEF_TEST()
57 REPORTER_ASSERT(reporter, A.data()[GrWindowRectangles::kMaxWindows - 1] in DEF_TEST()
[all …]
/third_party/skia/src/gpu/v1/
DStencilMaskHelper.h45 const GrWindowRectangles& windowRects, int numFPs);
DStencilMaskHelper.cpp352 const GrWindowRectangles& windowRects, int numFPs) { in init()
DClipStack.cpp1350 GrWindowRectangles windowRects; in apply()
/third_party/flutter/skia/gn/
Dgpu.gni237 "$_src/gpu/GrWindowRectangles.h",
/third_party/skia/gn/
Dgpu.gni244 "$_src/gpu/GrWindowRectangles.h",
/third_party/flutter/skia/src/gpu/gl/
DGrGLGpu.cpp1845 int numWindows = SkTMin(windowState.numWindows(), int(GrWindowRectangles::kMaxWindows)); in flushWindowRectangles()
1848 GrGLIRect glwindows[GrWindowRectangles::kMaxWindows]; in flushWindowRectangles()
/third_party/skia/src/gpu/gl/
DGrGLGpu.cpp1839 int numWindows = std::min(windowState.numWindows(), int(GrWindowRectangles::kMaxWindows)); in flushWindowRectangles()
1842 GrNativeRect glwindows[GrWindowRectangles::kMaxWindows]; in flushWindowRectangles()
/third_party/flutter/engine/flutter/ci/licenses_golden/
Dlicenses_skia652 FILE: ../../../third_party/skia/src/gpu/GrWindowRectangles.h