2021-05-10 07:27:39 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007,2008,2009,2010,2011 Intel Corporation.
|
|
|
|
* Copyright (C) 2021 Red Hat
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Matthew Allum
|
|
|
|
* Robert Bragg
|
|
|
|
* Neil Roberts
|
|
|
|
* Emmanuele Bassi
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_STAGE_IMPL_PRIVATE_H
|
|
|
|
#define META_STAGE_IMPL_PRIVATE_H
|
2011-05-08 19:27:10 -04:00
|
|
|
|
2011-08-16 11:01:22 -04:00
|
|
|
#include <cairo.h>
|
2011-05-08 19:27:10 -04:00
|
|
|
|
2021-05-10 07:27:39 -04:00
|
|
|
#include "clutter/clutter.h"
|
Introduce regional stage rendering
Add support for drawing a stage using multiple framebuffers each making
up one part of the stage. This works by the stage backend
(ClutterStageWindow) providing a list of views which will be for
splitting up the stage in different regions.
A view layout, for now, is a set of rectangles. The stage window (i.e.
stage "backend" will use this information when drawing a frame, using
one framebuffer for each view. The scene graph is adapted to explictly
take a view when painting the stage. It will use this view, its
assigned framebuffer and layout to offset and clip the drawing
accordingly.
This effectively removes any notion of "stage framebuffer", since each
stage now may consist of multiple framebuffers. Therefore, API
involving this has been deprecated and made no-ops; namely
clutter_stage_ensure_context(). Callers are now assumed to either
always use a framebuffer reference explicitly, or push/pop the
framebuffer of a given view where the code has not yet changed to use
the explicit-buffer-using cogl API.
Currently only the nested X11 backend supports this mode fully, and the
per view framebuffers are all offscreen. Upon frame completion, it'll
blit each view's framebuffer onto the onscreen framebuffer before
swapping.
Other backends (X11 CM and native/KMS) are adapted to manage a
full-stage view. The X11 CM backend will continue to use this method,
while the native/KMS backend will be adopted to use multiple view
drawing.
https://bugzilla.gnome.org/show_bug.cgi?id=768976
2016-05-26 23:09:24 -04:00
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2021-05-10 15:15:53 -04:00
|
|
|
#define META_TYPE_STAGE_IMPL (meta_stage_impl_get_type ())
|
|
|
|
#define META_STAGE_IMPL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), META_TYPE_STAGE_IMPL, MetaStageImpl))
|
|
|
|
#define META_IS_STAGE_IMPL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), META_TYPE_STAGE_IMPL))
|
|
|
|
#define META_STAGE_IMPL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), META_TYPE_STAGE_IMPL, MetaStageImplClass))
|
|
|
|
#define META_IS_STAGE_IMPL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), META_TYPE_STAGE_IMPL))
|
|
|
|
#define META_STAGE_IMPL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), META_TYPE_STAGE_IMPL, MetaStageImplClass))
|
|
|
|
|
|
|
|
typedef struct _MetaStageImpl MetaStageImpl;
|
|
|
|
typedef struct _MetaStageImplClass MetaStageImplClass;
|
|
|
|
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (MetaStageImpl, g_object_unref)
|
|
|
|
|
|
|
|
#define META_TYPE_STAGE_VIEW (meta_stage_view_get_type ())
|
|
|
|
|
|
|
|
struct _MetaStageImpl
|
2011-05-08 19:27:10 -04:00
|
|
|
{
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
/* the stage wrapper */
|
2011-11-04 12:52:44 -04:00
|
|
|
ClutterStage *wrapper;
|
2011-05-08 19:27:10 -04:00
|
|
|
|
|
|
|
/* back pointer to the backend */
|
2011-11-04 12:52:44 -04:00
|
|
|
ClutterBackend *backend;
|
2011-05-08 19:27:10 -04:00
|
|
|
};
|
|
|
|
|
2021-05-10 15:15:53 -04:00
|
|
|
struct _MetaStageImplClass
|
2011-05-08 19:27:10 -04:00
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
};
|
|
|
|
|
2021-05-10 15:15:53 -04:00
|
|
|
GType meta_stage_impl_get_type (void) G_GNUC_CONST;
|
2011-05-08 19:27:10 -04:00
|
|
|
|
2021-05-10 15:15:53 -04:00
|
|
|
void meta_stage_impl_presented (MetaStageImpl *stage_impl,
|
|
|
|
CoglFrameEvent frame_event,
|
|
|
|
ClutterFrameInfo *frame_info);
|
2016-06-08 01:07:09 -04:00
|
|
|
|
2021-05-10 15:15:53 -04:00
|
|
|
void meta_stage_impl_add_onscreen_frame_info (MetaStageImpl *stage_impl,
|
|
|
|
ClutterStageView *view);
|
2020-10-09 19:02:28 -04:00
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
2021-05-10 07:27:39 -04:00
|
|
|
#endif /* META_STAGE_IMPL_PRIVATE_H */
|