Title: [287555] trunk/Source/WebKit
Revision
287555
Author
stephan.sz...@sony.com
Date
2022-01-03 15:46:51 -0800 (Mon, 03 Jan 2022)

Log Message

[PlayStation] Build fix after r287552
https://bugs.webkit.org/show_bug.cgi?id=234828

Unreviewed build fix.

Needed WebCore prefixing on SRGBA.


* UIProcess/API/C/playstation/WKPagePrivatePlayStation.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (287554 => 287555)


--- trunk/Source/WebKit/ChangeLog	2022-01-03 21:49:37 UTC (rev 287554)
+++ trunk/Source/WebKit/ChangeLog	2022-01-03 23:46:51 UTC (rev 287555)
@@ -1,3 +1,14 @@
+2022-01-03  Stephan Szabo  <stephan.sz...@sony.com>
+
+        [PlayStation] Build fix after r287552
+        https://bugs.webkit.org/show_bug.cgi?id=234828
+
+        Unreviewed build fix.
+
+        Needed WebCore prefixing on SRGBA.
+
+        * UIProcess/API/C/playstation/WKPagePrivatePlayStation.cpp:
+
 2022-01-03  Sam Weinig  <wei...@apple.com>
 
         Add resolved/unresolved color type accessors to require users to be explicit about whether they will handle missing/none color components

Modified: trunk/Source/WebKit/UIProcess/API/C/playstation/WKPagePrivatePlayStation.cpp (287554 => 287555)


--- trunk/Source/WebKit/UIProcess/API/C/playstation/WKPagePrivatePlayStation.cpp	2022-01-03 21:49:37 UTC (rev 287554)
+++ trunk/Source/WebKit/UIProcess/API/C/playstation/WKPagePrivatePlayStation.cpp	2022-01-03 23:46:51 UTC (rev 287555)
@@ -42,7 +42,7 @@
     if (!backgroundColor || backgroundColor.value().isVisible())
         return;
 
-    auto [r, g, b, a] = backgroundColor.value().toColorTypeLossy<SRGBA<uint8_t>>().resolved();
+    auto [r, g, b, a] = backgroundColor.value().toColorTypeLossy<WebCore::SRGBA<uint8_t>>().resolved();
 
     cairo_set_source_rgba(ctx, r, g, b, a);
     cairo_rectangle(ctx, rect.x(), rect.y(), rect.width(), rect.height());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to