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

  /external/chromium_org/third_party/skia/src/core/
SkConfig8888.h 47 const SkBitmap& srcBmp) {
48 SkASSERT(SkBitmap::kARGB_8888_Config == srcBmp.config());
49 SkAutoLockPixels alp(srcBmp);
50 int w = srcBmp.width();
51 int h = srcBmp.height();
52 size_t srcRowBytes = srcBmp.rowBytes();
53 const uint32_t* srcPixels = reinterpret_cast<uint32_t*>(srcBmp.getPixels());
  /external/skia/src/core/
SkConfig8888.h 47 const SkBitmap& srcBmp) {
48 SkASSERT(SkBitmap::kARGB_8888_Config == srcBmp.config());
49 SkAutoLockPixels alp(srcBmp);
50 int w = srcBmp.width();
51 int h = srcBmp.height();
52 size_t srcRowBytes = srcBmp.rowBytes();
53 const uint32_t* srcPixels = reinterpret_cast<uint32_t*>(srcBmp.getPixels());
  /external/skia/gm/
xfermodes2.cpp 124 SkBitmap srcBmp;
125 srcBmp.setConfig(SkBitmap::kARGB_8888_Config, kSize, kSize);
126 srcBmp.allocPixels();
127 SkAutoLockPixels srcAlp(srcBmp);
128 pixels = reinterpret_cast<SkPMColor*>(srcBmp.getPixels());
137 fDst.reset(SkShader::CreateBitmapShader(srcBmp,
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/win/
TransparencyWin.cpp 82 const SkBitmap& srcBmp = devices[i].device->accessBitmap(false);
87 destRect.fRight = destRect.fLeft + srcBmp.width();
88 destRect.fBottom = destRect.fTop + srcBmp.height();
90 destCanvas.drawBitmapRect(srcBmp, 0, destRect);

Completed in 32 milliseconds