Title: [181918] trunk/Source/WebCore
Revision
181918
Author
[email protected]
Date
2015-03-24 16:25:47 -0700 (Tue, 24 Mar 2015)

Log Message

Tried to fix the iOS Simulator build.

* platform/spi/cocoa/QuartzCoreSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (181917 => 181918)


--- trunk/Source/WebCore/ChangeLog	2015-03-24 23:24:36 UTC (rev 181917)
+++ trunk/Source/WebCore/ChangeLog	2015-03-24 23:25:47 UTC (rev 181918)
@@ -1,3 +1,9 @@
+2015-03-24  Dan Bernstein  <[email protected]>
+
+        Tried to fix the iOS Simulator build.
+
+        * platform/spi/cocoa/QuartzCoreSPI.h:
+
 2015-03-24  Benjamin Poulain  <[email protected]>
 
         Make URL filter patterns matching consistent and add a simple canonicalization step

Modified: trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h (181917 => 181918)


--- trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h	2015-03-24 23:24:36 UTC (rev 181917)
+++ trunk/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h	2015-03-24 23:25:47 UTC (rev 181918)
@@ -115,7 +115,11 @@
 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
 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
 
 EXTERN_C NSString * const kCATiledLayerRemoveImmediately;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to