summaryrefslogtreecommitdiffstats
path: root/examples/activeqt/opengl/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/activeqt/opengl/main.cpp')
-rw-r--r--examples/activeqt/opengl/main.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/examples/activeqt/opengl/main.cpp b/examples/activeqt/opengl/main.cpp
deleted file mode 100644
index 2f78324..0000000
--- a/examples/activeqt/opengl/main.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-//
-// Qt OpenGL example: Box
-//
-// A small example showing how a GLWidget can be used just as any Qt widget
-//
-// File: main.cpp
-//
-// The main() function
-//
-
-#include "globjwin.h"
-#include "glbox.h"
-#include <QApplication>
-//! [0]
-#include <QAxFactory>
-
-QAXFACTORY_BEGIN(
- "{2c3c183a-eeda-41a4-896e-3d9c12c3577d}", // type library ID
- "{83e16271-6480-45d5-aaf1-3f40b7661ae4}") // application ID
- QAXCLASS(GLBox)
-QAXFACTORY_END()
-
-//! [0] //! [1]
-/*
- The main program is here.
-*/
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc,argv);
-
- if (QOpenGLContext::openGLModuleType() != QOpenGLContext::LibGL) {
- qWarning("This system does not support OpenGL. Exiting.");
- return -1;
- }
-
- if (!QAxFactory::isServer()) {
- GLObjectWindow w;
- w.resize(400, 350);
- w.show();
- return a.exec();
-//! [1] //! [2]
- }
- return a.exec();
-//! [2] //! [3]
-}
-//! [3]