mirror of
https://github.com/brl/mutter.git
synced 2024-11-27 10:30:47 -05:00
b51c468c0f
We need to coordinate with MetaCompositor during pre-paint so that we have control over whether MetaLater callbacks happen first, or the MetaCompositor pre-paint logic. In order to do so, make MetaLater listen to a new signal "pre-paint" on MetaCompositor, that is called MetaCompositors own pre-paint handling. This fixes an issue where the top window actor was calculated after the MetaCompositor pre-paint handling, meaning the top actor being painted was out-of-date. https://gitlab.gnome.org/GNOME/mutter/merge_requests/798
29 lines
976 B
C
29 lines
976 B
C
/*
|
|
* Copyright (C) 2020 Red Hat Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef META_LATER_PRIVATE_H
|
|
#define META_LATER_PRIVATE_H
|
|
|
|
typedef struct _MetaLaters MetaLaters;
|
|
typedef struct _MetaCompositor MetaCompositor;
|
|
|
|
MetaLaters * meta_laters_new (MetaCompositor *compositor);
|
|
|
|
void meta_laters_free (MetaLaters *laters);
|
|
|
|
#endif /* META_LATER_PRIVATE_H */
|