diff options
author | monsta <[email protected]> | 2016-03-03 15:19:33 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-03-03 17:36:48 +0300 |
commit | 9212dacb2bfd5985d8426bf0bdb88f2aca03444e (patch) | |
tree | 9e3d84215d52bb348439aa2ea71ed9ad17004712 /src/ui | |
parent | ee01366b6659c9f4238a9a89706aa2b78903ead8 (diff) | |
download | marco-9212dacb2bfd5985d8426bf0bdb88f2aca03444e.tar.bz2 marco-9212dacb2bfd5985d8426bf0bdb88f2aca03444e.tar.xz |
[GTK+3] re-add ability to show alt-tab thumbnails when compositor is on
adapted from:
https://git.gnome.org/browse/metacity/commit/?id=e6828a3ee2cab1ec1acbdd5a444dc1cb98215a75
https://git.gnome.org/browse/metacity/commit/?id=758902aef22629943738241cea1f597b6db4b18e
https://git.gnome.org/browse/metacity/commit/?id=c6ba6dc7f458720d9f8666881f45a830580468cb
https://git.gnome.org/browse/metacity/commit/?id=68bdf1ab9de815e07f5cd75b2e1fa24ba92ae319
https://git.gnome.org/browse/metacity/commit/?id=78bbf4423f72797a05bfaddd4121d70db30de9a3
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/ui.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/ui/ui.c b/src/ui/ui.c index 731c615b..130a671f 100644 --- a/src/ui/ui.c +++ b/src/ui/ui.c @@ -1104,7 +1104,18 @@ MetaUIDirection meta_ui_get_direction(void) return META_UI_DIRECTION_LTR; } -#if !GTK_CHECK_VERSION (3, 0, 0) +#if GTK_CHECK_VERSION (3, 0, 0) +GdkPixbuf *meta_ui_get_pixbuf_from_surface (cairo_surface_t *surface) +{ + gint width; + gint height; + + width = cairo_xlib_surface_get_width (surface); + height = cairo_xlib_surface_get_height (surface); + + return gdk_pixbuf_get_from_surface (surface, 0, 0, width, height); +} +#else GdkPixbuf* meta_ui_get_pixbuf_from_pixmap(Pixmap pmap) { GdkPixmap* gpmap; |