9d3e4fd402
We failed to use the buffer age when monitors were rotated, as when they are, we first composite to an offscreen framebuffer, then later again to the onscreen. The buffer age checking happened on the offscreen, and an offscreen being single buffered, they can't possible support buffer ages. Instead, move the buffer age check to check the actual onscreen framebuffer. The offscreen to onscreen painting is still always full frame, but that will be fixed in a later commit. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1237
223 lines
7.0 KiB
C
223 lines
7.0 KiB
C
/*
|
|
* Copyright (C) 2016 Red Hat Inc.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:meta-renderer-view
|
|
* @title: MetaRendererView
|
|
* @short_description: Renders (a part of) the global stage.
|
|
*
|
|
* A MetaRendererView object is responsible for rendering (a part of) the
|
|
* global stage, or more precisely: the part that matches what can be seen on a
|
|
* #MetaLogicalMonitor. By splitting up the rendering into different parts and
|
|
* attaching it to a #MetaLogicalMonitor, we can do the rendering so that each
|
|
* renderer view is responsible for applying the right #MetaMonitorTransform
|
|
* and the right scaling.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "backends/meta-renderer-view.h"
|
|
|
|
#include "backends/meta-renderer.h"
|
|
#include "clutter/clutter-mutter.h"
|
|
#include "compositor/region-utils.h"
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
|
|
PROP_TRANSFORM,
|
|
|
|
PROP_LAST
|
|
};
|
|
|
|
static GParamSpec *obj_props[PROP_LAST];
|
|
|
|
struct _MetaRendererView
|
|
{
|
|
ClutterStageViewCogl parent;
|
|
|
|
MetaMonitorTransform transform;
|
|
};
|
|
|
|
G_DEFINE_TYPE (MetaRendererView, meta_renderer_view,
|
|
CLUTTER_TYPE_STAGE_VIEW_COGL)
|
|
|
|
MetaMonitorTransform
|
|
meta_renderer_view_get_transform (MetaRendererView *view)
|
|
{
|
|
return view->transform;
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_get_offscreen_transformation_matrix (ClutterStageView *view,
|
|
CoglMatrix *matrix)
|
|
{
|
|
MetaRendererView *renderer_view = META_RENDERER_VIEW (view);
|
|
|
|
cogl_matrix_init_identity (matrix);
|
|
|
|
switch (renderer_view->transform)
|
|
{
|
|
case META_MONITOR_TRANSFORM_NORMAL:
|
|
break;
|
|
case META_MONITOR_TRANSFORM_90:
|
|
cogl_matrix_rotate (matrix, 90, 0, 0, 1);
|
|
cogl_matrix_translate (matrix, 0, -1, 0);
|
|
break;
|
|
case META_MONITOR_TRANSFORM_180:
|
|
cogl_matrix_rotate (matrix, 180, 0, 0, 1);
|
|
cogl_matrix_translate (matrix, -1, -1, 0);
|
|
break;
|
|
case META_MONITOR_TRANSFORM_270:
|
|
cogl_matrix_rotate (matrix, 270, 0, 0, 1);
|
|
cogl_matrix_translate (matrix, -1, 0, 0);
|
|
break;
|
|
case META_MONITOR_TRANSFORM_FLIPPED:
|
|
cogl_matrix_scale (matrix, -1, 1, 1);
|
|
cogl_matrix_translate (matrix, -1, 0, 0);
|
|
break;
|
|
case META_MONITOR_TRANSFORM_FLIPPED_90:
|
|
cogl_matrix_scale (matrix, -1, 1, 1);
|
|
cogl_matrix_rotate (matrix, 90, 0, 0, 1);
|
|
break;
|
|
case META_MONITOR_TRANSFORM_FLIPPED_180:
|
|
cogl_matrix_scale (matrix, -1, 1, 1);
|
|
cogl_matrix_rotate (matrix, 180, 0, 0, 1);
|
|
cogl_matrix_translate (matrix, 0, -1, 0);
|
|
break;
|
|
case META_MONITOR_TRANSFORM_FLIPPED_270:
|
|
cogl_matrix_scale (matrix, -1, 1, 1);
|
|
cogl_matrix_rotate (matrix, 270, 0, 0, 1);
|
|
cogl_matrix_translate (matrix, -1, -1, 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_setup_offscreen_blit_pipeline (ClutterStageView *view,
|
|
CoglPipeline *pipeline)
|
|
{
|
|
CoglMatrix matrix;
|
|
|
|
meta_renderer_view_get_offscreen_transformation_matrix (view, &matrix);
|
|
cogl_pipeline_set_layer_matrix (pipeline, 0, &matrix);
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_transform_rect_to_onscreen (ClutterStageView *view,
|
|
const cairo_rectangle_int_t *src_rect,
|
|
int dst_width,
|
|
int dst_height,
|
|
cairo_rectangle_int_t *dst_rect)
|
|
{
|
|
MetaRendererView *renderer_view = META_RENDERER_VIEW (view);
|
|
MetaMonitorTransform inverted_transform;
|
|
|
|
inverted_transform =
|
|
meta_monitor_transform_invert (renderer_view->transform);
|
|
return meta_rectangle_transform (src_rect,
|
|
inverted_transform,
|
|
dst_width,
|
|
dst_height,
|
|
dst_rect);
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_set_transform (MetaRendererView *view,
|
|
MetaMonitorTransform transform)
|
|
{
|
|
if (view->transform == transform)
|
|
return;
|
|
|
|
view->transform = transform;
|
|
clutter_stage_view_invalidate_offscreen_blit_pipeline (CLUTTER_STAGE_VIEW (view));
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_get_property (GObject *object,
|
|
guint prop_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
MetaRendererView *view = META_RENDERER_VIEW (object);
|
|
|
|
switch (prop_id)
|
|
{
|
|
case PROP_TRANSFORM:
|
|
g_value_set_uint (value, view->transform);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_set_property (GObject *object,
|
|
guint prop_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
MetaRendererView *view = META_RENDERER_VIEW (object);
|
|
|
|
switch (prop_id)
|
|
{
|
|
case PROP_TRANSFORM:
|
|
meta_renderer_view_set_transform (view, g_value_get_uint (value));
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_init (MetaRendererView *view)
|
|
{
|
|
}
|
|
|
|
static void
|
|
meta_renderer_view_class_init (MetaRendererViewClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
ClutterStageViewClass *view_class = CLUTTER_STAGE_VIEW_CLASS (klass);
|
|
|
|
view_class->setup_offscreen_blit_pipeline =
|
|
meta_renderer_view_setup_offscreen_blit_pipeline;
|
|
view_class->get_offscreen_transformation_matrix =
|
|
meta_renderer_view_get_offscreen_transformation_matrix;
|
|
view_class->transform_rect_to_onscreen =
|
|
meta_renderer_view_transform_rect_to_onscreen;
|
|
|
|
object_class->get_property = meta_renderer_view_get_property;
|
|
object_class->set_property = meta_renderer_view_set_property;
|
|
|
|
obj_props[PROP_TRANSFORM] =
|
|
g_param_spec_uint ("transform",
|
|
"Transform",
|
|
"Transform to apply to the view",
|
|
META_MONITOR_TRANSFORM_NORMAL,
|
|
META_MONITOR_TRANSFORM_FLIPPED_270,
|
|
META_MONITOR_TRANSFORM_NORMAL,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
g_object_class_install_properties (object_class, PROP_LAST, obj_props);
|
|
}
|