HomeSort by relevance Sort by last modified time
    Searched refs:fProfileType (Results 1 - 3 of 3) sorted by null

  /external/skia/src/core/
SkImageInfo.cpp 30 fProfileType = (SkColorProfileType)((packed >> 16) & 0xFF);
33 buffer.validate(profile_type_is_valid(fProfileType) &&
42 SkASSERT(0 == (fProfileType & ~0xFF));
45 uint32_t packed = (fProfileType << 16) | (fAlphaType << 8) | fColorType;
  /external/skia/include/core/
SkImageInfo.h 175 , fProfileType(kLinear_SkColorProfileType)
225 SkColorProfileType profileType() const { return fProfileType; }
233 bool isLinear() const { return kLinear_SkColorProfileType == fProfileType; }
234 bool isSRGB() const { return kSRGB_SkColorProfileType == fProfileType; }
244 return SkImageInfo::Make(newWidth, newHeight, fColorType, fAlphaType, fProfileType);
248 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType);
252 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType);
310 SkColorProfileType fProfileType;
317 , fProfileType(pt)
  /external/skia/samplecode/
SampleApp.cpp 47 SkColorProfileType fProfileType;
57 if (config.fColorType == info.colorType() && config.fProfileType == info.profileType()) {
    [all...]

Completed in 1661 milliseconds