Lines Matching defs:SkRTree
8 #include "SkRTree.h"
10 SkRTree::SkRTree(SkScalar aspectRatio) : fCount(0), fAspectRatio(aspectRatio) {}
12 SkRect SkRTree::getRootBound() const {
20 void SkRTree::insert(const SkRect boundsArray[], int N) {
53 SkRTree::Node* SkRTree::allocateNodeAtLevel(uint16_t level) {
63 int SkRTree::CountNodes(int branches, SkScalar aspectRatio) {
103 SkRTree::Branch SkRTree::bulkLoad(SkTDArray<Branch>* branches, int level) {
164 void SkRTree::search(const SkRect& query, SkTDArray<int>* results) const {
170 void SkRTree::search(Node* node, const SkRect& query, SkTDArray<int>* results) const {
182 size_t SkRTree::bytesUsed() const {
183 size_t byteCount = sizeof(SkRTree);