Giter Site home page Giter Site logo

osgqt's Introduction

Build Status Coverity Status Documentation ABI Tracker

Introduction

Welcome to the OpenSceneGraph (OSG).

For information on the project, in-depth details on how to compile and run libraries and examples, see the documentation on the OpenSceneGraph website:

http://www.openscenegraph.org/index.php/documentation

For support please use the github OpenSceneGraph Discussions forum:

https://github.com/openscenegraph/OpenSceneGraph/discussions

For the impatient, we've included quick build instructions below, these are are broken down is three parts:

  1. General notes on building the OpenSceneGraph
  2. macOS release notes
  3. iOS release notes

If details below are not sufficient then head over to the openscenegraph.org to the Documentation/GettingStarted and Documentation/PlatformSpecifics sections for more indepth instructions.

Robert Osfield. Project Lead. 26th April 2018.


Section 1. How to build OpenSceneGraph

If you are using the vcpkg dependency manager you can download and install OpenSceneGraph from source with CMake integration using a single command:

vcpkg install osg

The OpenSceneGraph uses the CMake build system to generate a platform-specific build environment. CMake reads the CMakeLists.txt files that you'll find throughout the OpenSceneGraph directories, checks for installed dependencies and then generates files for the selected build system.

If you don't already have CMake installed on your system you can grab it from http://www.cmake.org, use version 2.8.0 or later. Details on the OpenSceneGraph's CMake build can be found at:

http://www.openscenegraph.org/projects/osg/wiki/Build/CMake

Under Unix-like systems (i.e. Linux, IRIX, Solaris, Free-BSD, HP-UX, AIX, macOS) use the cmake or ccmake command-line utils. Note that cmake . defaults to building Release to ensure that you get the best performance from your final libraries/applications.

cd OpenSceneGraph
cmake .
make
sudo make install

Alternatively, you can create an out-of-source build directory and run cmake or ccmake from there. The advantage to this approach is that the temporary files created by CMake won't clutter the OpenSceneGraph source directory, and also makes it possible to have multiple independent build targets by creating multiple build directories. In a directory alongside the OpenSceneGraph use:

mkdir build
cd build
cmake ../OpenSceneGraph
make
sudo make install

Under Windows use the GUI tool CMakeSetup to build your VisualStudio files. The following page on our wiki dedicated to the CMake build system should help guide you through the process:

http://www.openscenegraph.org/index.php/documentation/platform-specifics/windows

Under macOS you can either use the CMake build system above, or use the Xcode projects that you will find in the OpenSceneGraph/Xcode directory. See release notes on macOS CMake build below.

For further details on compilation, installation and platform-specific information read "Getting Started" guide:

http://www.openscenegraph.org/index.php/documentation/10-getting-started

Section 2. Release notes on macOS build, by Eric Sokolowski et al.

There are two ways to compile OpenSceneGraph under macOS. The recommended way is to use CMake to generate Xcode project files and then use Xcode to build the library. The default project will be able to build Debug or Release libraries, examples, and sample applications.

The alternative is to build OpenSceneGraph from the command line using make or ninja using the instructions for Unix-like systems above.

Here are some key settings to consider when using CMake:

  • BUILD_OSG_EXAMPLES - By default this is turned off. Turn this setting on to compile many great example programs.
  • CMAKE_OSX_ARCHITECTURES - Xcode can create applications, executables, libraries, and frameworks that can be run on more than one architecture. Use this setting to indicate the architectures on which to build OSG. x86_64 is the only supported value for OS versions > 10.7.
  • OSG_BUILD_APPLICATION_BUNDLES - Normally only executable binaries are created for the examples and sample applications. Turn this option on if you want to create real macOS .app bundles. There are caveats to creating .app bundles, see below.
  • OSG_DEFAULT_IMAGE_PLUGIN_FOR_OSX - By default macOS uses the imageio plugin instead of the plugins for the individual file types (e.g. jpg, gif, etc.) to load image file types. The imageio plugin can handle all popular file formats through the ImageIO framework.
  • OSG_WINDOWING_SYSTEM - You have the choice to use Cocoa, Carbon, or X11 when building applications on macOS. Cocoa is the default for OS versions >= 10.5. Carbon and X11 are no longer actively supported, either by Apple or the OSG community.

