OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dstCT
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/core/
SkBitmap.cpp
669
bool SkBitmap::canCopyTo(SkColorType
dstCT
) const {
675
if (srcCT == kAlpha_8_SkColorType &&
dstCT
!= kAlpha_8_SkColorType) {
679
bool sameConfigs = (srcCT ==
dstCT
);
680
switch (
dstCT
) {
833
const SkColorType
dstCT
= this->colorType();
835
if (!this->canCopyTo(
dstCT
)) {
838
return this->copyTo(dst,
dstCT
, nullptr);
[
all
...]
/frameworks/base/core/jni/android/graphics/
Bitmap.cpp
756
static bool bitmapCopyTo(SkBitmap* dst, SkColorType
dstCT
, const SkBitmap& src,
760
if (kAlpha_8_SkColorType == src.colorType() && kAlpha_8_SkColorType !=
dstCT
) {
767
SkImageInfo dstInfo = src.info().makeColorType(
dstCT
);
768
if (
dstCT
== kRGBA_F16_SkColorType) {
778
switch (
dstCT
) {
808
return src.copyTo(dst,
dstCT
, alloc);
823
SkColorType
dstCT
= GraphicsJNI::legacyBitmapConfigToColorType(dstConfigHandle);
827
if (!bitmapCopyTo(&result,
dstCT
, src, &allocator)) {
834
static Bitmap* Bitmap_copyAshmemImpl(JNIEnv* env, SkBitmap& src, SkColorType&
dstCT
) {
838
if (!bitmapCopyTo(&result,
dstCT
, src, &allocator))
[
all
...]
Completed in 154 milliseconds