Closed Bug 820839 Opened 12 years ago Closed 11 years ago

Lightweight theme previews get out of sync between titlebar and the rest of chrome

Categories

(Core :: Layout, defect)

x86
macOS
defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla21
Tracking Status
firefox18 --- affected

People

(Reporter: deb, Assigned: mattwoodrow)

References

Details

Attachments

(4 files)

Attached image lwt breakage 1
I noticed this when doing a bunch of mouseover previews of new Lightweight themes on AMO -- the theme displayed in the titlebar often didn't update properly so was displaying a previously viewed theme rather than the current them.

Attached images show what I mean.

I replicated this in Beta, Aurora, and Nightly but not the current final -- so Fx 18, 19, and 20 I guess.
Attached image lwt breakage 2
Attached image lwt breakage 3
Hmm, related to bug 650968 potentially? That got fixed for 18.
STR:
1) install a persona
2) on getpersonas.com, hover quickly over the various previews.

1) is key, it doesn't seem to happen otherwise.
I can replicate this but the titlebar and the rest of chrome are only temporarily out of sync here. Is this permanent for you?
Ok it's now permanent here as well, sometimes.
I'd have guessed bug 539356. I can reproduce this too, and resizing the window to force it to repaint fixes it.
Blocks: dlbi
Assignee: nobody → matt.woodrow
This is caused by us painting the ThebesLayers for the content area, and clearing any invalidation state in the process.

We don't paint the titlebar area until we composite the window, and the invalidation state that marked the images/colors has been removed.

This seems like a fairly big problem with using two LayerManagers to paint the same set of content (even if the actual painted areas don't overlap), thinking about possible solutions.
I can think of two options:

1) Add a second set of invalidation state bits (NS_FRAME_NEEDS_PAINT_SECONDARY etc), set both when we mark frames as invalid and clear them in separate passes.

Pretty horrible, but it's simple and low risk.

2) Make the titlebar LayerManager retain content between paints. This would let us separate painting ThebesLayers from compositing, and let us determine when to do the former. We could then paint this at the same time as the content area, before we clear the invalidation state.

Lot more complex and risky, but a much nicer solution.
Can we composite the titlebar contents to a buffer during/just after the layer tree update? That would mean we can paint it at the same time we paint the rest of the window, but we don't have to deal with two layermanagers retaining content for the same frames.
Component: General → Layout
Product: Firefox → Core
Comment on attachment 702125 [details] [diff] [review]
Retain final buffer for titlebar layer manager

Review of attachment 702125 [details] [diff] [review]:
-----------------------------------------------------------------

::: widget/nsIWidget.h
@@ +1647,5 @@
> +    /**
> +     * This function is called when the retained ThebesLayers for this
> +     * widget are about to be painted.
> +     */
> +    virtual void WillPaint() { }

rev nsIWidget IID

Called by who? Why? The comment needs more. Especially to make it clear it's called before we do a layer tree update. (As written it could mean "painted to the widget".)
Attachment #702125 - Flags: review?(roc) → review+
https://hg.mozilla.org/mozilla-central/rev/29288a6d1876
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla21
Depends on: 831829
Matt, roc, can we back this out for now?  Bug 831829 looks pretty bad, and highly visible.
Depends on: 832198
Bug 831829 seems to be caused by the change in nsCocoaWindow.mm. Is this a necessary change to fix the issue reported in this bug?
Depends on: 834225
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: