mirror of
https://github.com/brl/mutter.git
synced 2024-12-28 05:42:14 +00:00
20 lines
330 B
C
20 lines
330 B
C
|
#include "config.h"
|
||
|
|
||
|
#include "clutter-stage-egl.h"
|
||
|
#include "../clutter-private.h"
|
||
|
#include "../clutter-event.h"
|
||
|
|
||
|
G_DEFINE_TYPE (ClutterStageEgl, clutter_stage_egl, CLUTTER_TYPE_STAGE);
|
||
|
|
||
|
static void
|
||
|
clutter_stage_egl_class_init (ClutterStageEglClass *klass)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
clutter_stage_egl_init (ClutterStageEgl *stage)
|
||
|
{
|
||
|
|
||
|
}
|