Home
last modified time | relevance | path

Searched refs:fTopNode (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/src/gpu/
DGrDynamicAtlas.cpp91 fTopNode = nullptr; in reset()
153 if (!fTopNode) { in internalPlaceRect()
160 fTopNode = this->makeNode(nullptr, 0, 0, fWidth, fHeight); in internalPlaceRect()
163 for (Node* node = fTopNode; node; node = node->previous()) { in internalPlaceRect()
177 fTopNode = this->makeNode(fTopNode, 0, top, fWidth, fHeight); in internalPlaceRect()
181 fTopNode = this->makeNode(fTopNode, left, 0, fWidth, fHeight); in internalPlaceRect()
183 } while (!fTopNode->addRect(w, h, loc)); in internalPlaceRect()
DGrDynamicAtlas.h92 Node* fTopNode = nullptr; variable
/third_party/flutter/skia/src/gpu/ccpr/
DGrCCAtlas.cpp112 fTopNode = skstd::make_unique<Node>(nullptr, 0, 0, fWidth, fHeight); in GrCCAtlas()
152 for (Node* node = fTopNode.get(); node; node = node->previous()) { in internalPlaceRect()
166 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), 0, top, fWidth, fHeight); in internalPlaceRect()
170 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), left, 0, fWidth, fHeight); in internalPlaceRect()
172 } while (!fTopNode->addRect(w, h, loc, fMaxTextureSize)); in internalPlaceRect()
DGrCCAtlas.h114 std::unique_ptr<Node> fTopNode; variable