HomeSort by relevance Sort by last modified time
    Searched full:dstct (Results 1 - 5 of 5) sorted by null

  /external/skia/src/opts/
SkBlitMask_opts_none.cpp 14 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT,
SkBlitMask_opts_arm.cpp 22 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT,
  /external/skia/src/gpu/
SkGrPixelRef.cpp 53 static SkGrPixelRef* copy_to_new_texture_pixelref(GrTexture* texture, SkColorType dstCT,
55 if (nullptr == texture || kUnknown_SkColorType == dstCT) {
78 desc.fConfig = SkImageInfo2GrPixelConfig(dstCT, kPremul_SkAlphaType, dstPT);
92 SkImageInfo info = SkImageInfo::Make(desc.fWidth, desc.fHeight, dstCT, kPremul_SkAlphaType,
134 SkPixelRef* SkGrPixelRef::deepCopy(SkColorType dstCT, SkColorProfileType dstPT,
146 return copy_to_new_texture_pixelref(fSurface->asTexture(), dstCT, dstPT, subset);
  /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 257 milliseconds