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 261 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, sk_sp<SkColorTable>,
278 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
281 if (!this->tryAllocPixels(info, rowBytes)) {
286 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) {
287 return this->tryAllocPixels(info, info.minRowBytes());
297 return this->tryAllocPixels(info);
382 bool SK_WARN_UNUSED_RESULT tryAllocPixels() {
383 return this->tryAllocPixels((Allocator*)nullptr);
408 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
411 if (!this->tryAllocPixels(allocator))
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 230 bool SkBitmap::tryAllocPixels(Allocator* allocator) {
245 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) {
586 if (!tmpBitmap.tryAllocPixels(allocator)) {
610 if (!tmpBitmap.tryAllocPixels(allocator)) {

Completed in 192 milliseconds