Home
last modified time | relevance | path

Searched refs:ColorProfile (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/platform/image-decoders/
DImageDecoder.h51 typedef Vector<char> ColorProfile; typedef
133 void setColorProfile(const ColorProfile&);
206 ColorProfile m_colorProfile;
337 ColorProfile m_colorProfile;
DImageDecoder.cpp220 void ImageFrame::setColorProfile(const ColorProfile& colorProfile) in setColorProfile()
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/
DJPEGImageDecoder.cpp95 static ColorProfile readColorProfile(jpeg_decompress_struct* info) in readColorProfile()
102 return ColorProfile(); in readColorProfile()
104 ColorProfile colorProfile; in readColorProfile()
109 return ColorProfile(); in readColorProfile()
DJPEGImageDecoder.h56 void setColorProfile(const ColorProfile& colorProfile) { m_colorProfile = colorProfile; } in setColorProfile()
/external/webkit/Source/WebCore/platform/image-decoders/png/
DPNGImageDecoder.cpp224 static ColorProfile readColorProfile(png_structp png, png_infop info) in readColorProfile()
232 ColorProfile colorProfile; in readColorProfile()
237 return ColorProfile(); in readColorProfile()
/external/webkit/Source/WebCore/platform/image-decoders/skia/
DImageDecoderSkia.cpp120 void ImageFrame::setColorProfile(const ColorProfile& colorProfile) in setColorProfile()
/external/webkit/Source/WebCore/platform/image-decoders/qt/
DImageFrameQt.cpp128 void ImageFrame::setColorProfile(const ColorProfile& colorProfile) in setColorProfile()
/external/webkit/Source/WebCore/platform/image-decoders/cg/
DImageDecoderCG.cpp79 static CGColorSpaceRef createColorSpace(const ColorProfile& colorProfile) in createColorSpace()