summaryrefslogtreecommitdiff
path: root/src/backends/x11/meta-renderer-x11.c
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2016-05-07 23:07:46 +0800
committerJonas Ådahl <jadahl@gmail.com>2016-07-20 14:23:48 +0800
commita54042e938cd1359c664c07b2f4c0f08df7a5624 (patch)
tree4b1ebcd8be64da3f3cbb0ea365de91eb2fa988f5 /src/backends/x11/meta-renderer-x11.c
parent2facf26568054439f8fe582dc478585d3a7e7356 (diff)
downloadmutter-a54042e938cd1359c664c07b2f4c0f08df7a5624.tar.gz
Introduce MetaRenderer
MetaRenderer is meant to be the object responsible for rendering the scene graph. It will contain the logic related to the cogl winsys backend, the clutter backend, and the clutter stage window. https://bugzilla.gnome.org/show_bug.cgi?id=768976
Diffstat (limited to 'src/backends/x11/meta-renderer-x11.c')
-rw-r--r--src/backends/x11/meta-renderer-x11.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/backends/x11/meta-renderer-x11.c b/src/backends/x11/meta-renderer-x11.c
new file mode 100644
index 000000000..3eebdee71
--- /dev/null
+++ b/src/backends/x11/meta-renderer-x11.c
@@ -0,0 +1,46 @@
+/* -*- 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>
+ */
+
+#include "config.h"
+
+#include <glib-object.h>
+
+#include "backends/x11/meta-renderer-x11.h"
+
+struct _MetaRendererX11
+{
+ MetaRenderer parent;
+};
+
+G_DEFINE_TYPE (MetaRendererX11, meta_renderer_x11, META_TYPE_RENDERER)
+
+static void
+meta_renderer_x11_init (MetaRendererX11 *renderer_x11)
+{
+}
+
+static void
+meta_renderer_x11_class_init (MetaRendererX11Class *klass)
+{
+}