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

  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 285 bool installPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkColorTable*,
289 * Call installPixels with no ReleaseProc specified. This means that the
293 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
294 return this->installPixels(info, pixels, rowBytes, NULL, NULL, NULL);
298 * Calls installPixels() with the value in the SkMask. The caller must
    [all...]
  /external/skia/include/core/
SkBitmap.h 325 bool installPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkColorTable*,
329 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
332 return this->installPixels(info, pixels, rowBytes, NULL, releaseProc, context);
337 * Call installPixels with no ReleaseProc specified. This means that the
341 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
342 return this->installPixels(info, pixels, rowBytes, NULL, NULL, NULL);
346 * Calls installPixels() with the value in the SkMask. The caller must
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmap.cpp 340 bool SkBitmap::installPixels(const SkImageInfo& requestedInfo, void* pixels, size_t rb,
371 return this->installPixels(SkImageInfo::MakeA8(mask.fBounds.width(),
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 400 bool SkBitmap::installPixels(const SkImageInfo& requestedInfo, void* pixels, size_t rb,
431 return this->installPixels(SkImageInfo::MakeA8(mask.fBounds.width(),
    [all...]

Completed in 1315 milliseconds