summaryrefslogtreecommitdiff
path: root/vcl/source/window/openglwin.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-05-07 03:45:41 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-05-07 21:23:03 +0200
commita8e66dd657dff28ef7ae9cfbe15ea43e4c08aefd (patch)
tree1746b15cf28cb838f0f31ab686963c6b759e39f9 /vcl/source/window/openglwin.cxx
parent036b6c9ef43ab98d481f666cfe83896e8437daa2 (diff)
add new window that contains OpenGL context
Change-Id: I81ce3581942d03785809d728b6b54b570899bcdc
Diffstat (limited to 'vcl/source/window/openglwin.cxx')
-rw-r--r--vcl/source/window/openglwin.cxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/vcl/source/window/openglwin.cxx b/vcl/source/window/openglwin.cxx
new file mode 100644
index 000000000000..29a21a2ada81
--- /dev/null
+++ b/vcl/source/window/openglwin.cxx
@@ -0,0 +1,22 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include <vcl/openglwin.hxx>
+
+OpenGLWindow::OpenGLWindow(Window* pParent):
+ SystemChildWindow(pParent, 0)
+{
+}
+
+OpenGLContext& OpenGLWindow::getContext()
+{
+ return maContext;
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */