
The ID is required for the wayland protocol. In the future we might want to spend a bit more effort to re-use existing color states when a new one is requested and also try to re-use IDs instead of just counting up. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3897>
36 lines
1.4 KiB
C
36 lines
1.4 KiB
C
/*
|
|
* Clutter.
|
|
*
|
|
* An OpenGL based 'interactive canvas' library.
|
|
*
|
|
* Copyright (C) 2024 Red Hat
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "clutter/clutter-color-manager.h"
|
|
#include "clutter/clutter-private.h"
|
|
|
|
unsigned int clutter_color_manager_get_next_id (ClutterColorManager *color_manager);
|
|
|
|
CoglSnippet * clutter_color_manager_lookup_snippet (ClutterColorManager *color_manager,
|
|
const ClutterColorTransformKey *key);
|
|
|
|
void clutter_color_manager_add_snippet (ClutterColorManager *color_manager,
|
|
const ClutterColorTransformKey *key,
|
|
CoglSnippet *snippet);
|