HomeSort by relevance Sort by last modified time
    Searched refs:rowBytes (Results 51 - 75 of 264) sorted by null

1 23 4 5 6 7 8 91011

  /external/skia/include/gpu/
GrSurface.h 100 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
110 size_t rowBytes = 0,
114 * Copy the src pixels [buffer, rowbytes, pixelconfig] into the surface at the specified
122 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
129 size_t rowBytes = 0,
  /external/skia/src/core/
SkConfig8888.h 40 Copies all pixels from a bitmap to a dst ptr with a given rowBytes and
52 size_t srcRowBytes = srcBmp.rowBytes();
59 Copies over all pixels in a bitmap from a src ptr with a given rowBytes and
70 size_t dstRowBytes = dstBmp.rowBytes();
SkMipMap.cpp 28 p += src.rowBytes() >> 2;
66 p += src.rowBytes() >> 1;
101 p += src.rowBytes() >> 1;
183 uint32_t rowBytes;
189 rowBytes = SkToU32(SkBitmap::ComputeRowBytes(config, width));
194 levels[i].fRowBytes = rowBytes;
198 dstBM.setConfig(config, width, height, rowBytes);
210 addr += height * rowBytes;
SkSpriteBlitter_ARGB32.cpp 42 size_t dstRB = fDevice->rowBytes();
43 size_t srcRB = fSource->rowBytes();
130 size_t dstRB = fDevice->rowBytes();
131 size_t srcRB = fSource->rowBytes();
177 size_t dstRB = fDevice->rowBytes();
178 size_t srcRB = fSource->rowBytes();
224 size_t dstRB = fDevice->rowBytes();
225 size_t srcRB = fSource->rowBytes();
253 size_t dstRB = fDevice->rowBytes();
254 size_t srcRB = fSource->rowBytes();
    [all...]
SkBitmap.cpp 188 Sk64 rowBytes;
189 rowBytes.setZero();
196 rowBytes.set(width);
200 rowBytes.set(width);
201 rowBytes.shiftLeft(1);
204 rowBytes.set(width);
205 rowBytes.shiftLeft(2);
211 return isPos32Bits(rowBytes) ? rowBytes.get32() : 0;
228 size_t rowBytes) {
    [all...]
SkBlitter_A8.cpp 169 device += fDevice.rowBytes();
183 size_t rowBytes = fDevice.rowBytes();
188 device += rowBytes;
195 device += rowBytes;
215 device += fDevice.rowBytes();
224 device += fDevice.rowBytes();
346 device += fDevice.rowBytes();
393 const size_t dstRB = fDevice.rowBytes();
402 const size_t dstRB = fDevice.rowBytes();
    [all...]
SkSpriteBlitterTemplate.h 25 size_t dstRB = fDevice->rowBytes();
26 size_t srcRB = fSource->rowBytes();
SkBlitRow_D32.cpp 194 size_t rowBytes, SkPMColor color) {
210 dst = (SkPMColor*) ((char*)dst + rowBytes);
217 dst = (SkPMColor*) ((char*)dst + rowBytes);
223 dst = (SkPMColor*) ((char*)dst + rowBytes);
229 dst = (SkPMColor*) ((char*)dst + rowBytes);
235 dst = (SkPMColor*) ((char*)dst + rowBytes);
  /external/chromium_org/third_party/skia/src/core/
SkSpriteBlitter_ARGB32.cpp 42 size_t dstRB = fDevice->rowBytes();
43 size_t srcRB = fSource->rowBytes();
130 size_t dstRB = fDevice->rowBytes();
131 size_t srcRB = fSource->rowBytes();
177 size_t dstRB = fDevice->rowBytes();
178 size_t srcRB = fSource->rowBytes();
224 size_t dstRB = fDevice->rowBytes();
225 size_t srcRB = fSource->rowBytes();
253 size_t dstRB = fDevice->rowBytes();
254 size_t srcRB = fSource->rowBytes();
    [all...]
SkBitmap.cpp 188 Sk64 rowBytes;
189 rowBytes.setZero();
196 rowBytes.set(width);
200 rowBytes.set(width);
201 rowBytes.shiftLeft(1);
204 rowBytes.set(width);
205 rowBytes.shiftLeft(2);
211 return isPos32Bits(rowBytes) ? rowBytes.get32() : 0;
228 size_t rowBytes) {
    [all...]
SkBlitter_A8.cpp 169 device += fDevice.rowBytes();
183 size_t rowBytes = fDevice.rowBytes();
188 device += rowBytes;
195 device += rowBytes;
215 device += fDevice.rowBytes();
224 device += fDevice.rowBytes();
346 device += fDevice.rowBytes();
393 const size_t dstRB = fDevice.rowBytes();
402 const size_t dstRB = fDevice.rowBytes();
    [all...]
SkSpriteBlitterTemplate.h 25 size_t dstRB = fDevice->rowBytes();
26 size_t srcRB = fSource->rowBytes();
SkBlitRow_D32.cpp 194 size_t rowBytes, SkPMColor color) {
210 dst = (SkPMColor*) ((char*)dst + rowBytes);
217 dst = (SkPMColor*) ((char*)dst + rowBytes);
223 dst = (SkPMColor*) ((char*)dst + rowBytes);
229 dst = (SkPMColor*) ((char*)dst + rowBytes);
235 dst = (SkPMColor*) ((char*)dst + rowBytes);
  /external/chromium_org/third_party/skia/src/gpu/
GrGpu.h 87 const void* srcData, size_t rowBytes);
177 * do memcpys to handle rowBytes that aren't tight. It could do the y-flip
191 size_t rowBytes) const = 0;
210 * @param rowBytes the number of bytes between consecutive rows. Zero
221 GrPixelConfig config, void* buffer, size_t rowBytes);
232 * @param rowBytes number of bytes between consecutive rows. Zero
238 size_t rowBytes);
422 size_t rowBytes) = 0;
449 size_t rowBytes) = 0;
455 size_t rowBytes) = 0
    [all...]
