Changeset 183997 in webkit
- Timestamp:
- May 8, 2015, 10:56:25 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/spi/cocoa/QuartzCoreSPI.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r183996 r183997 1 2015-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 1 11 2015-05-08 Myles C. Maxfield <mmaxfield@apple.com> 2 12 -
trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h
r183886 r183997 120 120 uint32_t slotId, int32_t ox, int32_t oy, const CATransform3D *); 121 121 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) 125 123 EXTERN_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); 126 124 #endif
Note:
See TracChangeset
for help on using the changeset viewer.