HomeSort by relevance Sort by last modified time
    Searched defs:SkImage (Results 1 - 2 of 2) sorted by null

  /external/skia/include/core/
SkImage.h 33 * SkImage is an abstraction for drawing a rectagle of pixels, though the
38 * The content of SkImage is always immutable, though the actual storage may
42 * SkImage always has a non-zero dimensions. If there is a request to create a new image, either
46 class SK_API SkImage : public SkRefCnt {
51 static sk_sp<SkImage> MakeRasterCopy(const SkPixmap&);
52 static sk_sp<SkImage> MakeRasterData(const Info&, sk_sp<SkData> pixels, size_t rowBytes);
63 static sk_sp<SkImage> MakeFromRaster(const SkPixmap&, RasterReleaseProc, ReleaseContext);
69 static sk_sp<SkImage> MakeFromBitmap(const SkBitmap&);
72 * Construct a new SkImage based on the given ImageGenerator. Returns NULL on error.
77 static sk_sp<SkImage> MakeFromGenerator(std::unique_ptr<SkImageGenerator>
    [all...]
  /external/skia/src/image/
SkImage.cpp 38 SkImage::SkImage(int width, int height, uint32_t uniqueID)
47 bool SkImage::peekPixels(SkPixmap* pm) const {
55 bool SkImage::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
60 bool SkImage::scalePixels(const SkPixmap& dst, SkFilterQuality quality, CachingHint chint) const {
83 SkAlphaType SkImage::alphaType() const {
87 SkColorSpace* SkImage::colorSpace() const {
91 sk_sp<SkColorSpace> SkImage::refColorSpace() const {
95 sk_sp<SkShader> SkImage::makeShader(SkShader::TileMode tileX, SkShader::TileMode tileY,
97 return SkImageShader::Make(sk_ref_sp(const_cast<SkImage*>(this)), tileX, tileY, localMatrix)
    [all...]

Completed in 129 milliseconds