GrTexture.cpp 49 size_t rowBytes, uint32_t pixelOpsFlags) {
57 config, buffer, rowBytes,
63 size_t rowBytes, uint32_t pixelOpsFlags) {
71 config, buffer, rowBytes,
SkGr.cpp 47 if ((unsigned)bitmap.width() == bitmap.rowBytes()) {
52 size_t rowBytes = bitmap.rowBytes();
56 src += rowBytes;
135 // "rowBytes", since they are the same now.
175 bitmap->getPixels(), bitmap->rowBytes(), &key);
191 bitmap->rowBytes());
  /external/skia/src/gpu/
GrGpu.h 87 const void* srcData, size_t rowBytes);
177 * do memcpys to handle rowBytes that aren't tight. It could do the y-flip
191 size_t rowBytes) const = 0;
210 * @param rowBytes the number of bytes between consecutive rows. Zero
221 GrPixelConfig config, void* buffer, size_t rowBytes);
232 * @param rowBytes number of bytes between consecutive rows. Zero
238 size_t rowBytes);
422 size_t rowBytes) = 0;
449 size_t rowBytes) = 0;
455 size_t rowBytes) = 0
    [all...]
GrTexture.cpp 49 size_t rowBytes, uint32_t pixelOpsFlags) {
57 config, buffer, rowBytes,
63 size_t rowBytes, uint32_t pixelOpsFlags) {
71 config, buffer, rowBytes,
  /external/chromium_org/third_party/skia/src/image/
SkImagePriv.h 20 size_t rowBytes);
  /external/chromium_org/ui/gfx/image/
image_util.cc 43 static_cast<int>(bitmap.rowBytes()), quality,
  /external/skia/src/image/
SkImagePriv.h 20 size_t rowBytes);
  /external/chromium_org/third_party/skia/include/core/
SkImage.h 63 static SkImage* NewRasterCopy(const Info&, const void* pixels, size_t rowBytes);
64 static SkImage* NewRasterData(const Info&, SkData* pixels, size_t rowBytes);
  /external/chromium_org/ui/base/dragdrop/
drag_utils_win.cc 52 DCHECK_EQ(sk_bitmap.rowBytes(), static_cast<size_t>(sk_bitmap.width() * 4));
55 bits, sk_bitmap.getPixels(), sk_bitmap.height() * sk_bitmap.rowBytes());
  /external/skia/include/core/
SkImage.h 63 static SkImage* NewRasterCopy(const Info&, const void* pixels, size_t rowBytes);
64 static SkImage* NewRasterData(const Info&, SkData* pixels, size_t rowBytes);
  /external/chromium_org/third_party/skia/src/images/
SkDecodingImageGenerator.cpp 23 TargetAllocator(void* target, size_t rowBytes, const SkImageInfo& info)
25 , fRowBytes(rowBytes)
143 size_t rowBytes) {
165 if (static_cast<size_t>(bpp * info.fWidth) > rowBytes) {
169 if (!bitmap.setConfig(info, rowBytes)) {
173 TargetAllocator allocator(pixels, rowBytes, info);

Completed in 587 milliseconds

1 23 4 5 6 7 8 91011