HomeSort by relevance Sort by last modified time
    Searched refs:tryAllocPixels (Results 1 - 25 of 33) sorted by null

1 2

  /external/skia/include/core/
SkBitmap.h 225 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
228 if (!this->tryAllocPixels(info, factory, ctable)) {
241 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
244 if (!this->tryAllocPixels(info, rowBytes)) {
249 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) {
250 return this->tryAllocPixels(info, info.minRowBytes());
260 return this->tryAllocPixels(info);
341 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) {
342 return this->tryAllocPixels(NULL, ctable);
367 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator, SkColorTable* ctable)
    [all...]
  /external/skia/src/lazy/
SkCachingPixelRef.cpp 52 if (!fLockedBitmap.tryAllocPixels(info, fRowBytes)) {
SkDiscardablePixelRef.cpp 125 return dst->tryAllocPixels();
  /external/skia/src/gpu/
GrSurface.cpp 58 if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(this->width(), this->height()))) {
SkGrPixelRef.cpp 150 return bitmap->tryAllocPixels();
GrSWMaskHelper.cpp 209 if (!fBM.tryAllocPixels(bmImageInfo)) {
  /external/skia/tests/
BitmapTest.cpp 19 REPORTER_ASSERT(reporter, !bm.tryAllocPixels(info));
BitmapCopyTest.cpp 394 if (src.tryAllocPixels(SkImageInfo::Make(localSubW, subH, gPairs[i].fColorType,
  /external/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,
973 if (!tmpDst.tryAllocPixels(alloc, ctable)) {
    [all...]
SkBitmapDevice.cpp 87 if (!bitmap.tryAllocPixels(info)) {
SkPictureShader.cpp 99 : bitmap->tryAllocPixels();
SkScalerContext.cpp 412 if (!bm.tryAllocPixels(info)) {
  /external/skia/src/effects/
SkBlurImageFilter.cpp 170 if (!dst->tryAllocPixels(src.info().makeWH(srcBounds.width(), srcBounds.height()))) {
194 if (!temp.tryAllocPixels(dst->info())) {
SkMatrixConvolutionImageFilter.cpp 252 if (!result.tryAllocPixels(src.info())) {
294 if (!result->tryAllocPixels(src.info().makeWH(bounds.width(), bounds.height()))) {
SkAlphaThresholdFilter.cpp 337 if (!dst->tryAllocPixels(src.info())) {
SkMagnifierImageFilter.cpp 335 if (!dst->tryAllocPixels(src.info())) {
SkMorphologyImageFilter.cpp 158 if (!dst->tryAllocPixels(src.info().makeWH(bounds.width(), bounds.height()))) {
183 if (!temp.tryAllocPixels(dst->info())) {
  /external/skia/src/image/
SkImage_Gpu.cpp 50 if (!dst->tryAllocPixels(SkImageInfo::MakeN32(this->width(), this->height(), at))) {
  /external/skia/src/images/
SkDecodingImageGenerator.cpp 70 return bm->tryAllocPixels(NULL, ct);
SkImageDecoder.cpp 105 return bitmap->tryAllocPixels(fAllocator, ctable);
SkImageDecoder_libwebp.cpp 378 : bitmap->tryAllocPixels();
  /external/skia/src/utils/mac/
SkCreateCGImageRef.cpp 283 if (!tmp.tryAllocPixels(info)) {
  /external/skia/samplecode/
SampleFilterFuzz.cpp 161 } while (!valid_for_raster_canvas(info) || !bitmap->tryAllocPixels(info));
  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 387 if (!outputBitmap.tryAllocPixels(outputAllocator, NULL)) {
  /external/skia/dm/
DMSrcSink.cpp 124 if (!bitmap.tryAllocPixels(decodeInfo, NULL, colorTable.get())) {

Completed in 247 milliseconds

1 2