summaryrefslogtreecommitdiffstats
path: root/include/vcl/opengl/IOpenGLRenderer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/opengl/IOpenGLRenderer.hxx')
-rw-r--r--include/vcl/opengl/IOpenGLRenderer.hxx47
1 files changed, 0 insertions, 47 deletions
diff --git a/include/vcl/opengl/IOpenGLRenderer.hxx b/include/vcl/opengl/IOpenGLRenderer.hxx
deleted file mode 100644
index f8c0116d6c98..000000000000
--- a/include/vcl/opengl/IOpenGLRenderer.hxx
+++ /dev/null
@@ -1,47 +0,0 @@
-/* -*- 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/.
- */
-
-#ifndef INCLUDED_VCL_OPENGL_IOPENGLRENDERER_HXX
-#define INCLUDED_VCL_OPENGL_IOPENGLRENDERER_HXX
-
-class IOpenGLInfoProvider
-{
-public:
- virtual ~IOpenGLInfoProvider() {}
-
- virtual bool isOpenGLInitialized() = 0;
-};
-
-class IOpenGLRenderer
-{
-public:
- IOpenGLRenderer():
- mpInfoProvider(NULL) {}
- virtual ~IOpenGLRenderer() {}
-
- bool isOpenGLInitialized()
- {
- if(mpInfoProvider)
- return mpInfoProvider->isOpenGLInitialized();
-
- return false;
- }
-
- void setInfoProvider(IOpenGLInfoProvider* pInfo)
- {
- mpInfoProvider = pInfo;
- }
-
-private:
- IOpenGLInfoProvider* mpInfoProvider;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */