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

  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.h 56 void setColorProfile(const ColorProfile& colorProfile) { m_colorProfile = colorProfile; }
JPEGImageDecoder.cpp 95 static ColorProfile readColorProfile(jpeg_decompress_struct* info)
102 return ColorProfile();
104 ColorProfile colorProfile;
105 colorProfile.append(reinterpret_cast<char*>(profile), profileLength);
107 return colorProfile;
109 return ColorProfile();
  /external/webkit/Source/WebCore/platform/image-decoders/cg/
ImageDecoderCG.cpp 79 static CGColorSpaceRef createColorSpace(const ColorProfile& colorProfile)
81 if (colorProfile.isEmpty())
84 RetainPtr<CFDataRef> data(AdoptCF, CFDataCreate(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(colorProfile.data()), colorProfile.size()));
  /external/webkit/Source/WebCore/platform/image-decoders/skia/
ImageDecoderSkia.cpp 120 void ImageFrame::setColorProfile(const ColorProfile& colorProfile)
  /external/webkit/Source/WebCore/platform/image-decoders/qt/
ImageFrameQt.cpp 128 void ImageFrame::setColorProfile(const ColorProfile& colorProfile)
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 224 static ColorProfile readColorProfile(png_structp png, png_infop info)
232 ColorProfile colorProfile;
233 colorProfile.append(profile, profileLength);
234 return colorProfile;
237 return ColorProfile();
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.cpp 220 void ImageFrame::setColorProfile(const ColorProfile& colorProfile)
222 m_colorProfile = colorProfile;

Completed in 62 milliseconds