APPLICATION BUNDLES (.app bundles)

The example programs when built as application bundles only contain the executable file. They do not contain the dependent libraries as would a normal bundle, so they are not generally portable to other machines. They also do not know where to find plugins. An environmental variable OSG_LIBRARY_PATH may be set to point to the location where the plugin .so files are located. OSG_FILE_PATH may be set to point to the location where data files are located. Setting OSG_FILE_PATH to the OpenSceneGraph-Data directory is very useful when testing OSG by running the example programs.

Many of the example programs use command-line arguments. When double-clicking on an application (or using the equivalent "open" command on the command line) only those examples and applications that do not require command-line arguments will successfully run. The executable file within the .app bundle can be run from the command-line if command-line arguments are needed.

Section 3. Release notes on iOS build, by Thomas Hogarth

With CMake 3.11, XCode 9.4 and the iOS sdk 11.4 installed you can generate an iOS XCode project using the following command line:

export THIRDPARTY_PATH=/path/to/3rdParty
cmake ./ -G Xcode -DOSG_BUILD_PLATFORM_IPHONE:BOOL=ON \
-DIPHONE_SDKVER="11.4" \
-DIPHONE_VERSION_MIN="10.0" \
-DOPENGL_PROFILE:STRING=GLES3 \
-DOSG_CPP_EXCEPTIONS_AVAILABLE:BOOL=ON \
-DBUILD_OSG_APPLICATIONS:BOOL=OFF \
-DBUILD_OSG_EXAMPLES:BOOL=ON \
-DOSG_WINDOWING_SYSTEM:STRING=IOS \
-DOSG_DEFAULT_IMAGE_PLUGIN_FOR_OSX="imageio" \
-DDYNAMIC_OPENSCENEGRAPH:BOOL=OFF \
-DDYNAMIC_OPENTHREADS:BOOL=OFF \
-DCURL_INCLUDE_DIR:PATH="$THIRDPARTY_PATH/curl-ios-device/include" \
-DCURL_LIBRARY:PATH="$THIRDPARTY_PATH/curl-ios-device/lib/libcurl.a" \
-DFREETYPE_INCLUDE_DIR_freetype2:PATH="$THIRDPARTY_PATH/freetype-ios-universal/include/freetype" \
-DFREETYPE_INCLUDE_DIR_ft2build:PATH="$THIRDPARTY_PATH/freetype-ios-universal/include" \
-DFREETYPE_LIBRARY:PATH="$THIRDPARTY_PATH/freetype-ios-universal/lib/libFreetype2.a" \
-DTIFF_INCLUDE_DIR:PATH="$THIRDPARTY_PATH/tiff-ios-device/include" \
-DTIFF_LIBRARY:PATH="$THIRDPARTY_PATH/tiff-ios-device/lib/libtiff.a" \
-DGDAL_INCLUDE_DIR:PATH="$THIRDPARTY_PATH/gdal-ios-device/include" \
-DGDAL_LIBRARY:PATH="$THIRDPARTY_PATH/gdal-ios-device/lib/libgdal.a"

Be sure to set the THIRDPARTY_PATH to the path containing your thirdparty dependencies. Set IPHONE_SDKVER to the version of the iOS sdk you have installed, in this instance 11.4. IPHONE_VERSION_MIN controls the deployment sdk used by xcode, and lastly set OPENGL_PROFILE to the version of GLES you want to use.

Once this completes an XCode project will have been generated in the osg root folder. Open the generated Xcode project, select the example_osgViewerIPhone target. In 'General' tab set a development team.

Once this is done you should be able to build and deploy the example_osgViewerIPhone target on your device.

osgqt's People

Contributors

a17r avatar adrics avatar airscrat avatar aluaces avatar andesengineering avatar cbuchner1 avatar gramnation avatar internetscooter avatar jcarpent avatar kanglin avatar laurensvoerman avatar manisandro avatar mathieu avatar podsvirov avatar ravidavi avatar rdiankov avatar rhabacker avatar robertosfield avatar rooswouter avatar tofam avatar x1244 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

