WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
123043
Remote Layer Tree: Double-buffering and minimization of repaints
https://bugs.webkit.org/show_bug.cgi?id=123043
Summary
Remote Layer Tree: Double-buffering and minimization of repaints
Tim Horton
Reported
2013-10-18 16:02:46 PDT
We should not repaint the entirety of a layer every time it is dirtied.
Attachments
patch
(18.38 KB, patch)
2013-10-18 16:19 PDT
,
Tim Horton
simon.fraser
: review+
Details
Formatted Diff
Diff
revised
(19.41 KB, patch)
2013-10-18 17:36 PDT
,
Tim Horton
simon.fraser
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Tim Horton
Comment 1
2013-10-18 16:19:40 PDT
Created
attachment 214611
[details]
patch
WebKit Commit Bot
Comment 2
2013-10-18 16:21:41 PDT
Attachment 214611
[details]
did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCore/WebCore.exp.in', u'Source/WebCore/WebCore.xcodeproj/project.pbxproj', u'Source/WebCore/platform/graphics/mac/WebLayer.h', u'Source/WebCore/platform/graphics/mac/WebLayer.mm', u'Source/WebKit2/ChangeLog', u'Source/WebKit2/WebProcess/WebPage/mac/PlatformCALayerRemote.cpp', u'Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerBackingStore.h', u'Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerBackingStore.mm']" exit_code: 1 Source/WebCore/platform/graphics/mac/WebLayer.h:47: The parameter name "context" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 9 files If any of these errors are false positives, please file a bug against check-webkit-style.
Simon Fraser (smfr)
Comment 3
2013-10-18 16:35:31 PDT
Comment on
attachment 214611
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=214611&action=review
> Source/WebCore/platform/graphics/mac/WebLayer.mm:64 > + bool isTiledLayer = [layer isKindOfClass:[CATiledLayer class]];
Move this down.
> Source/WebCore/platform/graphics/mac/WebLayer.mm:117 > + // If we have no dirty rects, repaint the whole layer.
Comment is the reverse of the immediately following statement which is confusing.
> Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerBackingStore.mm:124 > + Region cleanRegion(layerBounds); > + cleanRegion.subtract(m_dirtyRegion); > + > + RetainPtr<CGImageRef> frontImage = m_frontBuffer->makeCGImage(); > + > + for (const auto& rect : cleanRegion.rects()) > + context->drawNativeImage(frontImage.get(), m_frontBuffer->size(), ColorSpaceDeviceRGB, rect, rect);
Seems like this could be much slower than copying over the entire layer in many cases.
Tim Horton
Comment 4
2013-10-18 17:00:52 PDT
(In reply to
comment #3
)
> (From update of
attachment 214611
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=214611&action=review
> > > Source/WebCore/platform/graphics/mac/WebLayer.mm:64 > > + bool isTiledLayer = [layer isKindOfClass:[CATiledLayer class]]; > > Move this down. > > > Source/WebCore/platform/graphics/mac/WebLayer.mm:117 > > + // If we have no dirty rects, repaint the whole layer. > > Comment is the reverse of the immediately following statement which is confusing.
OK, I'll flip it around.
> > Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerBackingStore.mm:124 > > + Region cleanRegion(layerBounds); > > + cleanRegion.subtract(m_dirtyRegion); > > + > > + RetainPtr<CGImageRef> frontImage = m_frontBuffer->makeCGImage(); > > + > > + for (const auto& rect : cleanRegion.rects()) > > + context->drawNativeImage(frontImage.get(), m_frontBuffer->size(), ColorSpaceDeviceRGB, rect, rect); > > Seems like this could be much slower than copying over the entire layer in many cases.
Yeah. I meant to use the five-or-less rect set, not the raw set.
Tim Horton
Comment 5
2013-10-18 17:36:03 PDT
Created
attachment 214622
[details]
revised
Simon Fraser (smfr)
Comment 6
2013-10-18 17:44:41 PDT
Comment on
attachment 214622
[details]
revised View in context:
https://bugs.webkit.org/attachment.cgi?id=214622&action=review
> Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerBackingStore.mm:99 > + setNeedsDisplay();
It's odd to call setNeedsDisplay() inside of display().
> Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerBackingStore.mm:108 > + setNeedsDisplay(indicatorRect);
Ditto.
Tim Horton
Comment 7
2013-10-18 17:49:39 PDT
http://trac.webkit.org/changeset/157658
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug