This commit is contained in:
Jasper St. Pierre 2013-11-18 21:35:30 -05:00
parent 7c45d6594c
commit 74462133ca
2 changed files with 14 additions and 3 deletions

View File

@ -20,9 +20,7 @@
struct _MetaSurfaceActorPrivate
{
MetaShapedTexture *texture;
MetaWaylandBuffer *buffer;
Pixmap pixmap;
MetaSurfaceContentWayland *main_content;
};
G_DEFINE_TYPE (MetaSurfaceActor, meta_surface_actor, CLUTTER_TYPE_ACTOR);

View File

@ -0,0 +1,13 @@
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#include "config.h"
struct _MetaSurfaceContentWayland {
MetaShapedTexture *texture;
MetaWaylandSurface *surface;
};
MetaSurfaceContentWayland *
meta_surface_content_wayland_new (MetaWaylandSurface *surface)
{
}