osgqt's Issues

Build problem: cannot find optimized.lib and debug.lib in release build

I used the default cmake configuration to configure the project. Debug version builds OK, but release version gets error like "cannot find optimized.lib and debug.lib".

I'll have to manually remove the link target in Visual Studio or XCode in order to build. But it is not viable when building with automatic building tools like vcpkg.

The problem exists on both windows and osx. I haven't tested linux yet.

The generated link target is like (in Visual Studio)

I:\Development\vcpkg\installed\x64-windows\lib\Qt5OpenGL.lib
optimized.lib
I:\Development\vcpkg\installed\x64-windows\lib\osg.lib
debug.lib
I:\Development\vcpkg\installed\x64-windows\debug\lib\osgd.lib
I:\Development\vcpkg\installed\x64-windows\lib\osgUtil.lib
I:\Development\vcpkg\installed\x64-windows\debug\lib\osgUtild.lib
I:\Development\vcpkg\installed\x64-windows\lib\osgViewer.lib
I:\Development\vcpkg\installed\x64-windows\debug\lib\osgViewerd.lib
I:\Development\vcpkg\installed\x64-windows\lib\osgGA.lib
I:\Development\vcpkg\installed\x64-windows\debug\lib\osgGAd.lib
I:\Development\vcpkg\installed\x64-windows\lib\osgDB.lib
I:\Development\vcpkg\installed\x64-windows\debug\lib\osgDBd.lib
I:\Development\vcpkg\installed\x64-windows\lib\OpenThreads.lib
I:\Development\vcpkg\installed\x64-windows\debug\lib\OpenThreadsd.lib
opengl32.lib
I:\Development\vcpkg\installed\x64-windows\lib\Qt5Widgets.lib
I:\Development\vcpkg\installed\x64-windows\lib\Qt5Gui.lib
I:\Development\vcpkg\installed\x64-windows\lib\Qt5Core.lib
kernel32.lib
user32.lib
gdi32.lib
winspool.lib
shell32.lib
ole32.lib
oleaut32.lib
uuid.lib
comdlg32.lib
advapi32.lib


osgQt: master version
osg: 3.6.3
CMake : 3.14
env: Windows 10 with vs 2017 and OSX Mohave with Xcode

osgViewer::CompositeViewer missing?

I'm trying to update osgQt in project OpenMW-CS ( https://github.com/openmw/openmw ), a game world editor that should work with one or more windows and widgets. In that application, Qt widgets should be able to provide various different views. The previous OpenMW-CS version uses older osgQt, which was compatible with osgViewer::CompositeViewer.

The latest osgQt provides OSGRenderer, which uses osgViewer::Viewer. Is it possible to use osgViewer::CompositeViewer? Is it intentional that it's left out, or is it maybe a WIP?

To provide a context, my ongoing work is at OpenMW/openmw#2786 , even if there isn't much to look at right now.

Thank you for your help.

Viewer Example not rendering correctly

Hi, I've been trying to get this plugin working with OSG 3.6.3 on Window (10) with Qt 5.12 and Visual Studio 2017. First, it seems the project as it has some configuration issues, and will not build. It has errors locating gl libraries, or even it's own classes.

I finally made my own, empty Qt project in VS 2017, copied in all the src/include files and managed to get it compiling. I have tried to copy the osgviewerqt example to see that it all works, and it only moderately does. I can see a new window, and I can see the cow model, however the reflections on it don't work - it's just black.

Also, I noticed that in my project, the OSG_GL3_AVAILABLE define is not set, so my QSurfaceFormat is being set to 2,0. Could this be an issue? If so, what should I be doing to ensure that it's correctly set. I tried defining it myself and the program crashed when starting up.

Any help would be greatly appreciated. I would like to eventually get this to work with osgEarth, but one step at a time!

Problem building osgQt

OpenSceneGraph 3.6.3
Windows 10 x64
Qt 5.10.1

Visual Studio 2015 Update 3:


