Expose a private flag on WKView to indicate whether it's using a remote layer tree drawing area
Created attachment 216875 [details] Patch
Comment on attachment 216875 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=216875&action=review > Source/WebKit2/ChangeLog:9 > + Expose isUsingUISideCompositing on WKView in the private header, > + which returns YES if the view is using a DrawingAreaTypeRemoteLayerTree. Why?
https://trac.webkit.org/r159254
Comment on attachment 216875 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=216875&action=review > Source/WebKit2/UIProcess/API/mac/WKViewPrivate.h:67 > +@property (readonly) BOOL isUsingUISideCompositing; Normally the property name omits the “is”: @property (readonly, getter=isUsingUISideCompositing) BOOL usingUISideCompositing;
Tweaked in https://trac.webkit.org/changeset/159262