Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
cppcheck: Condition 'renderer!=NULL' is always false
ifdef GDK_WINDOWING_X11
char *renderer = ...
...
endif
out:
Apply Fedora patch:
egl_dpy = get_display (display);
From: Adam Jackson
Date: Tue, 4 Oct 2016 13:15:39 -0400
Subject: [PATCH] check-accelerated-gles: Use eglGetPlatformDisplay{,EXT}
eglGetDisplay forces the implementation to guess, and in general it
can't guess correctly. Be explicit.
https://src.fedoraproject.org/rpms/gnome-session/blob/master/f/0001-check-accelerated-gles-Use-eglGetPlatformDisplay-EXT.patch
deprecations (gdk_error_trap_push & gdk_error_trap_pop_ignored):
gdk_x11_display_error_trap_push (gdk_dpy);
...
gdk_x11_display_error_trap_pop_ignored (gdk_dpy);
|
|
tools/mate-session-check-accelerated.{c,h}
tools/mate-session-check-accelerated-gles-helper.c
tools/mate-session-check-accelerated-gl-helper.c
based on https://github.com/GNOME/gnome-session/commit/3aafcf0f0129e28b5c52f32284f1164a93867ea3
configure.ac
tools/Makefile.am based on:
based on https://github.com/GNOME/gnome-session/tree/eeefdc8e1a436d0c58cea756e8a3ea63e59145b5
|
|
|
|
- tools/Makefile.am
- tools/mate-session-save.c
|
|
|
|
|
|
fixes https://github.com/mate-desktop/mate-session-manager/issues/103
|
|
This is necessary for compatibility and it brings support for many apps hardcoding GNOME support but also apps written in GTK (Gtk.Application taps into org.gnome.Session to register applications for a clean shutdown and for inhibition). It doesn't conflict with GNOME or Cinnamon (which both use the same name) since it's on the SessionBus. It makes mate-session aware of programs such as gedit, etc.. which might need to save people's work before logout, it brings support for totem inhibiting the session etc etc..
|
|
fixes https://github.com/mate-desktop/mate-session-manager/issues/85
|
|
Based on gnome-commit: fcdbf2b36b184f10239ac7a81cb3c88b4c5ed477
From: Matthias Clasen <[email protected]>
|
|
|
|
|
|
|