mirror of
https://github.com/brl/mutter.git
synced 2025-02-15 12:54:10 +00:00
![Jonas Ådahl](/assets/img/avatar_default.png)
Split up the X11 backend into two parts, one for running as a Compositing Manager, and one for running as a nested Wayland compositor. This commit also cleans up the compositor configuration calculation, attempting to make it more approachable. https://bugzilla.gnome.org/show_bug.cgi?id=777800
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2017 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.
|
|
*/
|
|
|
|
#ifndef META_BACKEND_X11_CM_H
|
|
#define META_BACKEND_X11_CM_H
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "backends/x11/meta-backend-x11.h"
|
|
|
|
#define META_TYPE_BACKEND_X11_CM (meta_backend_x11_cm_get_type ())
|
|
G_DECLARE_FINAL_TYPE (MetaBackendX11Cm, meta_backend_x11_cm,
|
|
META, BACKEND_X11_CM, MetaBackendX11)
|
|
|
|
#endif /* META_BACKEND_X11_CM_H */
|