Summary: | REGRESSION(r229484): Plugins often require CGS Connections to draw | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Brent Fulgham <bfulgham> | ||||
Component: | Plug-ins | Assignee: | Brent Fulgham <bfulgham> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | bfulgham, commit-queue, pvollan | ||||
Priority: | P2 | Keywords: | InRadar | ||||
Version: | WebKit Nightly Build | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Bug Depends on: | 182747 | ||||||
Bug Blocks: | 183672 | ||||||
Attachments: |
|
Description
Brent Fulgham
2018-03-15 09:57:54 PDT
Created attachment 335857 [details]
Patch
Comment on attachment 335857 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=335857&action=review > Source/WebKit/Platform/mac/LayerHostingContext.mm:81 > + layerHostingContext->m_context = [CAContext contextWithCGSConnection:CGSMainConnectionID() options:@{ kCAContextCIFilterBehavior : @"ignore" }]; Will creating the context with 'layerHostingContext->m_context = [CAContext remoteContextWithOptions:@{kCAContextCIFilterBehavior : @"ignore"}];' work? (In reply to Per Arne Vollan from comment #3) > Comment on attachment 335857 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=335857&action=review > > > Source/WebKit/Platform/mac/LayerHostingContext.mm:81 > > + layerHostingContext->m_context = [CAContext contextWithCGSConnection:CGSMainConnectionID() options:@{ kCAContextCIFilterBehavior : @"ignore" }]; > > Will creating the context with 'layerHostingContext->m_context = [CAContext > remoteContextWithOptions:@{kCAContextCIFilterBehavior : @"ignore"}];' work? No -- I tried that first and it failed. Comment on attachment 335857 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=335857&action=review R=me. >>> Source/WebKit/Platform/mac/LayerHostingContext.mm:81 >>> + layerHostingContext->m_context = [CAContext contextWithCGSConnection:CGSMainConnectionID() options:@{ kCAContextCIFilterBehavior : @"ignore" }]; >> >> Will creating the context with 'layerHostingContext->m_context = [CAContext remoteContextWithOptions:@{kCAContextCIFilterBehavior : @"ignore"}];' work? > > No -- I tried that first and it failed. Ah, right. I first thought it was the call '[CAContext setAllowsCGSConnections:NO];' that made this fail for the Plugin process. Comment on attachment 335857 [details] Patch Clearing flags on attachment: 335857 Committed r229629: <https://trac.webkit.org/changeset/229629> All reviewed patches have been landed. Closing bug. |