Searched refs:minRowBytes (Results 1 - 25 of 51) sorted by relevance

123

/external/chromium_org/third_party/skia/src/image/
H A DSkImagePriv.h30 return SkAlign4(info.minRowBytes());
/external/skia/src/image/
H A DSkImagePriv.h31 return SkAlign4(info.minRowBytes());
/external/chromium_org/third_party/skia/tests/
H A DBitmapTest.cpp16 const size_t explicitRowBytes = info.minRowBytes() + 24;
20 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
22 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
25 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
37 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
40 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
43 bool success = bm.setInfo(info, info.minRowBytes() - 1); // invalid for 32bit
H A DBitmapGetColorTest.cpp40 bm.installPixels(info, storage, info.minRowBytes());
H A DMallocPixelRefTest.cpp28 SkMallocPixelRef::NewAllocate(info, info.minRowBytes() - 1, NULL));
33 size_t rowBytes = info.minRowBytes() - 1;
42 size_t rowBytes = info.minRowBytes() + 2;
50 size_t rowBytes = info.minRowBytes() + 7;
H A DSurfaceTest.cpp48 const size_t rowBytes = info.minRowBytes();
76 size_t rowBytes = info.minRowBytes();
92 const size_t rowBytes = info.minRowBytes();
151 REPORTER_ASSERT(reporter, info.minRowBytes() <= rowBytes);
212 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= rowBytes);
/external/chromium_org/cc/test/
H A Dskia_common.cc21 bitmap.installPixels(info, buffer, info.minRowBytes());
/external/chromium_org/third_party/skia/src/core/
H A DSkMallocPixelRef.cpp59 int32_t minRB = SkToS32(info.minRowBytes());
116 if ((rowBytes < info.minRowBytes())
142 SkASSERT(rowBytes >= info.minRowBytes());
165 SkASSERT(rowBytes >= info.minRowBytes());
H A DSkImageGenerator.cpp27 if (rowBytes < info.minRowBytes()) {
H A DSkDevice.cpp154 SkASSERT(rowBytes >= info.minRowBytes());
169 SkASSERT(rowBytes >= info.minRowBytes());
/external/skia/tests/
H A DBitmapGetColorTest.cpp40 bm.installPixels(info, storage, info.minRowBytes());
H A DMallocPixelRefTest.cpp28 SkMallocPixelRef::NewAllocate(info, info.minRowBytes() - 1, NULL));
33 size_t rowBytes = info.minRowBytes() - 1;
44 size_t rowBytes = info.minRowBytes() + 2;
54 size_t rowBytes = info.minRowBytes() + 7;
H A DSurfaceTest.cpp47 info.minRowBytes());
71 size_t rowBytes = info.minRowBytes();
88 const size_t rowBytes = info.minRowBytes();
146 REPORTER_ASSERT(reporter, info.minRowBytes() <= rowBytes);
192 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= rowBytes);
/external/skia/src/core/
H A DSkMallocPixelRef.cpp60 int32_t minRB = SkToS32(info.minRowBytes());
117 if ((rowBytes < info.minRowBytes())
143 SkASSERT(rowBytes >= info.minRowBytes());
166 SkASSERT(rowBytes >= info.minRowBytes());
245 return SkMallocPixelRef::NewAllocate(info, info.minRowBytes(), ctable);
H A DSkImageGenerator.cpp27 if (rowBytes < info.minRowBytes()) {
H A DSkDevice.cpp84 SkASSERT(rowBytes >= info.minRowBytes());
99 SkASSERT(rowBytes >= info.minRowBytes());
/external/chromium_org/cc/output/
H A Dsoftware_output_device.cc49 canvas_->readPixels(info, pixels, info.minRowBytes(), rect.x(), rect.y());
/external/chromium_org/cc/resources/
H A Dui_resource_bitmap.cc69 SkMallocPixelRef::NewAllocate(info, info.minRowBytes(), NULL));
H A Draster_worker_pool.cc212 stride = info.minRowBytes();
236 const size_t dst_row_bytes = SkAlign4(dst_info.minRowBytes());
/external/chromium_org/ui/ozone/platform/caca/
H A Dcaca_window_manager.cc76 info.minRowBytes(),
/external/chromium_org/ui/ozone/platform/dri/test/
H A Dmock_dri_wrapper.cc144 *stride = info.minRowBytes();
/external/chromium_org/content/renderer/gpu/
H A Dcompositor_software_output_device.cc156 bitmap.installPixels(info, current->memory(), info.minRowBytes());
177 back_bitmap.installPixels(info, previous->memory(), info.minRowBytes());
/external/chromium_org/content/browser/compositor/
H A Dsoftware_output_device_win.cc104 info, pixels, info.minRowBytes(), rect.x(), rect.y());
/external/chromium_org/third_party/skia/include/core/
H A DSkImageInfo.h236 size_t minRowBytes() const { function in struct:SkImageInfo
/external/chromium_org/third_party/skia/platform_tools/nacl/src/
H A Dnacl_debugger.cpp171 fBitmap.installPixels(info, fImage.data(), info.minRowBytes());

Completed in 474 milliseconds

123