mirror of
https://github.com/brl/mutter.git
synced 2024-11-30 20:01:00 -05:00
20a91aa4e9
Create a color manager type that eventually will be the high level manager of color related behavior, such as ICC profiles and color "temperature" a.k.a. night light. For now, it's only an empty shell. It's also constructed by the actual backend, as at a later point, the X11 and native color management implementations will differ. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2141>
29 lines
915 B
C
29 lines
915 B
C
/*
|
|
* Copyright (C) 2021 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_COLOR_MANAGER_PRIVATE_H
|
|
#define META_COLOR_MANAGER_PRIVATE_H
|
|
|
|
#include "backends/meta-color-manager.h"
|
|
|
|
struct _MetaColorManagerClass
|
|
{
|
|
GObjectClass parent_class;
|
|
};
|
|
|
|
#endif /* META_COLOR_MANAGER_PRIVATE_H */
|