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

  /external/skia/src/core/
SkBitmap.cpp 917 const SkColorType dstCT = this->colorType();
920 if (!this->canCopyTo(dstCT)) {
927 SkPixelRef* pixelRef = fPixelRef->deepCopy(dstCT, dstPT, nullptr);
930 if (this->colorType() == dstCT && this->profileType() == dstPT) {
942 const SkImageInfo info = fInfo.makeColorType(dstCT);
954 return this->copyTo(dst, dstCT, nullptr);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 744 SkColorType dstCT = GraphicsJNI::legacyBitmapConfigToColorType(dstConfigHandle);
748 if (!src.copyTo(&result, dstCT, &allocator)) {
756 static Bitmap* Bitmap_copyAshmemImpl(JNIEnv* env, SkBitmap& src, SkColorType& dstCT) {
760 if (!src.copyTo(&result, dstCT, &allocator)) {
771 SkColorType dstCT = src.colorType();
772 Bitmap* bitmap = Bitmap_copyAshmemImpl(env, src, dstCT);
780 SkColorType dstCT = GraphicsJNI::legacyBitmapConfigToColorType(dstConfigHandle);
781 Bitmap* bitmap = Bitmap_copyAshmemImpl(env, src, dstCT);
    [all...]

Completed in 1357 milliseconds