Skip to content

Commit bcc92ec

Browse files
committed
[GTK] Remove PlatformDisplay::colorProfile()
https://bugs.webkit.org/show_bug.cgi?id=276991 Reviewed by Michael Catanzaro. This is used by some image decoders to convert from embedded ICC profile to destination target. However, the target is not really the display, but the SkImage that is always created with SRGB color space. Also, PlatformDisplay::colorProfile() is always creating an SRGB profile except for X11 platform that the profile id the one from the display. * Source/WebCore/platform/graphics/PlatformDisplay.cpp: (WebCore::PlatformDisplay::colorProfile const): Deleted. * Source/WebCore/platform/graphics/PlatformDisplay.h: * Source/WebCore/platform/graphics/x11/PlatformDisplayX11.cpp: (WebCore::PlatformDisplayX11::colorProfile const): Deleted. * Source/WebCore/platform/graphics/x11/PlatformDisplayX11.h: * Source/WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.cpp: (WebCore::JPEGImageDecoder::setICCProfile): * Source/WebCore/platform/image-decoders/jpegxl/JPEGXLImageDecoder.cpp: (WebCore::JPEGXLImageDecoder::prepareColorTransform): * Source/WebCore/platform/image-decoders/png/PNGImageDecoder.cpp: (WebCore::PNGImageDecoder::headerAvailable): Canonical link: https://commits.webkit.org/281293@main
1 parent c8074e2 commit bcc92ec

File tree

7 files changed

+17
-85
lines changed

7 files changed

+17
-85
lines changed

Source/WebCore/platform/graphics/PlatformDisplay.cpp

-9
Original file line numberDiff line numberDiff line change
@@ -592,15 +592,6 @@ const Vector<PlatformDisplay::DMABufFormat>& PlatformDisplay::dmabufFormats()
592592
}
593593
#endif // USE(GBM)
594594

