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

  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 231 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
235 if (!this->tryAllocPixels(info, factory, ctable)) {
249 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
252 if (!this->tryAllocPixels(info, rowBytes)) {
258 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) {
259 return this->tryAllocPixels(info, info.minRowBytes());
269 return this->tryAllocPixels(info);
350 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) {
351 return this->tryAllocPixels(NULL, ctable);
376 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator, SkColorTable* ctable)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmap.cpp 269 bool SkBitmap::tryAllocPixels(Allocator* allocator, SkColorTable* ctable) {
280 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) {
309 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, SkPixelRefFactory* factory,
945 if (!tmpDst.tryAllocPixels(alloc, ctable)) {
    [all...]

Completed in 420 milliseconds