Home
last modified time | relevance | path

Searched refs:dstAlphaType (Results 1 – 11 of 11) sorted by relevance

/external/skia/gm/
Dreadpixels.cpp110 SkColorType dstColorType, SkAlphaType dstAlphaType, in draw_image() argument
115 dstAlphaType, dstColorSpace); in draw_image()
168 for (SkAlphaType dstAlphaType : alphaTypes) { in onDraw() local
169 draw_image(dContext, canvas, image.get(), dstColorType, dstAlphaType, in onDraw()
228 for (SkAlphaType dstAlphaType : alphaTypes) { in onDraw() local
230 draw_image(nullptr, canvas, image.get(), dstColorType, dstAlphaType, in onDraw()
295 for (SkAlphaType dstAlphaType : alphaTypes) { in onDraw() local
297 draw_image(nullptr, canvas, image.get(), dstColorType, dstAlphaType, in onDraw()
/external/skqp/gm/
Dreadpixels.cpp99 SkAlphaType dstAlphaType, sk_sp<SkColorSpace> dstColorSpace, in draw_image() argument
104 dstAlphaType, dstColorSpace); in draw_image()
156 for (SkAlphaType dstAlphaType : alphaTypes) { in onDraw() local
157 draw_image(canvas, image.get(), dstColorType, dstAlphaType, in onDraw()
216 for (SkAlphaType dstAlphaType : alphaTypes) { in onDraw() local
218 draw_image(canvas, image.get(), dstColorType, dstAlphaType, dstColorSpace, in onDraw()
282 for (SkAlphaType dstAlphaType : alphaTypes) { in onDraw() local
284 draw_image(canvas, image.get(), dstColorType, dstAlphaType, in onDraw()
/external/skqp/src/android/
DSkBitmapRegionCodec.cpp52 SkAlphaType dstAlphaType = fCodec->computeOutputAlphaType(requireUnpremul); in decodeRegion() local
54 dstColorType, dstAlphaType, dstColorSpace); in decodeRegion()
/external/skia/client_utils/android/
DBitmapRegionDecoder.cpp82 SkAlphaType dstAlphaType = fCodec->computeOutputAlphaType(requireUnpremul); in decodeRegion() local
84 SkImageInfo::Make(scaledSize, dstColorType, dstAlphaType, dstColorSpace); in decodeRegion()
/external/skia/src/codec/
DSkBmpStandardCodec.cpp65 bool SkBmpStandardCodec::createColorTable(SkColorType dstColorType, SkAlphaType dstAlphaType) { in createColorTable() argument
85 SkAlphaType packAlphaType = dstAlphaType; in createColorTable()
/external/skqp/src/codec/
DSkBmpStandardCodec.cpp65 bool SkBmpStandardCodec::createColorTable(SkColorType dstColorType, SkAlphaType dstAlphaType) { in createColorTable() argument
85 SkAlphaType packAlphaType = dstAlphaType; in createColorTable()
/external/skqp/dm/
DDM.cpp401 SkAlphaType dstAlphaType, float scale) { in push_codec_src() argument
445 switch (dstAlphaType) { in push_codec_src()
460 CodecSrc* src = new CodecSrc(path, mode, dstColorType, dstAlphaType, scale); in push_codec_src()
465 SkAlphaType dstAlphaType, int sampleSize) { in push_android_codec_src() argument
480 switch (dstAlphaType) { in push_android_codec_src()
495 AndroidCodecSrc* src = new AndroidCodecSrc(path, dstColorType, dstAlphaType, sampleSize); in push_android_codec_src()
DDMSrcSink.cpp309 CodecSrc::CodecSrc(Path path, Mode mode, DstColorType dstColorType, SkAlphaType dstAlphaType, in CodecSrc() argument
314 , fDstAlphaType(dstAlphaType) in CodecSrc()
337 CodecSrc::DstColorType dstColorType, SkAlphaType dstAlphaType) { in get_decode_info() argument
366 *decodeInfo = decodeInfo->makeAlphaType(dstAlphaType); in get_decode_info()
760 SkAlphaType dstAlphaType, int sampleSize) in AndroidCodecSrc() argument
763 , fDstAlphaType(dstAlphaType) in AndroidCodecSrc()
/external/skia/dm/
DDM.cpp486 SkAlphaType dstAlphaType, float scale) { in push_codec_src() argument
530 switch (dstAlphaType) { in push_codec_src()
545 CodecSrc* src = new CodecSrc(path, mode, dstColorType, dstAlphaType, scale); in push_codec_src()
550 SkAlphaType dstAlphaType, int sampleSize) { in push_android_codec_src() argument
565 switch (dstAlphaType) { in push_android_codec_src()
580 AndroidCodecSrc* src = new AndroidCodecSrc(path, dstColorType, dstAlphaType, sampleSize); in push_android_codec_src()
DDMSrcSink.cpp342 CodecSrc::CodecSrc(Path path, Mode mode, DstColorType dstColorType, SkAlphaType dstAlphaType, in CodecSrc() argument
347 , fDstAlphaType(dstAlphaType) in CodecSrc()
370 CodecSrc::DstColorType dstColorType, SkAlphaType dstAlphaType) { in get_decode_info() argument
399 *decodeInfo = decodeInfo->makeAlphaType(dstAlphaType); in get_decode_info()
813 SkAlphaType dstAlphaType, int sampleSize) in AndroidCodecSrc() argument
816 , fDstAlphaType(dstAlphaType) in AndroidCodecSrc()
/external/skia/src/gpu/
DGrSurfaceContext.cpp164 static bool alpha_types_compatible(SkAlphaType srcAlphaType, SkAlphaType dstAlphaType) { in alpha_types_compatible() argument
166 return (srcAlphaType == kUnknown_SkAlphaType) == (dstAlphaType == kUnknown_SkAlphaType); in alpha_types_compatible()