595-
#if USE(LCMS)
596-
cmsHPROFILE PlatformDisplay::colorProfile() const
597-
{
598-
if (!m_iccProfile)
599-
m_iccProfile = LCMSProfilePtr(cmsCreate_sRGBProfile());
600-
return m_iccProfile.get();
601-
}
602-
#endif
603-
604595
#if USE(ATSPI)
605596
const String& PlatformDisplay::accessibilityBusAddress() const
606597
{

Source/WebCore/platform/graphics/PlatformDisplay.h

-12
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ typedef struct _GstGLContext GstGLContext;
5555
typedef struct _GstGLDisplay GstGLDisplay;
5656
#endif // ENABLE(VIDEO) && USE(GSTREAMER_GL)
5757

58-
#if USE(LCMS)
59-
#include "LCMSUniquePtr.h"
60-
#endif
61-
6258
#if USE(SKIA)
6359
#include <skia/gpu/GrDirectContext.h>
6460
#include <wtf/ThreadSafeWeakHashSet.h>
@@ -148,10 +144,6 @@ class PlatformDisplay {
148144
GrDirectContext* skiaGrContext();
149145
#endif
150146

151-
#if USE(LCMS)
152-
virtual cmsHPROFILE colorProfile() const;
153-
#endif
154-
155147
#if USE(ATSPI)
156148
const String& accessibilityBusAddress() const;
157149
#endif
@@ -190,10 +182,6 @@ class PlatformDisplay {
190182
void* m_angleNativeDisplay { nullptr };
191183
#endif
192184

193-
#if USE(LCMS)
194-
mutable LCMSProfilePtr m_iccProfile;
195-
#endif
196-
197185
#if USE(ATSPI)
198186
virtual String platformAccessibilityBusAddress() const { return { }; }
199187

Source/WebCore/platform/graphics/x11/PlatformDisplayX11.cpp

-40
Original file line numberDiff line numberDiff line change
@@ -144,46 +144,6 @@ void PlatformDisplayX11::initializeEGLDisplay()
144144
#endif
145145
}
146146

147-
#if USE(LCMS)
148-
cmsHPROFILE PlatformDisplayX11::colorProfile() const
149-
{
150-
if (m_iccProfile)
151-
return m_iccProfile.get();
152-
153-
Atom iccAtom = XInternAtom(m_display, "_ICC_PROFILE", False);
154-
Atom type;
155-
int format;
156-
unsigned long itemCount, bytesAfter;
157-
unsigned char* data = nullptr;
158-
auto result = XGetWindowProperty(m_display, RootWindowOfScreen(DefaultScreenOfDisplay(m_display)), iccAtom, 0L, ~0L, False, XA_CARDINAL, &type, &format, &itemCount, &bytesAfter, &data);
159-
if (result == Success && type == XA_CARDINAL && itemCount > 0) {
160-
unsigned long dataSize;
161-
switch (format) {
162-
case 8:
163-
dataSize = itemCount;
164-
break;
165-
case 16:
166-
dataSize = sizeof(short) * itemCount;
167-
break;
168-
case 32:
169-
dataSize = sizeof(long) * itemCount;
170-
break;
171-
default:
172-
dataSize = 0;
173-
break;
174-
}
175-
176-
if (dataSize)
177-
m_iccProfile = LCMSProfilePtr(cmsOpenProfileFromMem(data, dataSize));
178-
}
179-
180-
if (data)
181-
XFree(data);
182-
183-
return m_iccProfile ? m_iccProfile.get() : PlatformDisplay::colorProfile();
184-
}
185-
#endif
186-
187147
#if USE(ATSPI)
188148
String PlatformDisplayX11::platformAccessibilityBusAddress() const
189149
{

Source/WebCore/platform/graphics/x11/PlatformDisplayX11.h

-4
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ class PlatformDisplayX11 final : public PlatformDisplay {
6060
#endif
6161
void initializeEGLDisplay() override;
6262

63-
#if USE(LCMS)
64-
cmsHPROFILE colorProfile() const override;
65-
#endif
66-
6763
#if USE(ATSPI)
6864
String platformAccessibilityBusAddress() const override;
6965
#endif

Source/WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.cpp

+6-7
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
#include "config.h"
4141
#include "JPEGImageDecoder.h"
4242

43-
#include "PlatformDisplay.h"
43+
#if USE(LCMS)
44+
#include "LCMSUniquePtr.h"
45+
#endif
4446

4547
extern "C" {
4648
#include <setjmp.h>
@@ -723,14 +725,11 @@ void JPEGImageDecoder::setICCProfile(RefPtr<SharedBuffer>&& buffer)
723725

724726
auto span = buffer->span();
725727
auto iccProfile = LCMSProfilePtr(cmsOpenProfileFromMem(span.data(), span.size()));
726-
if (!iccProfile)
727-
return;
728-
729-
auto* displayProfile = PlatformDisplay::sharedDisplay().colorProfile();
730-
if (cmsGetColorSpace(iccProfile.get()) != cmsSigRgbData || cmsGetColorSpace(displayProfile) != cmsSigRgbData)
728+
if (!iccProfile || cmsGetColorSpace(iccProfile.get()) != cmsSigRgbData)
731729
return;
732730

733-
m_iccTransform = LCMSTransformPtr(cmsCreateTransform(iccProfile.get(), TYPE_BGRA_8, displayProfile, TYPE_BGRA_8, INTENT_RELATIVE_COLORIMETRIC, 0));
731+
auto srgbProfile = LCMSProfilePtr(cmsCreate_sRGBProfile());
732+
m_iccTransform = LCMSTransformPtr(cmsCreateTransform(iccProfile.get(), TYPE_BGRA_8, srgbProfile.get(), TYPE_BGRA_8, INTENT_RELATIVE_COLORIMETRIC, 0));
734733
}
735734
#endif
736735

Source/WebCore/platform/image-decoders/jpegxl/JPEGXLImageDecoder.cpp

+4-8
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "PixelBufferConversion.h"
3333

3434
#if USE(LCMS)
35-
#include "PlatformDisplay.h"
35+
#include "LCMSUniquePtr.h"
3636
#endif
3737

3838
#if PLATFORM(COCOA)
@@ -410,18 +410,14 @@ void JPEGXLImageDecoder::prepareColorTransform()
410410
if (m_iccTransform)
411411
return;
412412

413-
cmsHPROFILE displayProfile = PlatformDisplay::sharedDisplay().colorProfile();
414-
if (!displayProfile)
415-
return;
416-
417413
auto profile = tryDecodeICCColorProfile();
418-
if (!profile)
414+
if (!profile || cmsGetColorSpace(profile.get()) != cmsSigRgbData)
419415
return; // TODO(bugs.webkit.org/show_bug.cgi?id=234222): We should try to use encoded color profile if ICC profile is not available.
420416

421417
// TODO(bugs.webkit.org/show_bug.cgi?id=234221): We should handle CMYK color but it may require two extra channels (Alpha and K)
422418
// and libjxl has yet to support it.
423-
if (cmsGetColorSpace(profile.get()) == cmsSigRgbData && cmsGetColorSpace(displayProfile) == cmsSigRgbData)
424-
m_iccTransform = LCMSTransformPtr(cmsCreateTransform(profile.get(), TYPE_BGRA_8, displayProfile, TYPE_BGRA_8, INTENT_RELATIVE_COLORIMETRIC, 0));
419+
auto srgbProfile = LCMSProfilePtr(cmsCreate_sRGBProfile());
420+
m_iccTransform = LCMSTransformPtr(cmsCreateTransform(profile.get(), TYPE_BGRA_8, srgbProfile.get(), TYPE_BGRA_8, INTENT_RELATIVE_COLORIMETRIC, 0));
425421
}
426422

427423
LCMSProfilePtr JPEGXLImageDecoder::tryDecodeICCColorProfile()

Source/WebCore/platform/image-decoders/png/PNGImageDecoder.cpp

+7-5
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,14 @@
4242
#include "PNGImageDecoder.h"
4343

4444
#include "Color.h"
45-
#include "PlatformDisplay.h"
4645
#include <png.h>
4746
#include <wtf/StdLibExtras.h>
4847
#include <wtf/UniqueArray.h>
4948

49+
#if USE(LCMS)
50+
#include "LCMSUniquePtr.h"
51+
#endif
52+
5053
#if defined(PNG_LIBPNG_VER_MAJOR) && defined(PNG_LIBPNG_VER_MINOR) && (PNG_LIBPNG_VER_MAJOR > 1 || (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 4))
5154
#define JMPBUF(png_ptr) png_jmpbuf(png_ptr)
5255
#else
@@ -381,10 +384,9 @@ void PNGImageDecoder::headerAvailable()
381384
int compressionType;
382385
if (png_get_iCCP(png, info, &iccProfileTitle, &compressionType, &iccProfileData, &iccProfileDataSize)) {
383386
auto iccProfile = LCMSProfilePtr(cmsOpenProfileFromMem(iccProfileData, iccProfileDataSize));
384-
if (iccProfile) {
385-
auto* displayProfile = PlatformDisplay::sharedDisplay().colorProfile();
386-
if (cmsGetColorSpace(iccProfile.get()) == cmsSigRgbData && cmsGetColorSpace(displayProfile) == cmsSigRgbData)
387-
m_iccTransform = LCMSTransformPtr(cmsCreateTransform(iccProfile.get(), TYPE_BGRA_8, displayProfile, TYPE_BGRA_8, INTENT_RELATIVE_COLORIMETRIC, 0));
387+
if (iccProfile && cmsGetColorSpace(iccProfile.get()) == cmsSigRgbData) {
388+
auto srgbProfile = LCMSProfilePtr(cmsCreate_sRGBProfile());
389+
m_iccTransform = LCMSTransformPtr(cmsCreateTransform(iccProfile.get(), TYPE_BGRA_8, srgbProfile.get(), TYPE_BGRA_8, INTENT_RELATIVE_COLORIMETRIC, 0));
388390
}
389391
}
390392
}

0 commit comments

Comments
 (0)