Title: [183997] trunk/Source/WebCore
- Revision
- 183997
- Author
- [email protected]
- Date
- 2015-05-08 10:56:25 -0700 (Fri, 08 May 2015)
Log 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:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (183996 => 183997)
--- trunk/Source/WebCore/ChangeLog 2015-05-08 17:18:00 UTC (rev 183996)
+++ trunk/Source/WebCore/ChangeLog 2015-05-08 17:56:25 UTC (rev 183997)
@@ -1,3 +1,13 @@
+2015-05-08 Daniel Bates <[email protected]>
+
+ 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:
+
2015-05-08 Myles C. Maxfield <[email protected]>
Remove convenience constructors for TextRun
Modified: trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h (183996 => 183997)
--- trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h 2015-05-08 17:18:00 UTC (rev 183996)
+++ trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h 2015-05-08 17:56:25 UTC (rev 183997)
@@ -119,9 +119,7 @@
EXTERN_C void CARenderServerCaptureLayerWithTransform(mach_port_t serverPort, uint32_t clientId, uint64_t layerId,
uint32_t slotId, int32_t ox, int32_t oy, const CATransform3D *);
-#if PLATFORM(IOS_SIMULATOR)
-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);
-#else
+#if USE(IOSURFACE)
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);
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes