Jonas Ådahl 2017-12-22 14:19:38 +08:00
parent 7e17dd0098
commit 0162cdf8ef

View File

@ -38,18 +38,22 @@
#include "backends/meta-backend-private.h" #include "backends/meta-backend-private.h"
#include "compositor/region-utils.h" #include "compositor/region-utils.h"
struct _MetaSurfaceActorWaylandPrivate typedef struct _MetaSurfaceActorWaylandPrivate
{ {
MetaWaylandSurface *surface; MetaWaylandSurface *surface;
struct wl_list frame_callback_list; struct wl_list frame_callback_list;
}; } MetaSurfaceActorWaylandPrivate;
typedef struct _MetaSurfaceActorWaylandPrivate MetaSurfaceActorWaylandPrivate;
G_DEFINE_TYPE_WITH_PRIVATE (MetaSurfaceActorWayland, meta_surface_actor_wayland, META_TYPE_SURFACE_ACTOR) G_DEFINE_TYPE_WITH_PRIVATE (MetaSurfaceActorWayland,
meta_surface_actor_wayland,
META_TYPE_SURFACE_ACTOR)
static void static void
meta_surface_actor_wayland_process_damage (MetaSurfaceActor *actor, meta_surface_actor_wayland_process_damage (MetaSurfaceActor *actor,
int x, int y, int width, int height) int x,
int y,
int width,
int height)
{ {
} }