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

  /external/skia/include/core/
SkBitmap.h 243 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
246 if (!this->tryAllocPixels(info, factory, ctable)) {
259 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
262 if (!this->tryAllocPixels(info, rowBytes)) {
267 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) {
268 return this->tryAllocPixels(info, info.minRowBytes());
278 return this->tryAllocPixels(info);
370 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) {
371 return this->tryAllocPixels(NULL, ctable);
396 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator, SkColorTable* ctable)
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 278 bool SkBitmap::tryAllocPixels(Allocator* allocator, SkColorTable* ctable) {
289 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) {
318 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, SkPixelRefFactory* factory,
886 if (!tmpDst.tryAllocPixels(alloc, ctable)) {
    [all...]

Completed in 176 milliseconds