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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/image/
SkImagePriv.cpp 23 if (bm.getPixels()) {
24 image = SkImage::NewRasterCopy(info, bm.getPixels(), bm.rowBytes());
  /external/skia/include/core/
SkImageGenerator.h 60 virtual bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
110 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
114 * Simplified version of getPixels() that asserts that info is NOT kIndex8_SkColorType.
116 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
  /external/chromium_org/third_party/skia/include/core/
SkImageGenerator.h 54 virtual bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
104 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
108 * Simplified version of getPixels() that asserts that info is NOT kIndex8_SkColorType.
110 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
  /external/chromium_org/third_party/skia/src/lazy/
SkCachingPixelRef.cpp 56 if (!fImageGenerator->getPixels(info, fLockedBitmap.getPixels(), fRowBytes)) {
67 void* pixels = fLockedBitmap.getPixels();
  /external/skia/src/core/
SkImageGenerator.cpp 19 bool SkImageGenerator::getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
51 bool SkImageGenerator::getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
56 return this->getPixels(info, pixels, rowBytes, NULL, NULL);
SkProcSpriteBlitter.cpp 23 char* dst = (char*)fDevice.getPixels() + y * dstRB + (x << fDstShift);
24 const char* src = (const char*)fSource.getPixels() + (y - fTop) * srcRB + ((x - fLeft) << fSrcShift);
SkBitmap_scroll.cpp 61 if (this->getPixels() == NULL) {
65 char* dst = (char*)this->getPixels();
  /external/skia/tests/
CachedDecodingPixelRefTest.cpp 66 REPORTER_ASSERT(reporter, NULL != b1.getPixels());
67 REPORTER_ASSERT(reporter, NULL != b2.getPixels());
68 if ((!(b1.getPixels())) || (!(b2.getPixels()))) {
122 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
125 REPORTER_ASSERT(reporter, NULL != lazy.getPixels());
126 if (NULL == lazy.getPixels()) {
131 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
134 REPORTER_ASSERT(reporter, NULL != lazy.getPixels());
135 if (NULL == lazy.getPixels()) {
    [all...]
  /external/chromium_org/third_party/skia/dm/
DMUtil.cpp 88 const uint16_t* aPixels = (const uint16_t*)a.getPixels();
89 const uint16_t* bPixels = (const uint16_t*)b.getPixels();
101 const uint8_t* aBytes = (const uint8_t*)a.getPixels();
102 const uint8_t* bBytes = (const uint8_t*)b.getPixels();
116 return 0 == memcmp(a.getPixels(), b.getPixels(), a.getSize());
  /external/skia/dm/
DMUtil.cpp 71 const uint16_t* aPixels = (const uint16_t*)a.getPixels();
72 const uint16_t* bPixels = (const uint16_t*)b.getPixels();
84 const uint8_t* aBytes = (const uint8_t*)a.getPixels();
85 const uint8_t* bBytes = (const uint8_t*)b.getPixels();
99 return 0 == memcmp(a.getPixels(), b.getPixels(), a.getSize());
  /external/skia/src/lazy/
SkCachingPixelRef.cpp 62 if (!fImageGenerator->getPixels(info, bitmap.getPixels(), fRowBytes)) {
76 void* pixels = bitmap.getPixels();
  /external/chromium_org/third_party/skia/src/core/
SkProcSpriteBlitter.cpp 23 char* dst = (char*)fDevice.getPixels() + y * dstRB + (x << fDstShift);
24 const char* src = (const char*)fSource.getPixels() + (y - fTop) * srcRB + ((x - fLeft) << fSrcShift);
SkBitmap_scroll.cpp 61 if (this->getPixels() == NULL) {
65 char* dst = (char*)this->getPixels();
SkImageGenerator.cpp 19 bool SkImageGenerator::getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
51 bool SkImageGenerator::getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
56 return this->getPixels(info, pixels, rowBytes, NULL, NULL);
  /external/skia/src/gpu/
GrSurface.cpp 34 bm.getPixels());
  /external/skia/tools/
sk_tool_utils.cpp 29 canvas->writePixels(info, tmp.getPixels(), tmp.rowBytes(), x, y);
  /external/chromium_org/chrome/browser/chromeos/login/users/avatar/
user_image_manager_test_util.cc 38 uint8_t* first_data = reinterpret_cast<uint8_t*>(first_bitmap->getPixels());
39 uint8_t* second_data = reinterpret_cast<uint8_t*>(second_bitmap->getPixels());
  /external/chromium_org/third_party/skia/bench/
PremulAndUnpremulAlphaOpsBench.cpp 51 canvas->writePixels(fBmp1.info(), fBmp1.getPixels(), fBmp1.rowBytes(), 0, 0);
53 canvas->readPixels(fBmp2.info(), fBmp2.getPixels(), fBmp2.rowBytes(), 0, 0);
  /external/chromium_org/third_party/skia/tests/
RecordingXfermodeTest.cpp 217 0==memcmp( goldenBM.getPixels(), deprecatedBM.getPixels(), pixelsSize ),
220 0==memcmp( goldenBM.getPixels(), recordingBM.getPixels(), pixelsSize ),
223 if ( memcmp( goldenBM.getPixels(), deprecatedBM.getPixels(), pixelsSize ) ) {
229 if ( memcmp( goldenBM.getPixels(), newRecordingBM.getPixels(), pixelsSize ) ) {
CachedDecodingPixelRefTest.cpp 66 REPORTER_ASSERT(reporter, b1.getPixels());
67 REPORTER_ASSERT(reporter, b2.getPixels());
68 if ((!(b1.getPixels())) || (!(b2.getPixels()))) {
122 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
125 REPORTER_ASSERT(reporter, lazy.getPixels());
126 if (NULL == lazy.getPixels()) {
131 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
134 REPORTER_ASSERT(reporter, lazy.getPixels());
135 if (NULL == lazy.getPixels()) {
    [all...]
  /external/skia/bench/
PremulAndUnpremulAlphaOpsBench.cpp 51 canvas->writePixels(fBmp1.info(), fBmp1.getPixels(), fBmp1.rowBytes(), 0, 0);
53 canvas->readPixels(fBmp2.info(), fBmp2.getPixels(), fBmp2.rowBytes(), 0, 0);
  /external/skia/src/image/
SkImagePriv.cpp 62 if (bm.getPixels()) {
63 image = SkImage::NewRasterCopy(info, bm.getPixels(), bm.rowBytes());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
GraphicsUtilities.java 43 image.getPixels(0, y, image.width, colors, 0);
88 image.getPixels(0, y, image.width, colors, 0);
131 data.getPixels(x, (y + idx), 1, out, idx);
166 data.getPixels(x, y, width, out, 0);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 76 a.getPixels(aPixels, /*offset*/0, /*stride*/a.getWidth(), /*x*/0, /*y*/0, a.getWidth(),
78 b.getPixels(bPixels, /*offset*/0, /*stride*/b.getWidth(), /*x*/0, /*y*/0, b.getWidth(),
  /external/chromium_org/skia/ext/
bitmap_platform_device_skia.cc 64 return accessBitmap(true).getPixels();
91 surface_ = bitmap_.getPixels();

Completed in 1298 milliseconds

1 2 3 4 5 6 7 8 91011>>