Release Clutter 1.11.4 (snapshot)
[profile/ivi/clutter.git] / clutter / clutter-content-private.h
1 /*
2  * Clutter.
3  *
4  * An OpenGL based 'interactive canvas' library.
5  *
6  * Copyright (C) 2011  Intel Corporation.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
20  *
21  * Author:
22  *   Emmanuele Bassi <ebassi@linux.intel.com>
23  */
24
25 #ifndef __CLUTTER_CONTENT_PRIVATE_H__
26 #define __CLUTTER_CONTENT_PRIVATE_H__
27
28 #include <clutter/clutter-content.h>
29
30 G_BEGIN_DECLS
31
32 void            _clutter_content_attached               (ClutterContent   *content,
33                                                          ClutterActor     *actor);
34 void            _clutter_content_detached               (ClutterContent   *content,
35                                                          ClutterActor     *actor);
36
37 void            _clutter_content_paint_content          (ClutterContent   *content,
38                                                          ClutterActor     *actor,
39                                                          ClutterPaintNode *node);
40
41 G_END_DECLS
42
43 #endif /* __CLUTTER_CONTENT_PRIVATE_H__ */