2013-07-18 07:09:16 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file screen-private.h Handling of monitor configuration
|
|
|
|
*
|
|
|
|
* Managing multiple monitors
|
|
|
|
* This file contains structures and functions that handle
|
|
|
|
* multiple monitors, including reading the current configuration
|
|
|
|
* and available hardware, and applying it.
|
|
|
|
*
|
|
|
|
* This interface is private to mutter, API users should look
|
|
|
|
* at MetaScreen instead.
|
|
|
|
*/
|
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
/*
|
2013-07-18 07:09:16 -04:00
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
|
|
|
* Copyright (C) 2003 Rob Adams
|
|
|
|
* Copyright (C) 2004-2006 Elijah Newren
|
|
|
|
* Copyright (C) 2013 Red Hat Inc.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2013-07-18 07:09:16 -04:00
|
|
|
* 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.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2013-07-18 07:09:16 -04:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2013-07-18 07:09:16 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_MONITOR_PRIVATE_H
|
|
|
|
#define META_MONITOR_PRIVATE_H
|
|
|
|
|
2013-07-19 08:39:28 -04:00
|
|
|
#include <cogl/cogl.h>
|
2013-08-16 11:32:50 -04:00
|
|
|
#include <libgnome-desktop/gnome-pnp-ids.h>
|
2013-07-19 08:39:28 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
#include "display-private.h"
|
|
|
|
#include <meta/screen.h>
|
|
|
|
#include "stack-tracker.h"
|
2015-01-30 08:51:18 -05:00
|
|
|
#include <meta/meta-monitor-manager.h>
|
2013-07-24 04:01:57 -04:00
|
|
|
|
2014-03-31 23:34:23 -04:00
|
|
|
#include "meta-display-config-shared.h"
|
2014-03-31 23:33:01 -04:00
|
|
|
#include "meta-dbus-display-config.h"
|
2014-04-22 15:39:09 -04:00
|
|
|
#include "meta-cursor.h"
|
2013-07-29 07:00:15 -04:00
|
|
|
|
|
|
|
typedef struct _MetaMonitorConfigClass MetaMonitorConfigClass;
|
|
|
|
typedef struct _MetaMonitorConfig MetaMonitorConfig;
|
|
|
|
|
2016-11-25 01:31:38 -05:00
|
|
|
typedef struct _MetaLogicalMonitor MetaLogicalMonitor;
|
|
|
|
|
2013-07-19 08:39:28 -04:00
|
|
|
typedef struct _MetaCRTC MetaCRTC;
|
2015-01-30 08:51:18 -05:00
|
|
|
typedef struct _MetaOutput MetaOutput;
|
2013-07-19 08:39:28 -04:00
|
|
|
typedef struct _MetaMonitorMode MetaMonitorMode;
|
2013-07-24 12:01:31 -04:00
|
|
|
typedef struct _MetaCRTCInfo MetaCRTCInfo;
|
|
|
|
typedef struct _MetaOutputInfo MetaOutputInfo;
|
2015-03-30 20:41:51 -04:00
|
|
|
typedef struct _MetaTileInfo MetaTileInfo;
|
2013-07-18 07:09:16 -04:00
|
|
|
|
2014-07-10 17:39:47 -04:00
|
|
|
typedef enum {
|
|
|
|
META_MONITOR_TRANSFORM_NORMAL,
|
|
|
|
META_MONITOR_TRANSFORM_90,
|
|
|
|
META_MONITOR_TRANSFORM_180,
|
|
|
|
META_MONITOR_TRANSFORM_270,
|
|
|
|
META_MONITOR_TRANSFORM_FLIPPED,
|
|
|
|
META_MONITOR_TRANSFORM_FLIPPED_90,
|
|
|
|
META_MONITOR_TRANSFORM_FLIPPED_180,
|
|
|
|
META_MONITOR_TRANSFORM_FLIPPED_270,
|
|
|
|
} MetaMonitorTransform;
|
|
|
|
|
2014-12-29 19:18:24 -05:00
|
|
|
/* This matches the values in drm_mode.h */
|
|
|
|
typedef enum {
|
|
|
|
META_CONNECTOR_TYPE_Unknown = 0,
|
|
|
|
META_CONNECTOR_TYPE_VGA = 1,
|
|
|
|
META_CONNECTOR_TYPE_DVII = 2,
|
|
|
|
META_CONNECTOR_TYPE_DVID = 3,
|
|
|
|
META_CONNECTOR_TYPE_DVIA = 4,
|
|
|
|
META_CONNECTOR_TYPE_Composite = 5,
|
|
|
|
META_CONNECTOR_TYPE_SVIDEO = 6,
|
|
|
|
META_CONNECTOR_TYPE_LVDS = 7,
|
|
|
|
META_CONNECTOR_TYPE_Component = 8,
|
|
|
|
META_CONNECTOR_TYPE_9PinDIN = 9,
|
|
|
|
META_CONNECTOR_TYPE_DisplayPort = 10,
|
|
|
|
META_CONNECTOR_TYPE_HDMIA = 11,
|
|
|
|
META_CONNECTOR_TYPE_HDMIB = 12,
|
|
|
|
META_CONNECTOR_TYPE_TV = 13,
|
|
|
|
META_CONNECTOR_TYPE_eDP = 14,
|
|
|
|
META_CONNECTOR_TYPE_VIRTUAL = 15,
|
|
|
|
META_CONNECTOR_TYPE_DSI = 16,
|
|
|
|
} MetaConnectorType;
|
|
|
|
|
2015-03-30 20:41:51 -04:00
|
|
|
struct _MetaTileInfo {
|
|
|
|
guint32 group_id;
|
|
|
|
guint32 flags;
|
|
|
|
guint32 max_h_tiles;
|
|
|
|
guint32 max_v_tiles;
|
|
|
|
guint32 loc_h_tile;
|
|
|
|
guint32 loc_v_tile;
|
|
|
|
guint32 tile_w;
|
|
|
|
guint32 tile_h;
|
|
|
|
};
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
struct _MetaOutput
|
|
|
|
{
|
2013-07-19 08:39:28 -04:00
|
|
|
/* The CRTC driving this output, NULL if the output is not enabled */
|
|
|
|
MetaCRTC *crtc;
|
|
|
|
/* The low-level ID of this output, used to apply back configuration */
|
2014-07-01 13:23:05 -04:00
|
|
|
glong winsys_id;
|
2013-07-18 07:09:16 -04:00
|
|
|
char *name;
|
2013-07-19 08:39:28 -04:00
|
|
|
char *vendor;
|
|
|
|
char *product;
|
|
|
|
char *serial;
|
2013-07-18 07:09:16 -04:00
|
|
|
int width_mm;
|
|
|
|
int height_mm;
|
|
|
|
CoglSubpixelOrder subpixel_order;
|
2014-04-26 04:27:34 -04:00
|
|
|
int scale;
|
2013-07-19 08:39:28 -04:00
|
|
|
|
2014-12-29 19:18:24 -05:00
|
|
|
MetaConnectorType connector_type;
|
|
|
|
|
2013-07-19 08:39:28 -04:00
|
|
|
MetaMonitorMode *preferred_mode;
|
|
|
|
MetaMonitorMode **modes;
|
|
|
|
unsigned int n_modes;
|
|
|
|
|
|
|
|
MetaCRTC **possible_crtcs;
|
|
|
|
unsigned int n_possible_crtcs;
|
|
|
|
|
2013-07-19 12:47:01 -04:00
|
|
|
MetaOutput **possible_clones;
|
|
|
|
unsigned int n_possible_clones;
|
|
|
|
|
2013-07-25 09:06:09 -04:00
|
|
|
int backlight;
|
|
|
|
int backlight_min;
|
|
|
|
int backlight_max;
|
|
|
|
|
2013-07-23 04:07:52 -04:00
|
|
|
/* Used when changing configuration */
|
|
|
|
gboolean is_dirty;
|
|
|
|
|
2013-07-19 08:39:28 -04:00
|
|
|
/* The low-level bits used to build the high-level info
|
2016-11-25 01:31:38 -05:00
|
|
|
in MetaLogicalMonitor
|
2013-07-19 08:39:28 -04:00
|
|
|
|
|
|
|
XXX: flags maybe?
|
|
|
|
There is a lot of code that uses MonitorInfo->is_primary,
|
|
|
|
but nobody uses MetaOutput yet
|
|
|
|
*/
|
|
|
|
gboolean is_primary;
|
|
|
|
gboolean is_presentation;
|
2014-04-16 04:20:55 -04:00
|
|
|
gboolean is_underscanning;
|
2015-07-01 20:42:46 -04:00
|
|
|
gboolean supports_underscanning;
|
2013-07-30 05:36:18 -04:00
|
|
|
|
|
|
|
gpointer driver_private;
|
|
|
|
GDestroyNotify driver_notify;
|
2013-10-31 09:37:44 -04:00
|
|
|
|
|
|
|
/* get a new preferred mode on hotplug events, to handle dynamic guest resizing */
|
|
|
|
gboolean hotplug_mode_update;
|
2014-11-10 16:36:47 -05:00
|
|
|
gint suggested_x;
|
|
|
|
gint suggested_y;
|
2015-03-30 20:41:51 -04:00
|
|
|
|
|
|
|
MetaTileInfo tile_info;
|
2013-07-18 07:09:16 -04:00
|
|
|
};
|
|
|
|
|
2013-07-19 08:39:28 -04:00
|
|
|
struct _MetaCRTC
|
|
|
|
{
|
|
|
|
glong crtc_id;
|
|
|
|
MetaRectangle rect;
|
|
|
|
MetaMonitorMode *current_mode;
|
2014-07-10 17:39:47 -04:00
|
|
|
MetaMonitorTransform transform;
|
2013-07-24 04:01:57 -04:00
|
|
|
unsigned int all_transforms;
|
2013-07-19 08:39:28 -04:00
|
|
|
|
|
|
|
/* Only used to build the logical configuration
|
|
|
|
from the HW one
|
|
|
|
*/
|
2016-11-25 01:31:38 -05:00
|
|
|
MetaLogicalMonitor *logical_monitor;
|
2013-07-22 07:31:10 -04:00
|
|
|
|
|
|
|
/* Used when changing configuration */
|
|
|
|
gboolean is_dirty;
|
2013-09-05 10:45:41 -04:00
|
|
|
|
2015-07-17 11:16:39 -04:00
|
|
|
/* Used by cursor renderer backend */
|
|
|
|
void *cursor_renderer_private;
|
2015-04-27 20:42:10 -04:00
|
|
|
|
|
|
|
gpointer driver_private;
|
|
|
|
GDestroyNotify driver_notify;
|
2013-07-19 08:39:28 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _MetaMonitorMode
|
|
|
|
{
|
|
|
|
/* The low-level ID of this mode, used to apply back configuration */
|
|
|
|
glong mode_id;
|
2013-07-30 05:36:18 -04:00
|
|
|
char *name;
|
2013-07-19 08:39:28 -04:00
|
|
|
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
float refresh_rate;
|
2015-04-21 11:49:55 -04:00
|
|
|
guint32 flags;
|
2013-07-30 05:36:18 -04:00
|
|
|
|
|
|
|
gpointer driver_private;
|
|
|
|
GDestroyNotify driver_notify;
|
2013-07-19 08:39:28 -04:00
|
|
|
};
|
|
|
|
|
2015-03-30 21:08:34 -04:00
|
|
|
#define META_MAX_OUTPUTS_PER_MONITOR 4
|
2013-07-19 08:39:28 -04:00
|
|
|
/**
|
2016-11-25 01:31:38 -05:00
|
|
|
* MetaLogicalMonitor:
|
2013-07-19 08:39:28 -04:00
|
|
|
*
|
2016-11-25 01:31:38 -05:00
|
|
|
* A structure with high-level information about regions of the whole screen
|
|
|
|
* output. It corresponds to a subset of the compositor coordinate space, and
|
|
|
|
* may have one or more actual monitors associated with it. No two logical
|
|
|
|
* monitors will cover the same screen output.
|
2013-07-19 08:39:28 -04:00
|
|
|
*/
|
2016-11-25 01:31:38 -05:00
|
|
|
struct _MetaLogicalMonitor
|
2013-07-18 07:09:16 -04:00
|
|
|
{
|
|
|
|
int number;
|
|
|
|
int xinerama_index;
|
|
|
|
MetaRectangle rect;
|
2015-03-30 21:08:34 -04:00
|
|
|
/* for tiled monitors these are calculated, from untiled just copied */
|
|
|
|
float refresh_rate;
|
|
|
|
int width_mm;
|
|
|
|
int height_mm;
|
2013-07-18 07:09:16 -04:00
|
|
|
gboolean is_primary;
|
2013-07-19 08:39:28 -04:00
|
|
|
gboolean is_presentation; /* XXX: not yet used */
|
2013-07-18 07:09:16 -04:00
|
|
|
gboolean in_fullscreen;
|
2015-03-12 04:25:36 -04:00
|
|
|
int scale;
|
2013-07-18 07:09:16 -04:00
|
|
|
|
2013-07-19 08:39:28 -04:00
|
|
|
/* The primary or first output for this monitor, 0 if we can't figure out.
|
2014-07-01 13:23:05 -04:00
|
|
|
It can be matched to a winsys_id of a MetaOutput.
|
2013-07-19 08:39:28 -04:00
|
|
|
|
|
|
|
This is used as an opaque token on reconfiguration when switching from
|
|
|
|
clone to extened, to decide on what output the windows should go next
|
|
|
|
(it's an attempt to keep windows on the same monitor, and preferably on
|
|
|
|
the primary one).
|
|
|
|
*/
|
2014-07-01 13:23:05 -04:00
|
|
|
glong winsys_id;
|
2015-03-30 21:08:34 -04:00
|
|
|
|
|
|
|
guint32 tile_group_id;
|
|
|
|
|
|
|
|
int monitor_winsys_xid;
|
|
|
|
int n_outputs;
|
|
|
|
MetaOutput *outputs[META_MAX_OUTPUTS_PER_MONITOR];
|
2013-07-18 07:09:16 -04:00
|
|
|
};
|
|
|
|
|
2013-07-24 12:01:31 -04:00
|
|
|
/*
|
|
|
|
* MetaCRTCInfo:
|
|
|
|
* This represents the writable part of a CRTC, as deserialized from DBus
|
|
|
|
* or built by MetaMonitorConfig
|
|
|
|
*
|
|
|
|
* Note: differently from the other structures in this file, MetaCRTCInfo
|
|
|
|
* is handled by pointer. This is to accomodate the usage in MetaMonitorConfig
|
|
|
|
*/
|
|
|
|
struct _MetaCRTCInfo {
|
|
|
|
MetaCRTC *crtc;
|
|
|
|
MetaMonitorMode *mode;
|
|
|
|
int x;
|
|
|
|
int y;
|
2014-07-10 17:39:47 -04:00
|
|
|
MetaMonitorTransform transform;
|
2013-07-24 12:01:31 -04:00
|
|
|
GPtrArray *outputs;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MetaOutputInfo:
|
2015-03-12 04:28:25 -04:00
|
|
|
* this is the same as MetaCRTCInfo, but for outputs
|
2013-07-24 12:01:31 -04:00
|
|
|
*/
|
|
|
|
struct _MetaOutputInfo {
|
|
|
|
MetaOutput *output;
|
|
|
|
gboolean is_primary;
|
|
|
|
gboolean is_presentation;
|
2014-04-16 04:20:55 -04:00
|
|
|
gboolean is_underscanning;
|
2013-07-24 12:01:31 -04:00
|
|
|
};
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
#define META_TYPE_MONITOR_MANAGER (meta_monitor_manager_get_type ())
|
|
|
|
#define META_MONITOR_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), META_TYPE_MONITOR_MANAGER, MetaMonitorManager))
|
|
|
|
#define META_MONITOR_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), META_TYPE_MONITOR_MANAGER, MetaMonitorManagerClass))
|
|
|
|
#define META_IS_MONITOR_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), META_TYPE_MONITOR_MANAGER))
|
|
|
|
#define META_IS_MONITOR_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), META_TYPE_MONITOR_MANAGER))
|
|
|
|
#define META_MONITOR_MANAGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), META_TYPE_MONITOR_MANAGER, MetaMonitorManagerClass))
|
|
|
|
|
2013-07-29 07:00:15 -04:00
|
|
|
struct _MetaMonitorManager
|
|
|
|
{
|
|
|
|
MetaDBusDisplayConfigSkeleton parent_instance;
|
|
|
|
|
|
|
|
/* XXX: this structure is very badly
|
|
|
|
packed, but I like the logical organization
|
|
|
|
of fields */
|
|
|
|
|
|
|
|
gboolean in_init;
|
|
|
|
unsigned int serial;
|
|
|
|
|
|
|
|
MetaPowerSave power_save_mode;
|
|
|
|
|
|
|
|
int max_screen_width;
|
|
|
|
int max_screen_height;
|
|
|
|
int screen_width;
|
|
|
|
int screen_height;
|
|
|
|
|
|
|
|
/* Outputs refer to physical screens,
|
|
|
|
CRTCs refer to stuff that can drive outputs
|
|
|
|
(like encoders, but less tied to the HW),
|
2016-11-25 01:31:38 -05:00
|
|
|
while logical_monitors refer to logical ones.
|
2013-07-29 07:00:15 -04:00
|
|
|
*/
|
|
|
|
MetaOutput *outputs;
|
|
|
|
unsigned int n_outputs;
|
|
|
|
|
|
|
|
MetaMonitorMode *modes;
|
|
|
|
unsigned int n_modes;
|
|
|
|
|
|
|
|
MetaCRTC *crtcs;
|
|
|
|
unsigned int n_crtcs;
|
|
|
|
|
2016-11-25 01:31:38 -05:00
|
|
|
MetaLogicalMonitor *logical_monitors;
|
|
|
|
unsigned int n_logical_monitors;
|
2016-11-28 07:43:27 -05:00
|
|
|
MetaLogicalMonitor *primary_logical_monitor;
|
2013-07-29 07:00:15 -04:00
|
|
|
|
|
|
|
int dbus_name_id;
|
|
|
|
|
|
|
|
int persistent_timeout_id;
|
|
|
|
MetaMonitorConfig *config;
|
2013-08-16 11:32:50 -04:00
|
|
|
|
|
|
|
GnomePnpIds *pnp_ids;
|
2013-07-29 07:00:15 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _MetaMonitorManagerClass
|
|
|
|
{
|
|
|
|
MetaDBusDisplayConfigSkeletonClass parent_class;
|
|
|
|
|
|
|
|
void (*read_current) (MetaMonitorManager *);
|
2013-08-08 07:32:05 -04:00
|
|
|
|
|
|
|
char* (*get_edid_file) (MetaMonitorManager *,
|
|
|
|
MetaOutput *);
|
|
|
|
GBytes* (*read_edid) (MetaMonitorManager *,
|
|
|
|
MetaOutput *);
|
|
|
|
|
2013-07-29 07:00:15 -04:00
|
|
|
void (*apply_configuration) (MetaMonitorManager *,
|
|
|
|
MetaCRTCInfo **,
|
|
|
|
unsigned int ,
|
|
|
|
MetaOutputInfo **,
|
|
|
|
unsigned int);
|
|
|
|
|
|
|
|
void (*set_power_save_mode) (MetaMonitorManager *,
|
|
|
|
MetaPowerSave);
|
|
|
|
|
|
|
|
void (*change_backlight) (MetaMonitorManager *,
|
|
|
|
MetaOutput *,
|
|
|
|
int);
|
|
|
|
|
|
|
|
void (*get_crtc_gamma) (MetaMonitorManager *,
|
|
|
|
MetaCRTC *,
|
|
|
|
gsize *,
|
|
|
|
unsigned short **,
|
|
|
|
unsigned short **,
|
|
|
|
unsigned short **);
|
|
|
|
void (*set_crtc_gamma) (MetaMonitorManager *,
|
|
|
|
MetaCRTC *,
|
|
|
|
gsize ,
|
|
|
|
unsigned short *,
|
|
|
|
unsigned short *,
|
|
|
|
unsigned short *);
|
2015-03-30 21:11:12 -04:00
|
|
|
|
|
|
|
void (*add_monitor) (MetaMonitorManager *,
|
2016-11-25 01:31:38 -05:00
|
|
|
MetaLogicalMonitor *);
|
2015-03-30 21:11:12 -04:00
|
|
|
|
|
|
|
void (*delete_monitor) (MetaMonitorManager *,
|
|
|
|
int monitor_winsys_xid);
|
|
|
|
|
2013-07-29 07:00:15 -04:00
|
|
|
};
|
2013-07-18 07:09:16 -04:00
|
|
|
|
2013-09-02 09:04:05 -04:00
|
|
|
void meta_monitor_manager_rebuild_derived (MetaMonitorManager *manager);
|
|
|
|
|
2016-11-28 07:11:24 -05:00
|
|
|
int meta_monitor_manager_get_num_logical_monitors (MetaMonitorManager *manager);
|
|
|
|
|
2016-11-25 01:31:38 -05:00
|
|
|
MetaLogicalMonitor *meta_monitor_manager_get_logical_monitors (MetaMonitorManager *manager,
|
|
|
|
unsigned int *n_logical_monitors);
|
2013-07-18 07:09:16 -04:00
|
|
|
|
2016-11-28 22:46:41 -05:00
|
|
|
MetaLogicalMonitor *meta_monitor_manager_get_logical_monitor_from_number (MetaMonitorManager *manager,
|
|
|
|
int number);
|
|
|
|
|
2016-11-28 07:43:27 -05:00
|
|
|
MetaLogicalMonitor *meta_monitor_manager_get_primary_logical_monitor (MetaMonitorManager *manager);
|
|
|
|
|
2016-11-29 21:49:00 -05:00
|
|
|
MetaLogicalMonitor *meta_monitor_manager_get_logical_monitor_at (MetaMonitorManager *manager,
|
|
|
|
int x,
|
|
|
|
int y);
|
|
|
|
|
2016-11-30 23:52:07 -05:00
|
|
|
MetaLogicalMonitor *meta_monitor_manager_get_logical_monitor_from_rect (MetaMonitorManager *manager,
|
|
|
|
MetaRectangle *rect);
|
|
|
|
|
2016-12-01 02:15:52 -05:00
|
|
|
MetaLogicalMonitor *meta_monitor_manager_get_logical_monitor_neighbor (MetaMonitorManager *manager,
|
|
|
|
MetaLogicalMonitor *logical_monitor,
|
|
|
|
MetaScreenDirection direction);
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
MetaOutput *meta_monitor_manager_get_outputs (MetaMonitorManager *manager,
|
2013-07-24 09:35:47 -04:00
|
|
|
unsigned int *n_outputs);
|
2013-07-18 07:09:16 -04:00
|
|
|
|
2013-07-24 12:01:31 -04:00
|
|
|
void meta_monitor_manager_get_resources (MetaMonitorManager *manager,
|
|
|
|
MetaMonitorMode **modes,
|
|
|
|
unsigned int *n_modes,
|
|
|
|
MetaCRTC **crtcs,
|
|
|
|
unsigned int *n_crtcs,
|
|
|
|
MetaOutput **outputs,
|
|
|
|
unsigned int *n_outputs);
|
|
|
|
|
2013-07-22 12:57:12 -04:00
|
|
|
void meta_monitor_manager_get_screen_size (MetaMonitorManager *manager,
|
|
|
|
int *width,
|
|
|
|
int *height);
|
2013-07-18 07:09:16 -04:00
|
|
|
|
2013-07-25 04:57:59 -04:00
|
|
|
void meta_monitor_manager_get_screen_limits (MetaMonitorManager *manager,
|
|
|
|
int *width,
|
|
|
|
int *height);
|
|
|
|
|
2013-07-24 12:01:31 -04:00
|
|
|
void meta_monitor_manager_apply_configuration (MetaMonitorManager *manager,
|
|
|
|
MetaCRTCInfo **crtcs,
|
|
|
|
unsigned int n_crtcs,
|
|
|
|
MetaOutputInfo **outputs,
|
|
|
|
unsigned int n_outputs);
|
2013-07-24 09:35:47 -04:00
|
|
|
|
2013-07-29 04:12:24 -04:00
|
|
|
void meta_monitor_manager_confirm_configuration (MetaMonitorManager *manager,
|
|
|
|
gboolean ok);
|
|
|
|
|
2015-01-04 15:24:05 -05:00
|
|
|
void meta_output_parse_edid (MetaOutput *output,
|
|
|
|
GBytes *edid);
|
2016-04-21 11:29:44 -04:00
|
|
|
gboolean meta_output_is_laptop (MetaOutput *output);
|
2015-01-04 15:24:05 -05:00
|
|
|
|
2013-07-24 12:01:31 -04:00
|
|
|
void meta_crtc_info_free (MetaCRTCInfo *info);
|
|
|
|
void meta_output_info_free (MetaOutputInfo *info);
|
|
|
|
|
2013-10-31 09:37:44 -04:00
|
|
|
gboolean meta_monitor_manager_has_hotplug_mode_update (MetaMonitorManager *manager);
|
2014-10-12 16:35:55 -04:00
|
|
|
void meta_monitor_manager_read_current_config (MetaMonitorManager *manager);
|
2014-10-12 18:13:15 -04:00
|
|
|
void meta_monitor_manager_on_hotplug (MetaMonitorManager *manager);
|
2013-09-02 09:04:05 -04:00
|
|
|
|
2014-12-11 12:14:00 -05:00
|
|
|
gboolean meta_monitor_manager_get_monitor_matrix (MetaMonitorManager *manager,
|
|
|
|
MetaOutput *output,
|
|
|
|
gfloat matrix[6]);
|
|
|
|
|
2015-03-27 10:48:49 -04:00
|
|
|
gint meta_monitor_manager_get_monitor_at_point (MetaMonitorManager *manager,
|
|
|
|
gfloat x,
|
|
|
|
gfloat y);
|
|
|
|
|
2015-10-27 10:02:43 -04:00
|
|
|
void meta_monitor_manager_clear_output (MetaOutput *output);
|
|
|
|
void meta_monitor_manager_clear_mode (MetaMonitorMode *mode);
|
|
|
|
void meta_monitor_manager_clear_crtc (MetaCRTC *crtc);
|
|
|
|
|
2013-07-24 04:01:57 -04:00
|
|
|
/* Returns true if transform causes width and height to be inverted
|
|
|
|
This is true for the odd transforms in the enum */
|
|
|
|
static inline gboolean
|
2014-07-10 17:39:47 -04:00
|
|
|
meta_monitor_transform_is_rotated (MetaMonitorTransform transform)
|
2013-07-24 04:01:57 -04:00
|
|
|
{
|
|
|
|
return (transform % 2);
|
|
|
|
}
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
#endif
|