2018-07-10 04:36:24 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
|
|
|
* Copyright (C) 2003 Rob Adams
|
|
|
|
* Copyright (C) 2004-2006 Elijah Newren
|
|
|
|
* Copyright (C) 2013-2018 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_BACKEND_TYPE_H
|
|
|
|
#define META_BACKEND_TYPE_H
|
|
|
|
|
2020-05-27 03:29:04 -04:00
|
|
|
typedef struct _MetaBackend MetaBackend;
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
typedef struct _MetaMonitorManager MetaMonitorManager;
|
|
|
|
|
|
|
|
typedef struct _MetaMonitorConfigManager MetaMonitorConfigManager;
|
|
|
|
typedef struct _MetaMonitorConfigStore MetaMonitorConfigStore;
|
|
|
|
typedef struct _MetaMonitorsConfig MetaMonitorsConfig;
|
|
|
|
|
|
|
|
typedef struct _MetaMonitor MetaMonitor;
|
|
|
|
typedef struct _MetaMonitorNormal MetaMonitorNormal;
|
|
|
|
typedef struct _MetaMonitorTiled MetaMonitorTiled;
|
|
|
|
typedef struct _MetaMonitorSpec MetaMonitorSpec;
|
|
|
|
typedef struct _MetaLogicalMonitor MetaLogicalMonitor;
|
|
|
|
|
2019-01-05 08:15:23 -05:00
|
|
|
typedef enum _MetaMonitorTransform MetaMonitorTransform;
|
2018-07-10 04:36:24 -04:00
|
|
|
|
|
|
|
typedef struct _MetaMonitorMode MetaMonitorMode;
|
|
|
|
|
|
|
|
typedef struct _MetaGpu MetaGpu;
|
|
|
|
|
|
|
|
typedef struct _MetaCrtc MetaCrtc;
|
|
|
|
typedef struct _MetaOutput MetaOutput;
|
|
|
|
typedef struct _MetaCrtcMode MetaCrtcMode;
|
2020-02-25 14:30:46 -05:00
|
|
|
typedef struct _MetaCrtcAssignment MetaCrtcAssignment;
|
|
|
|
typedef struct _MetaOutputAssignment MetaOutputAssignment;
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
typedef struct _MetaTileInfo MetaTileInfo;
|
|
|
|
|
|
|
|
typedef struct _MetaRenderer MetaRenderer;
|
|
|
|
typedef struct _MetaRendererView MetaRendererView;
|
|
|
|
|
2020-04-21 09:44:32 -04:00
|
|
|
typedef struct _MetaRemoteDesktop MetaRemoteDesktop;
|
2018-12-12 05:35:58 -05:00
|
|
|
typedef struct _MetaScreenCast MetaScreenCast;
|
|
|
|
typedef struct _MetaScreenCastSession MetaScreenCastSession;
|
|
|
|
typedef struct _MetaScreenCastStream MetaScreenCastStream;
|
|
|
|
|
2020-04-27 07:30:26 -04:00
|
|
|
typedef struct _MetaWaylandCompositor MetaWaylandCompositor;
|
|
|
|
|
2020-10-05 06:13:07 -04:00
|
|
|
#ifdef HAVE_REMOTE_DESKTOP
|
|
|
|
typedef struct _MetaRemoteDesktop MetaRemoteDesktop;
|
|
|
|
#endif
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#endif /* META_BACKEND_TYPE_H */
|