Home
last modified time | relevance | path

Searched refs:profileType (Results 1 – 19 of 19) sorted by relevance

/external/skia/src/core/
DSkImageInfo.cpp12 static bool profile_type_is_valid(SkColorProfileType profileType) { in profile_type_is_valid() argument
13 return (profileType >= 0) && (profileType <= kLastEnum_SkColorProfileType); in profile_type_is_valid()
DSkBitmap.cpp747 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->colorType(), this->profileType(), &subset); in extractSubset()
918 const SkColorProfileType dstPT = this->profileType(); in deepCopyTo()
930 if (this->colorType() == dstCT && this->profileType() == dstPT) { in deepCopyTo()
DSkLinearBitmapPipeline.cpp607 if (imageInfo.profileType() == kSRGB_SkColorProfileType) { in choose_pixel_sampler()
DSkCanvas.cpp1183 return SkImageInfo::Make(w, h, prev.colorType(), alphaType, prev.profileType()); in make_layer_info()
/external/skia/src/codec/
DSkCodecPriv.h123 if (dst.profileType() != src.profileType() && in conversion_possible()
124 kLinear_SkColorProfileType != dst.profileType()) { in conversion_possible()
DSkWebpCodec.cpp88 if (dst.profileType() != src.profileType()) { in webp_conversion_possible()
DSkPngCodec.cpp313 SkColorProfileType profileType = kLinear_SkColorProfileType; in read_header() local
315 profileType = kSRGB_SkColorProfileType; in read_header()
319 *imageInfo = SkImageInfo::Make(origWidth, origHeight, colorType, alphaType, profileType); in read_header()
DSkJpegCodec.cpp170 if (dst.profileType() != src.profileType()) { in setOutputColorSpace()
/external/skia/src/gpu/
DGrSurface.cpp121 SkColorProfileType profileType; in info() local
122 if (!GrPixelConfig2ColorAndProfileType(this->config(), &colorType, &profileType)) { in info()
126 profileType); in info()
DSkGrPixelRef.cpp187 this->info().profileType())); in onReadPixels()
/external/skia/include/gpu/
DSkGr.h76 return SkImageInfo2GrPixelConfig(info.colorType(), info.alphaType(), info.profileType()); in SkImageInfo2GrPixelConfig()
/external/skia/include/core/
DSkBitmap.h88 SkColorProfileType profileType() const { return fInfo.profileType(); } in profileType() function
DSkImageInfo.h225 SkColorProfileType profileType() const { return fProfileType; } in profileType() function
/external/skia/src/android/
DSkBitmapRegionCanvas.cpp137 fDecoder->getInfo().profileType()); in conversionSupported()
DSkBitmapRegionCodec.cpp150 fCodec->getInfo().profileType()); in conversionSupported()
/external/skia/example/
DHelloWorld.cpp166 info.profileType()), in draw()
/external/skia/gm/
Dxfermodes3.cpp130 baseInfo.profileType()); in possiblyCreateTempSurface()
/external/skia/src/image/
DSkImage_Gpu.cpp113 info.profileType()); in onReadPixels()
/external/skia/samplecode/
DSampleApp.cpp57 if (config.fColorType == info.colorType() && config.fProfileType == info.profileType()) { in find_config_name()
313 bm.profileType()), in publishCanvas()