RESOLVED FIXED 60821
[chromium] Don't split long skinny layers into multiple tiles
https://bugs.webkit.org/show_bug.cgi?id=60821
Summary [chromium] Don't split long skinny layers into multiple tiles
Adrienne Walker
Reported 2011-05-13 17:17:43 PDT
[chromium] Don't split scrollbars into multiple tiles
Attachments
Patch (2.90 KB, patch)
2011-05-13 17:18 PDT, Adrienne Walker
no flags
Patch (5.87 KB, patch)
2011-05-19 12:10 PDT, Adrienne Walker
jamesr: review+
Adrienne Walker
Comment 1 2011-05-13 17:18:43 PDT
Adrienne Walker
Comment 2 2011-05-13 17:20:10 PDT
I will probably also need to rebaseline a small number of tests as a result of this change, but I thought I would upload the code first.
James Robinson
Comment 3 2011-05-13 17:28:45 PDT
Comment on attachment 93537 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=93537&action=review > Source/WebCore/ChangeLog:5 > + [chromium] Don't split scrollbars into multiple tiles this doesn't precisely describe what the patch does - this patch changes the behavior for layers that are <512px in one dimension and >512 in another. Can you make the title be something more generic and describe the implications for scrollbar layers in particular in the extended description part of the ChangeLog? > Source/WebCore/platform/graphics/chromium/ContentLayerChromium.cpp:173 > + // (e.g. scrollbars) that are Nx1 tiles to minimize wasted texture space. this doesn't actually change the amount of space used by textures (in terms of the # of pixels), just the # of textures right? > Source/WebCore/platform/graphics/chromium/ContentLayerChromium.cpp:176 > + const bool autoTiled = (layerSize.width() > maxUntiledSize && layerSize.height() > maxUntiledSize) > + || (layerSize.width() > maxUntiledSize && layerSize.height() > defaultTileSize) > + || (layerSize.height() > maxUntiledSize && layerSize.width() > defaultTileSize); can you use some descriptively named temporary bools to try to make this more readable?
Adrienne Walker
Comment 4 2011-05-19 10:25:45 PDT
(In reply to comment #3) > (From update of attachment 93537 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=93537&action=review > > > Source/WebCore/ChangeLog:5 > > + [chromium] Don't split scrollbars into multiple tiles > > this doesn't precisely describe what the patch does - this patch changes the behavior for layers that are <512px in one dimension and >512 in another. Can you make the title be something more generic and describe the implications for scrollbar layers in particular in the extended description part of the ChangeLog? Sure. You're right that this needs better explanation than I gave it. > > Source/WebCore/platform/graphics/chromium/ContentLayerChromium.cpp:173 > > + // (e.g. scrollbars) that are Nx1 tiles to minimize wasted texture space. > > this doesn't actually change the amount of space used by textures (in terms of the # of pixels), just the # of textures right? No, it changes both. The tiler (for simplicity) uses a fixed tile size. So, using 256x256 tiles for a 512x15 scrollbar will waste 512x241 texels. The tile size is the one knob the tiler exposes to tweak both the number of textures and the amount of wasted texture space. > > Source/WebCore/platform/graphics/chromium/ContentLayerChromium.cpp:176 > > + const bool autoTiled = (layerSize.width() > maxUntiledSize && layerSize.height() > maxUntiledSize) > > + || (layerSize.width() > maxUntiledSize && layerSize.height() > defaultTileSize) > > + || (layerSize.height() > maxUntiledSize && layerSize.width() > defaultTileSize); > > can you use some descriptively named temporary bools to try to make this more readable? Sure.
Adrienne Walker
Comment 5 2011-05-19 12:10:30 PDT
James Robinson
Comment 6 2011-05-31 19:40:08 PDT
Comment on attachment 94098 [details] Patch R=me. Guessing that you'll rebaseline compositing/geometry/fixed-position.html + vertical-scroll-composited.html + fixed-position-ancestor-clip.html after landing?
Adrienne Walker
Comment 7 2011-06-01 10:37:16 PDT
James Robinson
Comment 8 2011-06-01 19:56:51 PDT
You also redded these: compositing/geometry/horizontal-scroll-composited.html,platform/chromium/compositing/layout-width-change.html looks like filtering diffs on the scrollbar layer: http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=compositing%2Fgeometry%2Fhorizontal-scroll-composited.html%2Cplatform%2Fchromium%2Fcompositing%2Flayout-width-change.html&showLargeExpectations=true&showExpectations=true&group=%40ToT%20GPU%20Mesa%20-%20chromium.org so probably just a rebaseline
Adrienne Walker
Comment 9 2011-06-02 09:51:06 PDT
Adrienne Walker
Comment 10 2011-06-02 10:42:19 PDT
Adrienne Walker
Comment 11 2011-06-02 10:43:31 PDT
(In reply to comment #8) > You also redded these: compositing/geometry/horizontal-scroll-composited.html,platform/chromium/compositing/layout-width-change.html Thanks. Silly tests being marked as broken on Linux so that I don't notice them when running tests locally. :(
Note You need to log in before you can comment on or make changes to this bug.