Searched refs:fProfileType (Results 1 – 3 of 3) sorted by relevance
/external/skia/include/core/ |
D | SkImageInfo.h | 175 , fProfileType(kLinear_SkColorProfileType) in SkImageInfo() 225 SkColorProfileType profileType() const { return fProfileType; } in profileType() 233 bool isLinear() const { return kLinear_SkColorProfileType == fProfileType; } in isLinear() 234 bool isSRGB() const { return kSRGB_SkColorProfileType == fProfileType; } in isSRGB() 244 return SkImageInfo::Make(newWidth, newHeight, fColorType, fAlphaType, fProfileType); in makeWH() 248 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType); in makeAlphaType() 252 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType); in makeColorType() 310 SkColorProfileType fProfileType; member 317 , fProfileType(pt) in SkImageInfo()
|
/external/skia/src/core/ |
D | SkImageInfo.cpp | 30 fProfileType = (SkColorProfileType)((packed >> 16) & 0xFF); in unflatten() 33 buffer.validate(profile_type_is_valid(fProfileType) && in unflatten() 42 SkASSERT(0 == (fProfileType & ~0xFF)); in flatten() 45 uint32_t packed = (fProfileType << 16) | (fAlphaType << 8) | fColorType; in flatten()
|
/external/skia/samplecode/ |
D | SampleApp.cpp | 47 SkColorProfileType fProfileType; member 57 if (config.fColorType == info.colorType() && config.fProfileType == info.profileType()) { in find_config_name() 1585 this->setDeviceColorType(gConfig[selected].fColorType, gConfig[selected].fProfileType); in onEvent()
|