1>------ Build started: Project: osgQOpenGL, Configuration: Release x64 ------
1>  CullVisitorEx.cpp
1>  GraphicsWindowEx.cpp
1>  osgQOpenGLWidget.cpp
1>  osgQOpenGLWindow.cpp
1>  OSGRenderer.cpp
1>  RenderStageEx.cpp
1>  StateEx.cpp
1>  moc_osgQOpenGLWidget.cpp
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2146: syntax error: missing ')' before identifier 'mode' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2065: 'GLfloat': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2146: syntax error: missing ')' before identifier 'sfactorRGB' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): fatal error C1003: error count exceeds 100; stopping compilation (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWindow.cpp)
1>  moc_osgQOpenGLWindow.cpp
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2146: syntax error: missing ')' before identifier 'mode' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2065: 'GLfloat': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2146: syntax error: missing ')' before identifier 'sfactorRGB' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): fatal error C1003: error count exceeds 100; stopping compilation (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp)
1>  moc_OSGRenderer.cpp
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2146: syntax error: missing ')' before identifier 'mode' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2065: 'GLfloat': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2146: syntax error: missing ')' before identifier 'sfactorRGB' (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): fatal error C1003: error count exceeds 100; stopping compilation (compiling source file D:\OSG\base\sources\osgQt\src\osgQOpenGL\osgQOpenGLWidget.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(132): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(133): error C2146: syntax error: missing '>' before identifier 'GLfloat' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(151): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\OSG\2019-04-06 Stable\x64\OpenSceneGraph\include\osg/GL(152): error C2146: syntax error: missing '>' before identifier 'GLdouble' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(117): error C2146: syntax error: missing ')' before identifier 'mode' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(118): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(119): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(120): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(227): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2065: 'GLfloat': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(228): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(229): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(230): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(231): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(232): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(233): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(234): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(235): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(236): error C2146: syntax error: missing ')' before identifier 'texture' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(237): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(238): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(239): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(240): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(241): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(242): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(243): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(244): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(245): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(246): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(247): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(248): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(249): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(250): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(251): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(252): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(253): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(254): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(255): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(256): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(257): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(258): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(259): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(260): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(261): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(262): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(263): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(264): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(265): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(266): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(267): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(268): error C2146: syntax error: missing ')' before identifier 'target' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(269): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(271): error C2143: syntax error: missing ',' before '*' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(373): error C2146: syntax error: missing ')' before identifier 'sfactorRGB' (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): error C2065: 'GLenum': undeclared identifier (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
1>D:\Qt\Qt5.10.1\5.10.1\msvc2015_64\include\QtGui/qopenglext.h(374): fatal error C1003: error count exceeds 100; stopping compilation (compiling source file D:\OSG\base\build_x64\osgQt\src\osgQOpenGL\__\__\include\osgQOpenGL\moc_osgQOpenGLWindow.cpp)
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========

how to use osgqopengl in osgearth project ?

osgQOpenGL is not compatible with osgEarthQt or simdissdk/simQt ,i want to use osgOpenGL API to update these project,but i found it's difficult .
I will do this, because I found some animation like triton ocean or 3D model with animation in it (like helicopters) will not animated anymore, but when I use osgQOpenGL’s osgviewqt to load animated 3D model, it same like normal, I think if I use OsgQOpenGL to instead of osgQt the problems in my project about ocean Or model animation errors may be fixed.

Question on the pkg-config file and its Libs field.

This line sets PKGCONFIG_MODULE_NAME to osgQt, thus the flag in the generated pkg-config file to link the generated library is -losgQt.
It is my understanding that it should be:
-losgQOpenGL
instead.

This is due to the way the macro SETUP_LIBRARY is set (defined here and used here).

Could you confirm that PKGCONFIG_MODULE_NAME should be set to osgQOpenGL or did I miss something ?

Context ID for OSG State is never set

I'm going to start by saying there's a chance that this is because the application I'm working on is doing something wrong, and a slim chance that this has been fixed already, as it's not using bleeding-edge osgQt, but I've looked through the commit history and don't think anyone's sorted it.

Anyhow, when an OpenGL context is created with regular OSG, the window implementation calls osg::GraphicsContext::createNewContextID() to generate a unique ID for that context and passes it to osg::State::setContextID(), allowing things like per-context programs and vertex buffers to work. When a new context is created with osgQt, however, the state's context ID is never set, so if an application uses multiple contexts with the same OSG objects, things break.

It's possible for an application to set this up manually, but this feels like something osgQt should be handling automatically.

Library named libosgQt5.so on linux, FindOpenSceneGraph.cmake looks for libosgQt.so

Hi everyone,

The title sums it up. I've build OpenSceneGraph and osgQt from source today on Ubuntu 17.04. The resulting libraries from osgQt on my system with Qt 5.9 are named "libosgQt5.so", "libosgQt5.so.3.5.6", and "libosgQt5.so.145". But FindOpenSceneGraph for CMake will not find osgQt with that naming. I had to rename libosgQt5.so to libosgQt.so so that CMake would find it when using find_package(OpenSceneGraph REQUIRED COMPONENTS osgQt).

OSG 3.6.1

The osgQT does not compile under OSG 3.6.1. A fix would be highly appreciated!

`setViewpoint` doesn't work

Hello. I use the following partial code to setviewpoint of the osgearth

m_manipulator = new EarthManipulator();
m_manipulator->setViewpoint(osgEarth::Viewpoint("", 39.3, 116, 500, 0.0f, -90.0f, 1200000), 4.0f);

However, it doesn't work. Anyone can help me out?

Qt 6 support

On my system I ported the current osgQt master branch code to build with Qt 6. The changes required include:

  • A few updates in OSGRenderer.cpp that are back-compatible with Qt 5 so this could be merged into the current master branch by itself.
  • CMake file Qt5 to Qt6 and various other updates.

The CMake side is messier:

  • I did not bother keeping Qt 4 and 5 support in my CMake files so I can't currently do a PR to osgQt master but maybe it could live on a Qt6 branch for now until we merge the CMake bits (if that is what we want to do).
  • Keeping Qt 4 CMake support in there doesn't make sense since the old Qt 4 osgQt approach was removed but I'd vote for bringing it back in since it works with Qt 5 (but not Qt 6 since QGLWidget was removed).
  • All but one of the examples still depend on the now-removed Qt 4 osgQt approach: they should be ported or removed unless the Qt 4 approach is reintegrated.

In summary, the C++ changes are simple but adding Qt 6 support to the CMake setup is kind of messy. It doesn't make sense to contribute here until there is a consensus on how best to add Qt 6 support and whether to resurrect the Qt 4 approach. Maybe separate osgQt4, osgQt5, and osgQt6 repos would be a better way to go. This/these should also be made a proper OSG companion project with releases tagged and in sync with the OSG version number. Since I got the discussion going on problems with osgQt and Qt versions that contributed to splitting out osgQt I am willing to contribute to making these improvements.

Caching problems with osgearth using osgQt

Hi,
I am having a problem using cache in an project that uses osgQt (I am using OpenSceneGraph-3.6.5 and osgearth-2.10.1 on Ubuntu 18.04).
I noticed it while I was coding my program but then I saw that the same error messages are displayed by osgviewerQt as well.
I am using a demo.earth file that loads local geotiff files stacked in a composite image and, above that, I placed the following cache configuration:

/home/emanuele/mapsCache

If I run "osgviewer demo.earth", the globe is shown without any error messages but if I run "osgviewerQt demo.earth", it prints some error messages.
Moreover, if I run osgviewerQt with an empty cache folder, no messages are printed but when I run osgviewerQt again, the error messages are printed and I am not sure if the viewer is loading images from the cache folder or from the specified files. The messages disappear if I remove the cache section from the earth file.
The error messages are the following:

[osgEarth]* JSON decoding error: * Line 1, Column 67
Missing '}' or object member name

[osgEarth]* [TerrainLayer] Layer "image" Metadata appears to be corrupt.
[osgEarth]* JSON decoding error: * Line 1, Column 67
Missing '}' or object member name

[osgEarth]* [TerrainLayer] Layer "Elevation2" Metadata appears to be corrupt.
[osgEarth]* JSON decoding error: * Line 1, Column 67
Missing '}' or object member name

[osgEarth]* [TerrainLayer] Layer "Elevation1" Metadata appears to be corrupt.
[osgEarth]* JSON decoding error: * Line 1, Column 67
Missing '}' or object member name

[osgEarth]* [TerrainLayer] Layer "world-tiff" Metadata appears to be corrupt.
[osgEarth]* JSON decoding error: * Line 1, Column 67
Missing '}' or object member name

[osgEarth]* [TerrainLayer] Layer "SermonetaWide" Metadata appears to be corrupt.
[osgEarth]* JSON decoding error: * Line 1, Column 67
Missing '}' or object member name

The first error messages are printed as soon as I run the program, the following appear when I zoom on the map.
I have already asked to Glenn Waldron (osgEarth) and Robert Osfield about this messages but, since osgviewer is working fine, they don't really know how to help me.
So, maybe it's better if I ask directly to osgQt author.

I'd really appreciate your help. Thank you,
Emanuele

Adding tag 3.5.7

@robertosfield Can you push a new tag 3.5.7 for the current version on the master branch which is finally compatible with OSG 3.5.7 and later?
I'll then create a Formula for HomeBrew.

new osgQt version

We are currently using osgQt version 3.5.7 on Qt 5.15.2.
We ran into problems with the QGLWidget used by osgQt 3.5.7.
Therefore, we would like to migrate to a newer osgQt version.
Will there be a new osgQt version tag in the near future?
And what are the difficulties of such migration?

how to make multithread work

I want to add some nodes to root node in seprate threads, then the program crashed.
addChild() must be used in single thread? how to use multithread...

example of Render To Texture when using QOpenGLWidget

tried using the code from offical osgmultiplerendertargets example to implement Render To Texture
https://github.com/openscenegraph/OpenSceneGraph/blob/master/examples/osgmultiplerendertargets/osgmultiplerendertargets.cpp
code works fine when the app is using QGLWidget as the main viewer, but have problems when using QOpenGLWidget, I see there is problems related to FrameBufferObject stuff, can osgQt provide an semi-official way to do this ?

osg3.6.5 mingw32 build osgQt osgqopenglwidget not declared

When I compile osgqt, the system prompts that the string atmoic cannot be found. It is not a complete type. Maybe the case of the file name cannot be correctly distinguished under Windows. After manually modifying the file name, it seems to work (is there any way to distinguish the file name). Then, there is an error osgQOpenGL__\include\osgQOpenGL\moc_osgQOpenGLWidget.cpp:64:6: error: 'osgQOpenGLWidget' has not been declared. How to modify the reference path with CMAKE-GUI?
image

image
image

osgViewer::ScreenCaptureHandler not working with osgQt

I have taken the osgviewerQt example and added a osgViewer::ScreenCaptureHandler. When I take the screen capture I get an error. "Warning: detected OpenGL error 'invalid operation' at end of SceneView::draw()" and the output picture is corrupted. I can turn off the samples via QSurfaceFormat I get a valid picture but still have the error. I have turned on all various levels of OSG_NOTIFY and haven't got any clues. I ran it through apitrace and didn't see anything, but I my opengl knowledge is pretty low so that might not mean anything. I have tested with just osg and I can't duplicate the problem. Any hints on what Qt might be doing that ScreenCaptureHandler doesn't like? Thanks.

Multi-threading does not work (Qt 5.13.1, OSG 3.6.4, MSVC 2019 x64, Win10)

Latest revision of osgQt (rev hash 2153914faf422403d0e3b4e2e15bceaaf4ef0d9b) has been built and installed. The osgviewerQt example works fine.

I wanted to try out the multi-threaded modes to increase performance. However, it does not work.

For example, switching the viewer to ThreadPerCamera results in a continuous slew of error and warning messages on stdout, and the osgQOpenGLWidget appears in solid black colour.

Example of warnings and errors:

Error: OpenGL version test failed, requires valid graphics context.
Warning: detected OpenGL error 'invalid operation' at Before Renderer::compile
Warning: detected OpenGL error 'invalid operation' at After Renderer::compile
Warning: detected OpenGL error 'invalid operation' at after RenderBin::draw(..)
Warning: detected OpenGL error 'invalid operation' at end of SceneView::draw()
Warning: detected OpenGL error 'invalid operation' after applying attribute Viewport 000001C17B38D790
Warning: detected OpenGL error 'invalid operation' after applying GLMode 0xc11
Warning: detected OpenGL error 'invalid operation' after applying GLMode 0xc11
Warning: detected OpenGL error 'invalid operation' after applying attribute Viewport 000001C17BDAAB60

The block of warnings following the initial error message repeats over and over again. Presumably these warnings occur each time OSG attempts to draw a frame.

These errors and warnings do not appear if I leave SingleThreaded mode enabled.

What should I do to get multi-threaded rendering to work?

This is important because I plan to have multiple OSG views in a Qt app, each visualizing its own separate OSG scene graph. I am anticipating performance problems if everything (Qt GUI, OSG processing and rendering) were done from a single thread. Multi-threading would be important even if the only reason was to keep the GUI responsive.

Any thoughts?
Thank you.

Compiling with Visual Studio 2019 (16.10.0)

I generated the project for Visual Studio 2019 x64 with cmake. Eveything goes ok but I get a lot of errors when compiling. (MSVC 2019, version 16.10.0)
Is it possible to compile with Visual Studio 2019?

BUG: Don't find osg debug version libraries when be compile osgQt debug version

Don't find osg when be compile debug version.

The osg debug version libraries is exist in path: /d/source/RabbitIm/ThirdLibrary/build_script/../windows_msvc14_x86_qt5.11.1_Debug

cmake command:
cmake .. -DCMAKE_INSTALL_PREFIX=/d/source/RabbitIm/ThirdLibrary/build_script/../windows_msvc14_x86_qt5.11.1_Debug -DCMAKE_BUILD_TYPE=Debug -G"Visual Studio 14 2015" -DDYNAMIC_OPENSCENEGRAPH=ON -DWIN32_USE_MP=ON -DBUILD_DOCUMENTATION=OFF -DBUILD_OSG_EXAMPLES=OFF -DQt5_DIR=/c/Qt/Qt5.11.1/5.11.1/msvc2015/lib/cmake/Qt5 -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_MODULE_PATH=/d/source/RabbitIm/ThirdLibrary/build_script/../windows_msvc14_x86_qt5.11.1_Debug/lib/cmake -DCMAKE_BUILD_TYPE=Debug

Error information:
-- Could NOT find osgDB (missing: OSGDB_LIBRARY)
-- Could NOT find osgGA (missing: OSGGA_LIBRARY)
-- Could NOT find osgUtil (missing: OSGUTIL_LIBRARY)
-- Could NOT find osgText (missing: OSGTEXT_LIBRARY)
-- Could NOT find osgViewer (missing: OSGVIEWER_LIBRARY)
-- Could NOT find osgWidget (missing: OSGWIDGET_LIBRARY)
-- Could NOT find osg (missing: OSG_LIBRARY)
-- Could NOT find OpenThreads (missing: OPENTHREADS_LIBRARY)
CMake Error at D:/software/cmake/share/cmake-3.12/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
Could NOT find OpenSceneGraph (missing: OSGDB_FOUND OSGGA_FOUND
OSGUTIL_FOUND OSGTEXT_FOUND OSGVIEWER_FOUND OSGWIDGET_FOUND OSG_FOUND
OPENTHREADS_FOUND) (found suitable version "3.6.2", minimum required is
"3.0.0")
Call Stack (most recent call first):
D:/software/cmake/share/cmake-3.12/Modules/FindPackageHandleStandardArgs.cmake:378 (_FPHSA_FAILURE_MESSAGE)
D:/software/cmake/share/cmake-3.12/Modules/FindOpenSceneGraph.cmake:223 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
CMakeLists.txt:130 (FIND_PACKAGE)

-- Configuring incomplete, errors occurred!
See also "D:/source/osgQt/build_windows_msvc/CMakeFiles/CMakeOutput.log".

More infos about this project

Hi,
I worked with OSG 3.4.0 where osgQt was included.
Now I want to move to OSG 3.6.4 and realized osgQt has been removed. I found this project, and I can understand it comes from the osgQt library that was part of OSG in the past.

Which is the OSG version supported? Which version of Qt is supported? Could you please add those infos in every tag, branch, release so that it is clear?

Best regards,
Gianni

Qt5 QOpenGLWidget

Is it possible to add a OpenGLWidget which inherit from QOpenGLWidget for QT5 because currently the GLWidget inherit from QGLWidget which has been deprecated.

Do you have some clue to do this ?
I saw some code with QOpenGLWidget but all of them use a osgVierwer::Viewer, but I need to use a osgViewer::CompositeViewer and add each osgViewer::View in a Qt5 widget.

The job is actually done with a QGLWidget, but they are a lot of glitches due to the complexity of the window structure and an upgrade to QOpenGLWidget will normaly fix them.

Thanks,
Tom

How to import osgQt into project via vcpkg + cmake?

I try to use vcpkg + cmake to import osgQt to my project.
To Reproduce
First use vcpkg to install osgQt
vcpkg install osgQt:x64-windows
then wirte the following information into CMakeLists.txt

find_package(OpenSceneGraph REQUIRED 
        COMPONENTS osg osgDB osgUtil osgViewer  osgQt
)
include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS})
add_executable(myproject ${source})
target_link_libraries(myproject PRIVATE ${OPENSCENEGRAPH_LIBRARIES})

