Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrDynamicAtlas.cpp88 fTopNode = nullptr; in reset()
134 if (!fTopNode) { in internalPlaceRect()
141 fTopNode = this->makeNode(nullptr, 0, 0, fWidth, fHeight); in internalPlaceRect()
144 for (Node* node = fTopNode; node; node = node->previous()) { in internalPlaceRect()
158 fTopNode = this->makeNode(fTopNode, 0, top, fWidth, fHeight); in internalPlaceRect()
162 fTopNode = this->makeNode(fTopNode, left, 0, fWidth, fHeight); in internalPlaceRect()
164 } while (!fTopNode->addRect(w, h, loc)); in internalPlaceRect()
DGrDynamicAtlas.h93 Node* fTopNode = nullptr; variable
/external/skqp/src/gpu/ccpr/
DGrCCAtlas.cpp76 fTopNode = skstd::make_unique<Node>(nullptr, 0, 0, fWidth, fHeight); in GrCCAtlas()
122 for (Node* node = fTopNode.get(); node; node = node->previous()) { in internalPlaceRect()
136 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), 0, top, fWidth, fHeight); in internalPlaceRect()
140 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), left, 0, fWidth, fHeight); in internalPlaceRect()
142 } while (!fTopNode->addRect(w, h, loc, fMaxTextureSize)); in internalPlaceRect()
DGrCCAtlas.h93 std::unique_ptr<Node> fTopNode; variable