Home | History | Annotate | Download | only in core

Lines Matching full:const

17     explicit SkBitmapProvider(const SkBitmap& bm) : fBitmap(bm) {}
18 explicit SkBitmapProvider(const SkImage* img) : fImage(SkSafeRef(img)) {}
19 SkBitmapProvider(const SkBitmapProvider& other)
24 int width() const;
25 int height() const;
26 uint32_t getID() const;
28 bool validForDrawing() const;
29 SkImageInfo info() const;
30 bool isVolatile() const;
32 SkBitmapCacheDesc makeCacheDesc(int w, int h) const;
33 SkBitmapCacheDesc makeCacheDesc() const;
34 void notifyAddedToCache() const;
38 bool asBitmap(SkBitmap*) const;
42 SkAutoTUnref<const SkImage> fImage;