Failure logs

set VCPKG_ROOT:
set VCPKG_TARGET_TRIPLET: x64-windows
-- Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.19042.
-- Build directory: D:/myproject/build
-- Build type : Release
-- Could NOT find osgQt (missing: OSGQT_LIBRARY)
CMake Error at D:/Program/CMake/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
  Could NOT find OpenSceneGraph (missing: OSGQT_FOUND) (found version
  "3.6.5")
Call Stack (most recent call first):
  D:/Program/CMake/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:594 (_FPHSA_FAILURE_MESSAGE)
  D:/Program/CMake/share/cmake-3.22/Modules/FindOpenSceneGraph.cmake:226 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
  D:/package/vcpkg/scripts/buildsystems/vcpkg.cmake:824 (_find_package)
  src/CMakeLists.txt:3 (find_package)


-- Configuring incomplete, errors occurred!

so, is there any way to import osgQt into the project via vcpkg + cmake?

I tried the demo in the project, and the correct aspect ratio cannot be displayed.

Hello there!
This project is great because it is implemented from QOpenGLWidget integration. When I tried its own example, osgviewerQt, I found that there was a problem with the aspect ratio of the example. By adding a line of code:
widget.resize (200, 600);
The aspect ratio displayed is even more strange, it seems that this example does not set the correct viewport or crop.
How can I adjust the code to display the correct aspect ratio?
       
