Searched defs:colorProfile (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageDecoder.h225 ColorProfile colorProfile; local
226 colorProfile.append(profile.data(), profile.size());
227 return colorProfile;
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.cpp185 void createColorTransform(const ColorProfile& colorProfile, bool hasAlpha) argument
189 if (colorProfile.isEmpty())
194 qcms_profile* inputProfile = qcms_profile_from_memory(colorProfile.data(), colorProfile.size());
271 static void readColorProfile(png_structp png, png_infop info, ColorProfile& colorProfile) argument
295 ASSERT(colorProfile.isEmpty());
297 colorProfile.append(profileData, profileLength);
358 ColorProfile colorProfile; local
359 readColorProfile(png, info, colorProfile);
361 m_reader->createColorTransform(colorProfile, decodedImageHasAlph
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp228 static void readColorProfile(jpeg_decompress_struct* info, ColorProfile& colorProfile) argument
247 ASSERT(colorProfile.isEmpty());
249 colorProfile.append(profileData, profileLength);
462 ColorProfile colorProfile; local
463 readColorProfile(info(), colorProfile); local
464 createColorTransform(colorProfile, colorSpaceHasAlpha(m_info.out_color_space));
612 void createColorTransform(const ColorProfile& colorProfile, bool hasAlpha) argument
616 if (colorProfile.isEmpty())
621 qcms_profile* inputProfile = qcms_profile_from_memory(colorProfile.data(), colorProfile
[all...]
/external/chromium_org/content/renderer/
H A Drender_view_impl.cc3702 WebVector<char> colorProfile = profile; local
3703 webview()->setDeviceColorProfile(colorProfile);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp3088 void WebViewImpl::setDeviceColorProfile(const WebVector<char>& colorProfile) argument
3094 deviceProfile.append(colorProfile.data(), colorProfile.size());

Completed in 627 milliseconds