2013-10-13 07:47:53 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
#ifndef META_SURFACE_ACTOR_PRIVATE_H
|
|
|
|
#define META_SURFACE_ACTOR_PRIVATE_H
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <meta/meta-shaped-texture.h>
|
2014-02-26 20:21:51 -05:00
|
|
|
#include <meta/window.h>
|
2013-10-13 07:47:53 -04:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define META_TYPE_SURFACE_ACTOR (meta_surface_actor_get_type())
|
|
|
|
#define META_SURFACE_ACTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), META_TYPE_SURFACE_ACTOR, MetaSurfaceActor))
|
|
|
|
#define META_SURFACE_ACTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), META_TYPE_SURFACE_ACTOR, MetaSurfaceActorClass))
|
|
|
|
#define META_IS_SURFACE_ACTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), META_TYPE_SURFACE_ACTOR))
|
|
|
|
#define META_IS_SURFACE_ACTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), META_TYPE_SURFACE_ACTOR))
|
|
|
|
#define META_SURFACE_ACTOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), META_TYPE_SURFACE_ACTOR, MetaSurfaceActorClass))
|
|
|
|
|
|
|
|
typedef struct _MetaSurfaceActor MetaSurfaceActor;
|
|
|
|
typedef struct _MetaSurfaceActorClass MetaSurfaceActorClass;
|
|
|
|
typedef struct _MetaSurfaceActorPrivate MetaSurfaceActorPrivate;
|
|
|
|
|
|
|
|
struct _MetaSurfaceActorClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
ClutterActorClass parent_class;
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
|
|
|
|
void (* process_damage) (MetaSurfaceActor *actor,
|
|
|
|
int x, int y, int width, int height);
|
|
|
|
void (* pre_paint) (MetaSurfaceActor *actor);
|
|
|
|
gboolean (* is_visible) (MetaSurfaceActor *actor);
|
|
|
|
|
|
|
|
gboolean (* should_unredirect) (MetaSurfaceActor *actor);
|
|
|
|
void (* set_unredirected) (MetaSurfaceActor *actor,
|
|
|
|
gboolean unredirected);
|
|
|
|
gboolean (* is_unredirected) (MetaSurfaceActor *actor);
|
2014-02-26 20:21:51 -05:00
|
|
|
|
|
|
|
MetaWindow *(* get_window) (MetaSurfaceActor *actor);
|
2013-10-13 07:47:53 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _MetaSurfaceActor
|
|
|
|
{
|
|
|
|
ClutterActor parent;
|
|
|
|
|
|
|
|
MetaSurfaceActorPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType meta_surface_actor_get_type (void);
|
|
|
|
|
|
|
|
cairo_surface_t *meta_surface_actor_get_image (MetaSurfaceActor *self,
|
|
|
|
cairo_rectangle_int_t *clip);
|
|
|
|
|
|
|
|
MetaShapedTexture *meta_surface_actor_get_texture (MetaSurfaceActor *self);
|
2014-02-26 20:21:51 -05:00
|
|
|
MetaWindow *meta_surface_actor_get_window (MetaSurfaceActor *self);
|
2013-10-13 07:47:53 -04:00
|
|
|
|
2014-02-05 14:06:32 -05:00
|
|
|
gboolean meta_surface_actor_is_obscured (MetaSurfaceActor *self);
|
|
|
|
gboolean meta_surface_actor_get_unobscured_bounds (MetaSurfaceActor *self,
|
|
|
|
cairo_rectangle_int_t *unobscured_bounds);
|
2013-10-13 07:47:53 -04:00
|
|
|
|
2013-11-21 17:45:05 -05:00
|
|
|
void meta_surface_actor_set_input_region (MetaSurfaceActor *self,
|
|
|
|
cairo_region_t *region);
|
|
|
|
void meta_surface_actor_set_opaque_region (MetaSurfaceActor *self,
|
|
|
|
cairo_region_t *region);
|
2013-10-13 07:47:53 -04:00
|
|
|
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
void meta_surface_actor_update_area (MetaSurfaceActor *actor,
|
|
|
|
int x, int y, int width, int height);
|
|
|
|
|
|
|
|
void meta_surface_actor_process_damage (MetaSurfaceActor *actor,
|
|
|
|
int x, int y, int width, int height);
|
|
|
|
void meta_surface_actor_pre_paint (MetaSurfaceActor *actor);
|
|
|
|
gboolean meta_surface_actor_is_argb32 (MetaSurfaceActor *actor);
|
|
|
|
gboolean meta_surface_actor_is_visible (MetaSurfaceActor *actor);
|
|
|
|
|
2014-02-24 16:00:12 -05:00
|
|
|
void meta_surface_actor_set_frozen (MetaSurfaceActor *actor,
|
|
|
|
gboolean frozen);
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
|
|
|
|
gboolean meta_surface_actor_should_unredirect (MetaSurfaceActor *actor);
|
|
|
|
void meta_surface_actor_set_unredirected (MetaSurfaceActor *actor,
|
|
|
|
gboolean unredirected);
|
|
|
|
gboolean meta_surface_actor_is_unredirected (MetaSurfaceActor *actor);
|
2014-02-18 21:27:20 -05:00
|
|
|
|
2013-10-13 07:47:53 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* META_SURFACE_ACTOR_PRIVATE_H */
|