mirror of
https://github.com/brl/mutter.git
synced 2024-12-04 22:00:42 -05:00
ff4d87727b
Dropped obsolete Free Software Foundation address pointing to the FSF website instead as suggested by https://www.gnu.org/licenses/gpl-howto.html keeping intact the important part of the historical notice as requested by the license. Resolving rpmlint reported issue E: incorrect-fsf-address. Signed-off-by: Sandro Bonazzola <sbonazzo@redhat.com> Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3155>
81 lines
2.5 KiB
C
81 lines
2.5 KiB
C
/*
|
|
* Copyright (C) 2021 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "backends/native/meta-output-virtual.h"
|
|
|
|
#include "backends/native/meta-crtc-mode-virtual.h"
|
|
#include "backends/native/meta-crtc-virtual.h"
|
|
#include "backends/meta-virtual-monitor.h"
|
|
|
|
struct _MetaOutputVirtual
|
|
{
|
|
MetaOutputNative parent;
|
|
};
|
|
|
|
#define META_OUTPUT_VIRTUAL_ID_BIT (((uint64_t) 1) << 63)
|
|
|
|
G_DEFINE_TYPE (MetaOutputVirtual, meta_output_virtual, META_TYPE_OUTPUT_NATIVE)
|
|
|
|
MetaOutputVirtual *
|
|
meta_output_virtual_new (uint64_t id,
|
|
const MetaVirtualMonitorInfo *info,
|
|
MetaCrtcVirtual *crtc_virtual,
|
|
MetaCrtcModeVirtual *crtc_mode_virtual)
|
|
{
|
|
g_autoptr (MetaOutputInfo) output_info = NULL;
|
|
|
|
output_info = meta_output_info_new ();
|
|
output_info->name = g_strdup_printf ("Meta-%" G_GUINT64_FORMAT, id);
|
|
|
|
output_info->is_virtual = TRUE;
|
|
|
|
output_info->n_possible_crtcs = 1;
|
|
output_info->possible_crtcs = g_new0 (MetaCrtc *, 1);
|
|
output_info->possible_crtcs[0] = META_CRTC (crtc_virtual);
|
|
|
|
output_info->hotplug_mode_update = FALSE;
|
|
output_info->suggested_x = -1;
|
|
output_info->suggested_y = -1;
|
|
|
|
output_info->connector_type = META_CONNECTOR_TYPE_META;
|
|
output_info->vendor = g_strdup (info->vendor);
|
|
output_info->product = g_strdup (info->product);
|
|
output_info->serial = g_strdup (info->serial);
|
|
|
|
output_info->n_modes = 1;
|
|
output_info->modes = g_new0 (MetaCrtcMode *, 1);
|
|
output_info->modes[0] = META_CRTC_MODE (crtc_mode_virtual);
|
|
output_info->preferred_mode = output_info->modes[0];
|
|
|
|
return g_object_new (META_TYPE_OUTPUT_VIRTUAL,
|
|
"id", META_OUTPUT_VIRTUAL_ID_BIT | id,
|
|
"info", output_info,
|
|
NULL);
|
|
}
|
|
|
|
static void
|
|
meta_output_virtual_init (MetaOutputVirtual *output_virtual)
|
|
{
|
|
}
|
|
|
|
static void
|
|
meta_output_virtual_class_init (MetaOutputVirtualClass *klass)
|
|
{
|
|
}
|