RESOLVED FIXED 66430
[chromium] Remove LayerRendererChromium references from the LayerChromium tree
https://bugs.webkit.org/show_bug.cgi?id=66430
Summary [chromium] Remove LayerRendererChromium references from the LayerChromium tree
Adrienne Walker
Reported 2011-08-17 16:46:02 PDT
LayerRendererChromium is a compositor thread-side class that currently both LayerChromium- and CCLayerImpl-derived classes access, mostly to get at the context and settings. LayerChromium::layerRenderer() and LayerChromium::layerRendererContext() should both be removed, once alternate functionality is put in place for all of the LayerChromium-derived classes.
Attachments
Patch (26.46 KB, patch)
2011-09-01 12:46 PDT, Adrienne Walker
no flags
Patch (26.45 KB, patch)
2011-09-01 12:51 PDT, Adrienne Walker
no flags
Patch (26.47 KB, patch)
2011-09-01 16:26 PDT, Adrienne Walker
jamesr: review+
Adrienne Walker
Comment 1 2011-09-01 12:46:27 PDT
Adrienne Walker
Comment 2 2011-09-01 12:48:26 PDT
This needs bug 66807 to land before this patch will apply, so leaving the review flag off. nduca: I'd love if you could sanity check what I did in WebGLLayerChromium to punch through the compositor context in the single-threaded case. I used a bunch of functions that looked like they were temporary and would eventually go away. If you have a better idea about how to do this, I'll take suggestions. :)
Adrienne Walker
Comment 3 2011-09-01 12:51:02 PDT
Nat Duca
Comment 4 2011-09-01 15:57:56 PDT
Comment on attachment 106013 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=106013&action=review Me <3's this patch. > Source/WebCore/platform/graphics/chromium/WebGLLayerChromium.cpp:152 > + return 0; ASSERT(false); CRASH()
Adrienne Walker
Comment 5 2011-09-01 16:26:15 PDT
James Robinson
Comment 6 2011-09-01 17:00:36 PDT
Comment on attachment 106059 [details] Patch R=me
Nat Duca
Comment 7 2011-09-02 00:19:09 PDT
Comment on attachment 106059 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=106059&action=review > Source/WebCore/platform/graphics/chromium/WebGLLayerChromium.cpp:149 > +#if USE(THREADED_COMPOSITING) Sorry for the late breaking feedback, but can we do this as a runtime check? E.g. layerTreeHost()->settings().useThreadedCompositing
Adrienne Walker
Comment 8 2011-09-02 09:10:10 PDT
(In reply to comment #7) > (From update of attachment 106059 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=106059&action=review > > > Source/WebCore/platform/graphics/chromium/WebGLLayerChromium.cpp:149 > > +#if USE(THREADED_COMPOSITING) > > Sorry for the late breaking feedback, but can we do this as a runtime check? E.g. layerTreeHost()->settings().useThreadedCompositing Ah, you're totally right. I'll fix that when landing.
Adrienne Walker
Comment 9 2011-09-02 10:35:10 PDT
Note You need to log in before you can comment on or make changes to this bug.