/external/skia/tests/ |
D | PixelRefTest.cpp | 26 success = bm.installPixels(info, nullptr, 0, nullptr, decrement_counter_proc, &release_counter); in test_dont_leak_install() 33 success = bm.installPixels(info, nullptr, 0, nullptr, decrement_counter_proc, &release_counter); in test_dont_leak_install() 40 success = bm.installPixels(info, nullptr, 0, nullptr, decrement_counter_proc, &release_counter); in test_dont_leak_install() 51 success = bm.installPixels(info, nullptr, 0); in test_install() 56 success = bm.installPixels(info, nullptr, 0); in test_install()
|
D | BitmapCopyTest.cpp | 481 bufBm.installPixels(info, buf, info.minRowBytes() * 2); in DEF_TEST() 500 bufBm.installPixels(info, buf, subset.rowBytes()); in DEF_TEST() 512 bufBm.installPixels(info, buf, subset.rowBytes()+1); in DEF_TEST() 524 bufBm.installPixels(info, buf, info.minRowBytes()); in DEF_TEST() 539 bufBm.installPixels(info, buf, info.minRowBytes()); in DEF_TEST() 550 bufBm.installPixels(info, buf, info.minRowBytes()); in DEF_TEST() 613 srcBM.installPixels(srcInfo, srcPixels, rowBytes); in DEF_TEST()
|
D | BitmapGetColorTest.cpp | 40 bm.installPixels(info, storage, info.minRowBytes()); in DEF_TEST()
|
D | ApplyGammaTest.cpp | 93 bm.installPixels(ii, srcPixels.get(), kRowBytes); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
D | DrawPathTest.cpp | 19 output.installPixels(SkImageInfo::MakeN32Premul(1, 1), pixel, 4); in test_big_aa_rect()
|
/external/skia/include/core/ |
D | SkBitmap.h | 301 bool installPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkColorTable*, 309 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) { in installPixels() function 310 return this->installPixels(info, pixels, rowBytes, NULL, NULL, NULL); in installPixels() 319 bool installPixels(const SkPixmap&);
|
/external/skia/gm/ |
D | composeshader.cpp | 244 skBitmap.installPixels(imageInfo, dst32Storage.begin(), width * sizeof(int32_t), 248 skMask.installPixels(imageInfo, dst8Storage.begin(), width, nullptr, nullptr, nullptr);
|
D | showmiplevels.cpp | 171 bm.installPixels(curr); in drawSet() 269 bm.installPixels(level.fPixmap); in drawLevels()
|
D | colortypexfermode.cpp | 44 fBG.installPixels(SkImageInfo::Make(2, 2, kARGB_4444_SkColorType, in onOnceBeforeDraw()
|
D | xfermodes.cpp | 197 fBG.installPixels(SkImageInfo::Make(2, 2, kARGB_4444_SkColorType, in onOnceBeforeDraw()
|
/external/skia/src/ports/ |
D | SkImageEncoder_CG.cpp | 66 if (!bm.installPixels(pixmap)) { in SkEncodeImageWithCG()
|
D | SkImageEncoder_WIC.cpp | 66 if (!bitmapOrig.installPixels(pixmap)) { in SkEncodeImageWithWIC()
|
/external/skia/src/core/ |
D | SkPictureImageGenerator.cpp | 67 if (!bitmap.installPixels(info, pixels, rowBytes)) { in onGetPixels()
|
D | SkBitmap.cpp | 390 bool SkBitmap::installPixels(const SkImageInfo& requestedInfo, void* pixels, size_t rb, in installPixels() function in SkBitmap 421 bool SkBitmap::installPixels(const SkPixmap& pixmap) { in installPixels() function in SkBitmap 422 return this->installPixels(pixmap.info(), pixmap.writable_addr(), in installPixels() 432 return this->installPixels(SkImageInfo::MakeA8(mask.fBounds.width(), in installMaskPixels()
|
D | SkBitmapController.cpp | 206 return fResultBitmap.installPixels(level.fPixmap); in processMediumRequest()
|
D | SkPixmap.cpp | 246 if (!bitmap.installPixels(*this)) { in scalePixels()
|
/external/skia/samplecode/ |
D | SampleXfermodesBlur.cpp | 70 fBG.installPixels(SkImageInfo::Make(2, 2, kARGB_4444_SkColorType, kPremul_SkAlphaType), in XfermodesBlurView()
|
D | SampleHairline.cpp | 207 bm2.installPixels(SkImageInfo::MakeN32Premul(WIDTH, HEIGHT), in onDrawContent()
|
D | SampleBigGradient.cpp | 305 bm.installPixels(pm); in onDrawContent()
|
/external/skia/src/image/ |
D | SkSurface_Raster.cpp | 106 fBitmap.installPixels(info, pixels, rb, nullptr, releaseProc, context); in SkSurface_Raster()
|
D | SkImage_Raster.cpp | 157 fBitmap.installPixels(info, addr, rowBytes, ctable, release_data, data.release()); in SkImage_Raster()
|
/external/skia/src/fonts/ |
D | SkRandomScalerContext.cpp | 160 bm.installPixels(SkImageInfo::MakeN32Premul(glyph.fWidth, glyph.fHeight), in generateImage()
|
D | SkGScalerContext.cpp | 116 bm.installPixels(SkImageInfo::MakeN32Premul(glyph.fWidth, glyph.fHeight), in generateImage()
|
D | SkTestScalerContext.cpp | 260 bm.installPixels(SkImageInfo::MakeN32Premul(glyph.fWidth, glyph.fHeight), in generateImage()
|
/external/skia/src/utils/ |
D | SkCanvasStateUtils.cpp | 277 bitmap.installPixels(SkImageInfo::Make(layerState.width, layerState.height, in make_canvas_from_canvas_layer()
|