Changeset 247358 in webkit


Ignore:
Timestamp:
Jul 11, 2019 11:43:39 AM (5 years ago)
Author:
Chris Dumez
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:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r247355 r247358  
     12019-07-11  Chris Dumez  <cdumez@apple.com>
     2
     3        Disable RGB10 IOSurface pixel format for Mac Catalyst
     4        https://bugs.webkit.org/show_bug.cgi?id=199712
     5        <rdar://problem/52793584>
     6
     7        Reviewed by Beth Dakin.
     8
     9        Disable RGB10 IOSurface pixel format for Mac Catalyst. This format is not supported
     10        on Mac Catalyst and causes us not to render anything.
     11
     12        * platform/graphics/cocoa/IOSurface.h:
     13
    1142019-07-11  Jonathan Bedard  <jbedard@apple.com>
    215
  • trunk/Source/WebCore/platform/graphics/cocoa/IOSurface.h

    r238459 r247358  
    3232#include "IntSize.h"
    3333
    34 #if PLATFORM(IOS_FAMILY)
     34#if PLATFORM(IOS_FAMILY) && !PLATFORM(MACCATALYST)
    3535#define HAVE_IOSURFACE_RGB10 1
    3636#endif
Note: See TracChangeset for help on using the changeset viewer.