⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 183997 in webkit


Ignore:
Timestamp:
May 8, 2015, 10:56:25 AM (11 years ago)
Author:
dbates@webkit.org
Message:

Fix the iOS Simulator external SDK build following <http://trac.webkit.org/changeset/181918>

Remove unused iOS Simulator-variant of CARenderServerRenderLayerWithTransform(). Also guard
IOSurfaceRef-variant of CARenderServerRenderLayerWithTransform() with USE(IOSURFACE)
since it is only applicable on platforms that use IOSurface.

  • platform/spi/cocoa/QuartzCoreSPI.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r183996 r183997  
     12015-05-08  Daniel Bates  <dabates@apple.com>
     2
     3        Fix the iOS Simulator external SDK build following <http://trac.webkit.org/changeset/181918>
     4
     5        Remove unused iOS Simulator-variant of CARenderServerRenderLayerWithTransform(). Also guard
     6        IOSurfaceRef-variant of CARenderServerRenderLayerWithTransform() with USE(IOSURFACE)
     7        since it is only applicable on platforms that use IOSurface.
     8
     9        * platform/spi/cocoa/QuartzCoreSPI.h:
     10
    1112015-05-08  Myles C. Maxfield  <mmaxfield@apple.com>
    212
  • trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h

    r183886 r183997  
    120120                                                      uint32_t slotId, int32_t ox, int32_t oy, const CATransform3D *);
    121121
    122 #if PLATFORM(IOS_SIMULATOR)
    123 EXTERN_C void CARenderServerRenderLayerWithTransform (mach_port_t server_port, uint32_t client_id, uint64_t layer_id, CARenderServerBufferRef buffer, int32_t ox, int32_t oy, const CATransform3D *matrix);
    124 #else
     122#if USE(IOSURFACE)
    125123EXTERN_C void CARenderServerRenderLayerWithTransform(mach_port_t server_port, uint32_t client_id, uint64_t layer_id, IOSurfaceRef iosurface, int32_t ox, int32_t oy, const CATransform3D *matrix);
    126124#endif
Note: See TracChangeset for help on using the changeset viewer.