Searched defs:installPixels (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/core/
H A DSkBitmap.h323 bool installPixels(const SkImageInfo&, void* pixels, size_t rowBytes,
327 * Call installPixels with no ReleaseProc specified. This means that the
331 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) { function in class:SkBitmap
332 return this->installPixels(info, pixels, rowBytes, nullptr, nullptr);
336 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, SkColorTable*, function in class:SkBitmap
338 return this->installPixels(info, pixels, rowBytes, releaseProc, context);
343 * Call installPixels with no ReleaseProc specified. This means
348 bool installPixels(const SkPixmap&);
351 * Calls installPixels() with the value in the SkMask. The caller must
/external/skia/src/core/
H A DSkBitmap.cpp295 bool SkBitmap::installPixels(const SkImageInfo& requestedInfo, void* pixels, size_t rb, function in class:SkBitmap
322 bool SkBitmap::installPixels(const SkPixmap& pixmap) { function in class:SkBitmap
323 return this->installPixels(pixmap.info(), pixmap.writable_addr(), pixmap.rowBytes(),
332 return this->installPixels(SkImageInfo::MakeA8(mask.fBounds.width(),

Completed in 214 milliseconds