HomeSort by relevance Sort by last modified time
    Searched refs:dstRowBytes (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
SkConfig8888.h 17 size_t dstRowBytes,
41 size_t dstRowBytes,
62 size_t dstRowBytes,
72 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, dstConfig8888, srcPixels, srcRowBytes, SkCanvas::kNative_Premul_Config8888, w, h);
83 size_t dstRowBytes = dstBmp.rowBytes();
86 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, SkCanvas::kNative_Premul_Config8888, srcPixels, srcRowBytes, srcConfig8888, w, h);
SkConfig8888.cpp 151 size_t dstRowBytes,
165 dstPix += dstRowBytes;
172 size_t dstRowBytes,
180 convert_config8888<SkCanvas::kNative_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
183 convert_config8888<SkCanvas::kNative_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
186 convert_config8888<SkCanvas::kBGRA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
189 convert_config8888<SkCanvas::kBGRA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
192 convert_config8888<SkCanvas::kRGBA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
195 convert_config8888<SkCanvas::kRGBA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
206 size_t dstRowBytes,
    [all...]
SkBitmap.cpp 461 int dstRowBytes, bool preserveDstPad) const {
463 if (dstRowBytes == -1)
464 dstRowBytes = fRowBytes;
465 SkASSERT(dstRowBytes >= 0);
468 dstRowBytes < ComputeRowBytes(getConfig(), fWidth) ||
472 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
487 if (ComputeSafeSize(getConfig(), fWidth, fHeight, dstRowBytes) >
497 row++, srcP += fRowBytes, dstP += dstRowBytes) {
    [all...]
  /external/skia/include/core/
SkBitmap.h 241 In the case when the dstRowBytes matches the bitmap's rowBytes, the copy
252 @param dstRowBytes Width of each line in the buffer. If -1, uses
256 bool copyPixelsTo(void* const dst, size_t dstSize, int dstRowBytes = -1,
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp     [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 511 static void clamp_with_orig(uint8_t dst[], int dstRowBytes,
540 dst += dstRowBytes - sw;

Completed in 211 milliseconds