Searched refs:score (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/display/
H A Ddrawing-item.h52 bool operator<(CacheRecord const &other) const { return score < other.score; }
53 bool operator==(CacheRecord const &other) const { return score == other.score; }
55 double score; member in struct:Inkscape::CacheRecord
219 unsigned _cached_persistent : 1; ///< If set, will always be cached regardless of score
H A Ddrawing-item.cpp601 // Update cache score for this item
603 // remove old score information
607 double score = _cacheScore(); local
608 if (score >= _drawing._cache_score_threshold) {
610 cr.score = score;
611 // if _cacheRect() is empty, a negative score will be returned from _cacheScore(),
612 // so this will not execute (cache score threshold must be positive)
1104 * Compute the caching score.
1116 // the basic score i
1117 double score = cache_rect->area(); local
[all...]

Completed in 17 milliseconds