Home
last modified time | relevance | path

Searched refs:tryAllocPixels (Results 1 – 25 of 115) sorted by relevance

12345

/third_party/flutter/skia/include/core/
DSkBitmap.h478 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
512 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { in tryAllocPixels() function
513 return this->tryAllocPixels(info, info.minRowBytes()); in tryAllocPixels()
651 bool SK_WARN_UNUSED_RESULT tryAllocPixels() { in tryAllocPixels() function
652 return this->tryAllocPixels((Allocator*)nullptr); in tryAllocPixels()
673 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
/third_party/skia/include/core/
DSkBitmap.h472 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
508 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { in tryAllocPixels() function
509 return this->tryAllocPixels(info, info.minRowBytes()); in tryAllocPixels()
655 bool SK_WARN_UNUSED_RESULT tryAllocPixels() { in tryAllocPixels() function
656 return this->tryAllocPixels((Allocator*)nullptr); in tryAllocPixels()
679 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
/third_party/flutter/skia/docs/examples/
DBitmap_swap.cpp16 if (!one.tryAllocPixels( in draw()
20 if (!two.tryAllocPixels( in draw()
DBitmap_copy_operator.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_copy_const_SkBitmap.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_move_operator.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_move_SkBitmap.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_isImmutable.cpp9 if (original.tryAllocPixels(info)) { in draw()
DBitmap_tryAllocPixels_2.cpp8 … if (bitmap.tryAllocPixels(SkImageInfo::Make(64, 64, kGray_8_SkColorType, kOpaque_SkAlphaType))) { in draw()
DBitmap_isVolatile.cpp9 if (original.tryAllocPixels(info)) { in draw()
DBitmap_tryAllocPixels.cpp9 if (bitmap.tryAllocPixels(info, 0)) { in draw()
DBitmap_tryAllocPixels_3.cpp12 if (bitmap.tryAllocPixels()) { in draw()
DBitmap_allocPixels_4.cpp25 if (bitmap.tryAllocPixels(&tinyAllocator)) { in draw()
/third_party/skia/docs/examples/
DBitmap_swap.cpp16 if (!one.tryAllocPixels( in draw()
20 if (!two.tryAllocPixels( in draw()
DBitmap_copy_const_SkBitmap.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_copy_operator.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_move_SkBitmap.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_move_operator.cpp8 if (original.tryAllocPixels( in draw()
DBitmap_isImmutable.cpp9 if (original.tryAllocPixels(info)) { in draw()
DBitmap_tryAllocPixels_2.cpp8 … if (bitmap.tryAllocPixels(SkImageInfo::Make(64, 64, kGray_8_SkColorType, kOpaque_SkAlphaType))) { in draw()
DBitmap_tryAllocPixels.cpp9 if (bitmap.tryAllocPixels(info, 0)) { in draw()
DBitmap_tryAllocPixels_3.cpp12 if (bitmap.tryAllocPixels()) { in draw()
/third_party/flutter/skia/src/core/
DSkBitmap.cpp211 bool SkBitmap::tryAllocPixels(Allocator* allocator) { in tryAllocPixels() function in SkBitmap
223 return this->tryAllocPixels(info); in tryAllocN32Pixels()
237 SkASSERT_RELEASE(this->tryAllocPixels(allocator)); in allocPixels()
245 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes)); in allocPixels()
254 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { in tryAllocPixels() function in SkBitmap
556 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha()
580 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha()
/third_party/skia/src/core/
DSkBitmap.cpp204 bool SkBitmap::tryAllocPixels(Allocator* allocator) { in tryAllocPixels() function in SkBitmap
216 return this->tryAllocPixels(info); in tryAllocN32Pixels()
230 if (!this->tryAllocPixels(allocator)) { in allocPixels()
243 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes)); in allocPixels()
252 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { in tryAllocPixels() function in SkBitmap
543 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha()
567 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha()
/third_party/skia/src/android/
DSkAnimatedImage.cpp92 if (!fDecodingFrame.fBitmap.tryAllocPixels(fDecodeInfo)) { in SkAnimatedImage()
127 if (!tmp.tryAllocPixels(info)) { in init()
138 return fBitmap.tryAllocPixels(info); in init()
380 if (!dst.tryAllocPixels(imageInfo)) { in getCurrentFrame()

12345