Best regards

osgQt: master version
osg: 3.6.4
env: Windows 10 with vs 2017

osgviewerQt crashed when press key F

When running osgviewerQt, press the key F, the application crashed. The reason was osgOpenGLWidget::keyPressEvent don't check the validation of _mainwindow when invoke _mainwindow->setCentralWidget(this). I have fixed it and will make a pull requests.

            showNormal();
            setMinimumSize(g);
            QMainWindow* _mainwindow = dynamic_cast<QMainWindow*>(parent());
            if(_mainwindow){
                _mainwindow->setCentralWidget(this);
            }

            if(layout())
                layout()->setContentsMargins(sMargins);

            qApp->processEvents();
            setMinimumSize(QSize(1, 1));

qt modules and the new qt opengl interface

FYI: I was fighting a windows 10 build and came across something. I am building with a custom meson.build and not using cmake so others might not have come across this, but I think it is worth mentioning. With osgQts rework with the new Qt opengl interface, the required modules need to be updated. The QOpengl module is not used anymore. QOpenGLWindow is part of the gui module. QOpenGLWidget is part of the widgets module. I also needed to add the core module. For reference, here is the module list from my meson.build file.
qt5 = dependency('Qt5', version : '>=5.11.3', modules : ['core', 'widgets', 'gui'])

3.6.0 release

Are there any plans to tag a 3.6.0 release in parallel with osg-3.6.0? Would make life easier for packagers.
Thanks.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.