HomeSort by relevance Sort by last modified time
    Searched refs:PathTexture (Results 1 - 4 of 4) sorted by null

  /frameworks/base/libs/hwui/
PathCache.h 61 struct PathTexture: public Texture {
62 PathTexture(Caches& caches): Texture(caches) {
65 ~PathTexture() {
98 }; // struct PathTexture
160 class PathCache: public OnEntryRemoved<PathDescription, PathTexture*> {
169 void operator()(PathDescription& path, PathTexture*& texture);
189 PathTexture* getRoundRect(float width, float height, float rx, float ry, const SkPaint* paint);
190 PathTexture* getCircle(float radius, const SkPaint* paint);
191 PathTexture* getOval(float width, float height, const SkPaint* paint);
192 PathTexture* getRect(float width, float height, const SkPaint* paint)
    [all...]
PathCache.cpp 136 static PathTexture* createTexture(float left, float top, float offset,
138 PathTexture* texture = new PathTexture(Caches::getInstance());
153 mCache(LruCache<PathDescription, PathTexture*>::kUnlimitedCapacity),
199 void PathCache::operator()(PathDescription& entry, PathTexture*& texture) {
207 void PathCache::removeTexture(PathTexture* texture) {
256 PathTexture* PathCache::addTexture(const PathDescription& entry, const SkPath *path,
271 PathTexture* texture = createTexture(left, top, offset, width, height,
279 PathTexture* texture, bool addToCache) {
344 PathTexture* texture = t->texture
    [all...]
OpenGLRenderer.h 649 status_t drawShape(float left, float top, const PathTexture* texture, const SkPaint* paint);
786 void drawPathTexture(const PathTexture* texture, float x, float y, const SkPaint* paint);
    [all...]
OpenGLRenderer.cpp     [all...]

Completed in 1017 milliseconds