After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 566535 - gtk_widget_get_snapshot does not work if double buffered is disabled
gtk_widget_get_snapshot does not work if double buffered is disabled
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Widget: Other
2.14.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2009-01-04 19:29 UTC by Benjamin Berg
Modified: 2009-01-23 05:34 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch (1.73 KB, patch)
2009-01-04 19:30 UTC, Benjamin Berg
none Details | Review
Another approach (3.54 KB, patch)
2009-01-14 15:40 UTC, Alexander Larsson
committed Details | Review

Description Benjamin Berg 2009-01-04 19:29:40 UTC
I have looked at the issue a bit, and I understand what is happening. get_snapshot redirects the expose event using gdk_window_redirect_to_drawable. The problem with this is, that the redirection will only work if gdk_window_begin_paint_*/gdk_window_end_paint is called, as it just blits the pixel data into the snapshot pixmap. Now begin_paint and end_paint will *only* be called if the widget is double buffered.

I'll attach a patch rough (and untested) patch that should fix it right away.

This is a problem for Sugar, which uses the function to grab screenshots of activities.
Comment 1 Benjamin Berg 2009-01-04 19:30:56 UTC
Created attachment 125748 [details] [review]
patch
Comment 2 Tomeu Vizoso 2009-01-04 20:00:43 UTC
(In reply to comment #0)
> I have looked at the issue a bit, and I understand what is happening.
> get_snapshot redirects the expose event using gdk_window_redirect_to_drawable.
> The problem with this is, that the redirection will only work if
> gdk_window_begin_paint_*/gdk_window_end_paint is called, as it just blits the
> pixel data into the snapshot pixmap. Now begin_paint and end_paint will *only*
> be called if the widget is double buffered.
> 
> I'll attach a patch rough (and untested) patch that should fix it right away.
> 
> This is a problem for Sugar, which uses the function to grab screenshots of
> activities.

We have seen that at least embedded abiword and mozilla use their own double buffering, so get_snapshot is not working there.
Comment 3 Tomeu Vizoso 2009-01-07 15:37:33 UTC
Ping.

Need to know if this approach is viable because if not, we would need to work on Mozilla and Abiword so they use gtk's double buffer instead of their own strategies.

Thanks!
Comment 4 Alexander Larsson 2009-01-14 15:39:54 UTC
I don't think that is quite right, as it affects how things work with redirected windows that are used for other things than get_snapshot.

On the client-side windows branch I have a different approach to get_snapshot() code that does direct exposing instead of using invalidate/process_updates (since in that branch we can't handle invalidation of non-visible window parts). I think that approach is fundamentally more right, and furthermore its easier to handle your problems in it.

I'm attaching a patch that has a gdk fix and the new gtk_widget_get_snapshot with added support for automatically enabling double buffering. Can you verify if it works for your?
Comment 5 Alexander Larsson 2009-01-14 15:40:58 UTC
Created attachment 126424 [details] [review]
Another approach
Comment 6 Tomeu Vizoso 2009-01-14 17:57:45 UTC
(In reply to comment #4)
> 
> I'm attaching a patch that has a gdk fix and the new gtk_widget_get_snapshot
> with added support for automatically enabling double buffering. Can you verify
> if it works for your?

Yup, works great with both abiword and mozilla.

Thanks!
Comment 7 Tomeu Vizoso 2009-01-19 13:12:28 UTC
Is there any issue with that second patch? Or can it be applied?
Comment 8 Marco Pesenti Gritti 2009-01-22 16:36:22 UTC
It would be good if we could get this in as soon as possible. That way we can get applications maintainers (abiword ones example) to look into issues with their rendering code.
Comment 9 Matthias Clasen 2009-01-22 17:29:36 UTC
Looks fine to me.
Comment 10 Matthias Clasen 2009-01-23 05:34:24 UTC
        * gtk/gtkwidget.c (gtk_widget_get_snapshot): Use a different approach
        to snapshotting that is in line with what is done in the client-side
        windows branch, and that works for widgets regardless if they are
        double-buffered or not. Patch by Alex Larsson.

        * gdk/gdkwindow.c (_gdk_window_calculate_full_clip_region): Clip
        to the parent.