1c98f01a65
Prior to this commit the stage was drawn separately for each logical monitor. This allowed to draw different parts of the stage with different transformations, e.g. with a different viewport to implement HiDPI support. Go even further and have one view per CRTC. This causes the stage to e.g. draw two mirrored monitors twice, instead of using the same framebuffer on both. This enables us to do two things: one is to support tiled monitors and monitor mirroring using the EGLStreams backend; the other is that it'll enable us to tie rendering directly to the CRTC it will render for. It is also a requirement for rendering being affected by CRTC state, such as gamma. It'll be possible to still inhibit re-drawing of the same content twice, but it should be implemented differently, so that it will still be possible to implement features requiring the CRTC split. https://gitlab.gnome.org/GNOME/mutter/merge_requests/1042
66 lines
2.2 KiB
C
66 lines
2.2 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
* Copyright (C) 2016 Red Hat
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program 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
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
* 02111-1307, USA.
|
|
*
|
|
* Written by:
|
|
* Jonas Ådahl <jadahl@gmail.com>
|
|
*/
|
|
|
|
#ifndef META_RENDERER_H
|
|
#define META_RENDERER_H
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "backends/meta-monitor-manager-private.h"
|
|
#include "backends/meta-renderer-view.h"
|
|
#include "core/util-private.h"
|
|
#include "clutter/clutter-mutter.h"
|
|
#include "cogl/cogl.h"
|
|
|
|
#define META_TYPE_RENDERER (meta_renderer_get_type ())
|
|
G_DECLARE_DERIVABLE_TYPE (MetaRenderer, meta_renderer, META, RENDERER, GObject)
|
|
|
|
struct _MetaRendererClass
|
|
{
|
|
GObjectClass parent_class;
|
|
|
|
CoglRenderer * (* create_cogl_renderer) (MetaRenderer *renderer);
|
|
MetaRendererView * (* create_view) (MetaRenderer *renderer,
|
|
MetaLogicalMonitor *logical_monitor,
|
|
MetaOutput *output,
|
|
MetaCrtc *crtc);
|
|
void (* rebuild_views) (MetaRenderer *renderer);
|
|
};
|
|
|
|
MetaBackend * meta_renderer_get_backend (MetaRenderer *renderer);
|
|
|
|
CoglRenderer * meta_renderer_create_cogl_renderer (MetaRenderer *renderer);
|
|
|
|
void meta_renderer_rebuild_views (MetaRenderer *renderer);
|
|
|
|
void meta_renderer_set_legacy_view (MetaRenderer *renderer,
|
|
MetaRendererView *legacy_view);
|
|
|
|
META_EXPORT_TEST
|
|
GList * meta_renderer_get_views (MetaRenderer *renderer);
|
|
|
|
gboolean meta_renderer_is_hardware_accelerated (MetaRenderer *renderer);
|
|
|
|
#endif /* META_RENDERER_H */
|