mirror of
https://github.com/brl/mutter.git
synced 2024-11-24 09:00:42 -05:00
0f1289e534
They're not used outside ClutterEffect. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1340
20 lines
919 B
C
20 lines
919 B
C
#ifndef __CLUTTER_EFFECT_PRIVATE_H__
|
|
#define __CLUTTER_EFFECT_PRIVATE_H__
|
|
|
|
#include <clutter/clutter-effect.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
gboolean _clutter_effect_modify_paint_volume (ClutterEffect *effect,
|
|
ClutterPaintVolume *volume);
|
|
gboolean _clutter_effect_has_custom_paint_volume (ClutterEffect *effect);
|
|
void _clutter_effect_paint (ClutterEffect *effect,
|
|
ClutterPaintContext *paint_context,
|
|
ClutterEffectPaintFlags flags);
|
|
void _clutter_effect_pick (ClutterEffect *effect,
|
|
ClutterPickContext *pick_context);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_EFFECT_PRIVATE_H__ */
|