Title: [247358] trunk/Source/WebCore
Revision
247358
Author
cdu...@apple.com
Date
2019-07-11 11:43:39 -0700 (Thu, 11 Jul 2019)

Log Message

Disable RGB10 IOSurface pixel format for Mac Catalyst
https://bugs.webkit.org/show_bug.cgi?id=199712
<rdar://problem/52793584>

Reviewed by Beth Dakin.

Disable RGB10 IOSurface pixel format for Mac Catalyst. This format is not supported
on Mac Catalyst and causes us not to render anything.

* platform/graphics/cocoa/IOSurface.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (247357 => 247358)


--- trunk/Source/WebCore/ChangeLog	2019-07-11 18:39:16 UTC (rev 247357)
+++ trunk/Source/WebCore/ChangeLog	2019-07-11 18:43:39 UTC (rev 247358)
@@ -1,3 +1,16 @@
+2019-07-11  Chris Dumez  <cdu...@apple.com>
+
+        Disable RGB10 IOSurface pixel format for Mac Catalyst
+        https://bugs.webkit.org/show_bug.cgi?id=199712
+        <rdar://problem/52793584>
+
+        Reviewed by Beth Dakin.
+
+        Disable RGB10 IOSurface pixel format for Mac Catalyst. This format is not supported
+        on Mac Catalyst and causes us not to render anything.
+
+        * platform/graphics/cocoa/IOSurface.h:
+
 2019-07-11  Jonathan Bedard  <jbed...@apple.com>
 
         [iOS 13] Enable WebKit build

Modified: trunk/Source/WebCore/platform/graphics/cocoa/IOSurface.h (247357 => 247358)


--- trunk/Source/WebCore/platform/graphics/cocoa/IOSurface.h	2019-07-11 18:39:16 UTC (rev 247357)
+++ trunk/Source/WebCore/platform/graphics/cocoa/IOSurface.h	2019-07-11 18:43:39 UTC (rev 247358)
@@ -31,7 +31,7 @@
 #include "GraphicsContext.h"
 #include "IntSize.h"
 
-#if PLATFORM(IOS_FAMILY)
+#if PLATFORM(IOS_FAMILY) && !PLATFORM(MACCATALYST)
 #define HAVE_IOSURFACE_RGB10 1
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to