HomeSort by relevance Sort by last modified time
    Searched defs:dstInfo (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/jni/
helloskia.cpp 24 AndroidBitmapInfo dstInfo;
26 AndroidBitmap_getInfo(env, dstBitmap, &dstInfo);
29 SkImageInfo info = SkImageInfo::MakeN32Premul(dstInfo.width, dstInfo.height);
32 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterDirect(info, dstPixels, dstInfo.stride));
  /external/skia/platform_tools/android/examples/hello_skia_app/jni/
helloskia.cpp 24 AndroidBitmapInfo dstInfo;
26 AndroidBitmap_getInfo(env, dstBitmap, &dstInfo);
29 SkImageInfo info = SkImageInfo::MakeN32Premul(dstInfo.width, dstInfo.height);
32 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterDirect(info, dstPixels, dstInfo.stride));
  /external/chromium_org/third_party/skia/src/core/
SkDevice.cpp 102 const SkImageInfo& dstInfo = this->imageInfo();
103 SkASSERT(x + info.width() <= dstInfo.width());
104 SkASSERT(y + info.height() <= dstInfo.height());
SkBitmapDevice.cpp 167 SkImageInfo dstInfo = fBitmap.info();
168 dstInfo.fWidth = srcInfo.width();
169 dstInfo.fHeight = srcInfo.height();
174 if (SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) {
181 bool SkBitmapDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
183 return fBitmap.readPixels(dstInfo, dstPixels, dstRowBytes, x, y);
SkBitmap.cpp 921 SkImageInfo dstInfo = requestedDstInfo;
923 dstInfo.fWidth = srcR.width();
924 dstInfo.fHeight = srcR.height();
934 dstPixels = ((char*)dstPixels - y * dstRB - x * dstInfo.bytesPerPixel());
946 srcInfo.fWidth = dstInfo.width();
947 srcInfo.fHeight = dstInfo.height();
950 return SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, this->rowBytes(),
1000 SkImageInfo dstInfo = src->info();
1001 dstInfo.fColorType = dstColorType;
1004 if (!tmpDst.setInfo(dstInfo)) {
    [all...]
  /external/skia/src/core/
SkDevice.cpp 102 const SkImageInfo& dstInfo = this->imageInfo();
103 SkASSERT(x + info.width() <= dstInfo.width());
104 SkASSERT(y + info.height() <= dstInfo.height());
SkBitmapDevice.cpp 171 static bool copy_pixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
173 if (srcInfo.dimensions() != dstInfo.dimensions()) {
176 if (4 == srcInfo.bytesPerPixel() && 4 == dstInfo.bytesPerPixel()) {
178 dstPI.fColorType = dstInfo.colorType();
179 dstPI.fAlphaType = dstInfo.alphaType();
191 if (srcInfo.colorType() == dstInfo.colorType()) {
197 if (srcInfo.alphaType() != dstInfo.alphaType()) {
218 SkImageInfo dstInfo = fBitmap.info();
219 dstInfo.fWidth = srcInfo.width();
220 dstInfo.fHeight = srcInfo.height()
    [all...]
SkBitmap.cpp 947 SkImageInfo dstInfo = src->info();
948 dstInfo.fColorType = dstColorType;
951 if (!tmpDst.setInfo(dstInfo)) {
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-aether-provider-3.2.1.jar 

Completed in 132 milliseconds