debian/0000775000000000000000000000000012321450421007162 5ustar debian/qtdeclarative5-qt3d-plugin.install0000664000000000000000000000106412310566625015651 0ustar usr/lib/*/qt5/qml/Qt3D/Shapes/Capsule.qml usr/lib/*/qt5/qml/Qt3D/Shapes/Cube.qml usr/lib/*/qt5/qml/Qt3D/Shapes/Cylinder.qml usr/lib/*/qt5/qml/Qt3D/Shapes/Quad.qml usr/lib/*/qt5/qml/Qt3D/Shapes/Sphere.qml usr/lib/*/qt5/qml/Qt3D/Shapes/Teapot.qml usr/lib/*/qt5/qml/Qt3D/Shapes/cube.obj usr/lib/*/qt5/qml/Qt3D/Shapes/plugins.qmltypes usr/lib/*/qt5/qml/Qt3D/Shapes/qmldir usr/lib/*/qt5/qml/Qt3D/Shapes/quad.obj usr/lib/*/qt5/qml/Qt3D/Shapes/teapot.bez usr/lib/*/qt5/qml/Qt3D/libqthreedqmlplugin.so usr/lib/*/qt5/qml/Qt3D/plugins.qmltypes usr/lib/*/qt5/qml/Qt3D/qmldir debian/compat0000664000000000000000000000000212310566625010374 0ustar 9 debian/libqt53d5.install0000664000000000000000000000002112310566625012273 0ustar usr/lib/*/*.so.* debian/patches/0000775000000000000000000000000012310566625010625 5ustar debian/patches/series0000664000000000000000000000020612310566625012040 0ustar link_against_system_zlib.patch workaround_zlib_linking_issue.patch skip_failing_tests.patch fix_build_on_uncommon_architectures.patch debian/patches/workaround_zlib_linking_issue.patch0000664000000000000000000000123312310566625020003 0ustar Description: Workaround build issue by using --no-as-needed The patch workarounds a FTBFS described in a bug report. . Still needed with the latest Qt3d snapshot Author: Timo Jyrinki Bug-Ubuntu: https://bugs.launchpad.net/bugs/1207340 Forwarded: no Last-Updated: 2013-08-01 diff --git a/src/threed/threed.pro b/src/threed/threed.pro index 793c160..682db14 100644 --- a/src/threed/threed.pro +++ b/src/threed/threed.pro @@ -23,4 +23,8 @@ include(threed.pri) PUBLIC_HEADERS = $$HEADERS HEADERS += $$PRIVATE_HEADERS +# Workaround zlib issue +LIBS += -Wl,--no-as-needed +LIBS += -lz + !contains(QT_CONFIG, egl):DEFINES += QT_NO_EGL debian/patches/fix_build_on_uncommon_architectures.patch0000664000000000000000000000733312310566625021155 0ustar Description: Fix assimp build on uncommon architectures Origin: upstream, https://qt.gitorious.org/qt/qt3d/commit/d3338a9f7fcac1 Last-Update: 2014-03-14 --- a/3rdparty/assimp/code/Importer.cpp +++ b/3rdparty/assimp/code/Importer.cpp @@ -897,27 +897,35 @@ void WriteLogOpening(const std::string& file) << aiGetVersionMinor() << "." << aiGetVersionRevision() + << " " -#if defined(ASSIMP_BUILD_X86_32BIT_ARCHITECTURE) +#if defined(ASSIMP_BUILD_ARCHITECTURE) + << ASSIMP_BUILD_ARCHITECTURE +#elif defined(_M_IX86) || defined(__x86_32__) || defined(__i386__) << " x86" -#elif defined(ASSIMP_BUILD_X86_64BIT_ARCHITECTURE) +#elif defined(_M_X64) || defined(__x86_64__) << " amd64" -#elif defined(ASSIMP_BUILD_IA_64BIT_ARCHITECTURE) +#elif defined(_M_IA64) || defined(__ia64__) << " itanium" -#elif defined(ASSIMP_BUILD_PPC_32BIT_ARCHITECTURE) +#elif defined(__ppc__) || defined(__powerpc__) << " ppc32" -#elif defined(ASSIMP_BUILD_ARM_32BIT_ARCHITECTURE) - << " arm32" +#elif defined(__powerpc64__) + << " ppc64" +#elif defined(__arm__) + << " arm" #else -# error unknown architecture + << " unknown architecture" #endif -#if defined(_MSC_VER) + << " " +#if defined(ASSIMP_BUILD_COMPILER) + << ASSIMP_BUILD_COMPILER +#elif defined(_MSC_VER) << " msvc" #elif defined(__GNUC__) << " gcc" #else -# warning unknown compiler +# << " unknown compiler" #endif #ifndef NDEBUG --- a/3rdparty/assimp/include/aiDefines.h +++ b/3rdparty/assimp/include/aiDefines.h @@ -219,41 +219,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #endif ////////////////////////////////////////////////////////////////////////// - /* ASSIMP_BUILD_XXXX_NNBIT_ARCHITECTURE */ - ////////////////////////////////////////////////////////////////////////// -#if defined(_MSC_VER) - // See http://msdn.microsoft.com/en-us/library/b0084kay. -# if defined(_M_IX86) -# define ASSIMP_BUILD_X86_32BIT_ARCHITECTURE -# elif defined(_M_X64) -# define ASSIMP_BUILD_X86_64BIT_ARCHITECTURE -# elif defined(_M_IA64) -# define ASSIMP_BUILD_IA_64BIT_ARCHITECTURE -# else -# error unknown architecture -# endif -#elif defined(__GNUC__) - // See http://gcc.gnu.org/onlinedocs/cpp/Predefined-Macros.html. -# if defined(__x86_32__) || defined(__i386__) -# define ASSIMP_BUILD_X86_32BIT_ARCHITECTURE -# elif defined(__x86_64__) -# define ASSIMP_BUILD_X86_64BIT_ARCHITECTURE -# elif defined(__ppc__) -# define ASSIMP_BUILD_PPC_32BIT_ARCHITECTURE -# elif defined(__arm__) -# define ASSIMP_BUILD_ARM_32BIT_ARCHITECTURE -# else -# error unknown architecture -# endif -#elif defined (__GCCE__) -#define ASSIMP_BUILD_ARM_32BIT_ARCHITECTURE -#elif defined (__arm__) -#define ASSIMP_BUILD_ARM_32BIT_ARCHITECTURE -#else //assume -# error unknown compiler -#endif - - ////////////////////////////////////////////////////////////////////////// /* Useful constants */ ////////////////////////////////////////////////////////////////////////// @@ -271,8 +236,19 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #define AI_DEG_TO_RAD(x) (x*0.0174532925f) #define AI_RAD_TO_DEG(x) (x*57.2957795f) -/* Support for big-endian builds on Mac OS X. */ -#if defined(__APPLE__) && defined(__BIG_ENDIAN__) +/* Support for big-endian builds */ +#if defined(__BYTE_ORDER__) +# if (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) +# if !defined(__BIG_ENDIAN__) +# define __BIG_ENDIAN__ +# endif +# else /* little endian */ +# if defined(__BIG_ENDIAN__) +# undef(__BIG_ENDIAN__) +# endif +# endif +#endif +#if defined(__BIG_ENDIAN__) #define AI_BUILD_BIG_ENDIAN #endif debian/patches/link_against_system_zlib.patch0000664000000000000000000000671312310566625016744 0ustar diff --git a/3rdparty/assimp/assimp.pri b/3rdparty/assimp/assimp.pri index a3810b3..ec8d724 100644 --- a/3rdparty/assimp/assimp.pri +++ b/3rdparty/assimp/assimp.pri @@ -5,6 +5,8 @@ CONFIG(debug, debug|release) : DEFINES+=_DEBUG CONFIG += exceptions +DEFINES+=ASSIMP_BUILD_NO_OWN_ZLIB + win32:DEFINES+=_CRT_SECURE_NO_WARNINGS VPATH += \ @@ -22,7 +24,6 @@ INCLUDEPATH += \ $$PWD/include \ $$PWD/include/Compiler \ $$PWD/contrib/ConvertUTF \ - $$PWD/contrib/zlib \ $$PWD/contrib/irrXML \ $$PWD/contrib/unzip @@ -203,17 +204,6 @@ HEADERS += \ contrib/unzip/crypt.h \ contrib/unzip/ioapi.h \ contrib/unzip/unzip.h \ - contrib/zlib/crc32.h \ - contrib/zlib/deflate.h \ - contrib/zlib/inffast.h \ - contrib/zlib/inffixed.h \ - contrib/zlib/inflate.h \ - contrib/zlib/inftrees.h \ - contrib/zlib/trees.h \ - contrib/zlib/zconf.h \ - contrib/zlib/zconf.in.h \ - contrib/zlib/zlib.h \ - contrib/zlib/zutil.h \ include/Compiler/poppack1.h \ include/Compiler/pushpack1.h \ code/BoostWorkaround/boost/foreach.hpp \ @@ -337,13 +327,4 @@ SOURCES += \ contrib/ConvertUTF/ConvertUTF.c \ contrib/irrXML/irrXML.cpp \ contrib/unzip/ioapi.c \ - contrib/unzip/unzip.c \ - contrib/zlib/adler32.c \ - contrib/zlib/compress.c \ - contrib/zlib/crc32.c \ - contrib/zlib/deflate.c \ - contrib/zlib/inffast.c \ - contrib/zlib/inflate.c \ - contrib/zlib/inftrees.c \ - contrib/zlib/trees.c \ - contrib/zlib/zutil.c + contrib/unzip/unzip.c diff --git a/3rdparty/assimp/code/makefile b/3rdparty/assimp/code/makefile index 5710158..486300d 100644 --- a/3rdparty/assimp/code/makefile +++ b/3rdparty/assimp/code/makefile @@ -24,7 +24,7 @@ OBJECTS += $(patsubst %.cpp,%.o, $(wildcard extra/*.cpp)) OBJECTS += $(patsubst %.cpp,%.o, $(wildcard ./../contrib/irrXML/*.cpp)) # C object files -OBJECTSC := $(patsubst %.c,%.oc, $(wildcard ./../contrib/zlib/*.c)) +#OBJECTSC := $(patsubst %.c,%.oc, $(wildcard ./../contrib/zlib/*.c)) OBJECTSC += $(patsubst %.c,%.oc, $(wildcard ./../contrib/ConvertUTF/*.c)) OBJECTSC += $(patsubst %.c,%.oc, $(wildcard ./../contrib/unzip/*.c)) @@ -47,6 +47,8 @@ INCPATH = ../include # GCC compiler flags CPPFLAGS=-Wall +DEFINEFLAGS+=ASSIMP_BUILD_NO_OWN_ZLIB + # Setup environment for noboost build ifeq ($(NOBOOST),1) SINGLETHREADED = 1 @@ -85,7 +87,7 @@ STATIC = $(BINPATH)/libassimp$(NAMESUFFIX).a all: $(SHARED_TARGET) $(SHARED_TARGET): $(OBJECTS) $(OBJECTSC) - gcc -o $@ $(OBJECTS) $(OBJECTSC) -shared -lstdc++ + gcc -o $@ $(OBJECTS) $(OBJECTSC) -shared -lstdc++ -lz %.o:%.cpp $(CXX) -g -c $(CPPFLAGS) $? -o $@ $(INCLUDEFLAGS) $(DEFINEFLAGS) -fPIC %.oc:%.c diff --git a/qt3d.pro b/qt3d.pro index 541d46d..d4d95c9 100644 --- a/qt3d.pro +++ b/qt3d.pro @@ -7,6 +7,8 @@ module_qt3d_tutorials.CONFIG = no_default_target no_default_install !package: SUBDIRS += module_qt3d_tutorials +LIBS += -lz + gcov: SUBDIRS -= sub_tools # We need opengl, minimum es2 diff --git a/src/threed/threed.pro b/src/threed/threed.pro index 793c160..fd992ca 100644 --- a/src/threed/threed.pro +++ b/src/threed/threed.pro @@ -7,6 +7,8 @@ load(qt_module) QMAKE_DOCS = $$PWD/doc/qt3d.qdocconf +QMAKE_LFLAGS += -lz + gcov { CONFIG += static QMAKE_CXXFLAGS += -fprofile-arcs -ftest-coverage debian/patches/skip_failing_tests.patch0000664000000000000000000000257512310566625015540 0ustar Description: Skip failing tests While enabling tests during build, skip those found failing pending investigation. . Author: Allan LeSage Forwarded: no Last-Updated: 2014-01-07 --- a/tests/auto/threed/threed.pro +++ b/tests/auto/threed/threed.pro @@ -5,8 +5,9 @@ qbox3d \ qcolor4ub \ qcustomdataarray \ - qgeometrydata \ - qglabstractsurface \ + # skip these failing tests + #qgeometrydata \ + #qglabstractsurface \ qglattributedescription \ qglattributeset \ qglattributevalue \ @@ -18,7 +19,8 @@ qglindexbuffer \ qgllightmodel \ qgllightparameters \ - qglmaterial \ + # skip this failing test + #qglmaterial \ qglmaterialcollection \ qglpainter \ qglpickcolors \ @@ -26,7 +28,8 @@ qglscenenode \ qglsection \ qglsphere \ - qglvertexbundle \ + # skip this failing test + #qglvertexbundle \ qgraphicstransform3d \ qplane3d \ qray3d \ --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -3,9 +3,10 @@ cmake qtHaveModule(qml): SUBDIRS += imports -qtHaveModule(qmltest) { - SUBDIRS += qml3d - - !win32 : SUBDIRS += qml3d_visual \ - qml3d_cpp -} +# skip these failing tests +#qtHaveModule(qmltest) { +# SUBDIRS += qml3d +# +# !win32 : SUBDIRS += qml3d_visual \ +# qml3d_cpp +#} debian/qt3d5-private-dev.install0000664000000000000000000000004612310566625013752 0ustar usr/include/qt5/Qt3D/*/Qt3D/private/* debian/rules0000775000000000000000000000242412310566625010260 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export QT_SELECT=qt5 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) export CFLAGS := $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) export CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,--as-needed # Run tests only on archs known to pass in the past testrun_architectures := amd64 arm64 armhf i386 ppc64el %: dh $@ --fail-missing --parallel --with pkgkde_symbolshelper --dbg-package=qt3d5-dbg override_dh_auto_configure: mkdir .git qmake QT_BUILD_PARTS+=tests override_dh_auto_install: dh_auto_install # Fix wrong path in pkgconfig files find $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig -type f -name '*.pc' \ -exec sed -i -e 's/$(DEB_HOST_MULTIARCH)\/$(DEB_HOST_MULTIARCH)/$(DEB_HOST_MULTIARCH)/g' {} \; # Remove libtool-like files rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*.la override_dh_auto_test: ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(testrun_architectures))) xvfb-run -a dh_auto_test -- QT_PLUGIN_PATH=$(CURDIR)/plugins LD_LIBRARY_PATH=$(CURDIR)/lib endif override_dh_builddeb: dh_builddeb -- -Zxz debian/qt3d5-dev.install0000664000000000000000000001531012310566625012302 0ustar usr/include/qt5/Qt3D/QAreaAllocator usr/include/qt5/Qt3D/QArray usr/include/qt5/Qt3D/QArrayAlignedChar usr/include/qt5/Qt3D/QArrayAlignedPrealloc usr/include/qt5/Qt3D/QBox3D usr/include/qt5/Qt3D/QColor4ub usr/include/qt5/Qt3D/QCustomDataArray usr/include/qt5/Qt3D/QDownloadManager usr/include/qt5/Qt3D/QGLAbstractEffect usr/include/qt5/Qt3D/QGLAbstractMaterial usr/include/qt5/Qt3D/QGLAbstractScene usr/include/qt5/Qt3D/QGLAbstractSurface usr/include/qt5/Qt3D/QGLAttributeDescription usr/include/qt5/Qt3D/QGLAttributeSet usr/include/qt5/Qt3D/QGLAttributeValue usr/include/qt5/Qt3D/QGLBezierPatches usr/include/qt5/Qt3D/QGLBezierScene usr/include/qt5/Qt3D/QGLBezierSceneHandler usr/include/qt5/Qt3D/QGLBuilder usr/include/qt5/Qt3D/QGLCamera usr/include/qt5/Qt3D/QGLCameraAnimation usr/include/qt5/Qt3D/QGLColladaFxEffect usr/include/qt5/Qt3D/QGLColladaFxEffectFactory usr/include/qt5/Qt3D/QGLColladaFxEffectLoader usr/include/qt5/Qt3D/QGLColladaImageParam usr/include/qt5/Qt3D/QGLColladaParam usr/include/qt5/Qt3D/QGLColladaSampler2DParam usr/include/qt5/Qt3D/QGLColladaSurfaceParam usr/include/qt5/Qt3D/QGLColladaTextureParam usr/include/qt5/Qt3D/QGLColorMaterial usr/include/qt5/Qt3D/QGLCube usr/include/qt5/Qt3D/QGLCylinder usr/include/qt5/Qt3D/QGLDome usr/include/qt5/Qt3D/QGLFramebufferObjectSurface usr/include/qt5/Qt3D/QGLIndexBuffer usr/include/qt5/Qt3D/QGLLightModel usr/include/qt5/Qt3D/QGLLightParameters usr/include/qt5/Qt3D/QGLMaterial usr/include/qt5/Qt3D/QGLMaterialCollection usr/include/qt5/Qt3D/QGLMockView usr/include/qt5/Qt3D/QGLPainter usr/include/qt5/Qt3D/QGLPickNode usr/include/qt5/Qt3D/QGLPixelBufferSurface usr/include/qt5/Qt3D/QGLRenderOrder usr/include/qt5/Qt3D/QGLRenderOrderComparator usr/include/qt5/Qt3D/QGLRenderSequencer usr/include/qt5/Qt3D/QGLRenderState usr/include/qt5/Qt3D/QGLSceneAnimation usr/include/qt5/Qt3D/QGLSceneFormatFactoryInterface usr/include/qt5/Qt3D/QGLSceneFormatHandler usr/include/qt5/Qt3D/QGLSceneNode usr/include/qt5/Qt3D/QGLShaderProgramEffect usr/include/qt5/Qt3D/QGLSphere usr/include/qt5/Qt3D/QGLSubsurface usr/include/qt5/Qt3D/QGLTeapot usr/include/qt5/Qt3D/QGLTexture2D usr/include/qt5/Qt3D/QGLTextureCube usr/include/qt5/Qt3D/QGLTwoSidedMaterial usr/include/qt5/Qt3D/QGLVertexBundle usr/include/qt5/Qt3D/QGLView usr/include/qt5/Qt3D/QGLWindowSurface usr/include/qt5/Qt3D/QGeneralAreaAllocator usr/include/qt5/Qt3D/QGeometryData usr/include/qt5/Qt3D/QGraphicsBillboardTransform usr/include/qt5/Qt3D/QGraphicsRotation3D usr/include/qt5/Qt3D/QGraphicsScale3D usr/include/qt5/Qt3D/QGraphicsTranslation3D usr/include/qt5/Qt3D/QLogicalVertex usr/include/qt5/Qt3D/QMatrix4x4Stack usr/include/qt5/Qt3D/QPlane3D usr/include/qt5/Qt3D/QQuickQGraphicsTransform3D usr/include/qt5/Qt3D/QRay3D usr/include/qt5/Qt3D/QSimpleAreaAllocator usr/include/qt5/Qt3D/QSphere3D usr/include/qt5/Qt3D/QTriangle3D usr/include/qt5/Qt3D/QUniformAreaAllocator usr/include/qt5/Qt3D/QVector2DArray usr/include/qt5/Qt3D/QVector3DArray usr/include/qt5/Qt3D/QVector4DArray usr/include/qt5/Qt3D/Qt3D usr/include/qt5/Qt3D/Qt3DVersion usr/include/qt5/Qt3D/QtArrayData usr/include/qt5/Qt3D/qareaallocator.h usr/include/qt5/Qt3D/qarray.h usr/include/qt5/Qt3D/qbox3d.h usr/include/qt5/Qt3D/qcolor4ub.h usr/include/qt5/Qt3D/qcustomdataarray.h usr/include/qt5/Qt3D/qdownloadmanager.h usr/include/qt5/Qt3D/qgeometrydata.h usr/include/qt5/Qt3D/qglabstracteffect.h usr/include/qt5/Qt3D/qglabstractmaterial.h usr/include/qt5/Qt3D/qglabstractscene.h usr/include/qt5/Qt3D/qglabstractsurface.h usr/include/qt5/Qt3D/qglattributedescription.h usr/include/qt5/Qt3D/qglattributeset.h usr/include/qt5/Qt3D/qglattributevalue.h usr/include/qt5/Qt3D/qglbezierpatches.h usr/include/qt5/Qt3D/qglbezierscene.h usr/include/qt5/Qt3D/qglbezierscenehandler.h usr/include/qt5/Qt3D/qglbuilder.h usr/include/qt5/Qt3D/qglcamera.h usr/include/qt5/Qt3D/qglcameraanimation.h usr/include/qt5/Qt3D/qglcolladafxeffect.h usr/include/qt5/Qt3D/qglcolladafxeffectfactory.h usr/include/qt5/Qt3D/qglcolladafxeffectloader.h usr/include/qt5/Qt3D/qglcolormaterial.h usr/include/qt5/Qt3D/qglcube.h usr/include/qt5/Qt3D/qglcylinder.h usr/include/qt5/Qt3D/qgldome.h usr/include/qt5/Qt3D/qglframebufferobjectsurface.h usr/include/qt5/Qt3D/qglindexbuffer.h usr/include/qt5/Qt3D/qgllightmodel.h usr/include/qt5/Qt3D/qgllightparameters.h usr/include/qt5/Qt3D/qglmaterial.h usr/include/qt5/Qt3D/qglmaterialcollection.h usr/include/qt5/Qt3D/qglmockview.h usr/include/qt5/Qt3D/qglnamespace.h usr/include/qt5/Qt3D/qglpainter.h usr/include/qt5/Qt3D/qglpicknode.h usr/include/qt5/Qt3D/qglpixelbuffersurface.h usr/include/qt5/Qt3D/qglrenderorder.h usr/include/qt5/Qt3D/qglrenderordercomparator.h usr/include/qt5/Qt3D/qglrendersequencer.h usr/include/qt5/Qt3D/qglrenderstate.h usr/include/qt5/Qt3D/qglsceneanimation.h usr/include/qt5/Qt3D/qglsceneformatplugin.h usr/include/qt5/Qt3D/qglscenenode.h usr/include/qt5/Qt3D/qglshaderprogrameffect.h usr/include/qt5/Qt3D/qglsphere.h usr/include/qt5/Qt3D/qglsubsurface.h usr/include/qt5/Qt3D/qglteapot.h usr/include/qt5/Qt3D/qgltexture2d.h usr/include/qt5/Qt3D/qgltexturecube.h usr/include/qt5/Qt3D/qgltwosidedmaterial.h usr/include/qt5/Qt3D/qglvertexbundle.h usr/include/qt5/Qt3D/qglview.h usr/include/qt5/Qt3D/qglwindowsurface.h usr/include/qt5/Qt3D/qgraphicsbillboardtransform.h usr/include/qt5/Qt3D/qgraphicsrotation3d.h usr/include/qt5/Qt3D/qgraphicsscale3d.h usr/include/qt5/Qt3D/qgraphicstransform3d.h usr/include/qt5/Qt3D/qgraphicstranslation3d.h usr/include/qt5/Qt3D/qlogicalvertex.h usr/include/qt5/Qt3D/qmatrix4x4stack.h usr/include/qt5/Qt3D/qplane3d.h usr/include/qt5/Qt3D/qray3d.h usr/include/qt5/Qt3D/qsphere3d.h usr/include/qt5/Qt3D/qt3dglobal.h usr/include/qt5/Qt3D/qt3dversion.h usr/include/qt5/Qt3D/qtriangle3d.h usr/include/qt5/Qt3D/qvector2darray.h usr/include/qt5/Qt3D/qvector3darray.h usr/include/qt5/Qt3D/qvector4darray.h usr/include/qt5/Qt3DQuick/QQuickAnimation3D usr/include/qt5/Qt3DQuick/QQuickEffect usr/include/qt5/Qt3DQuick/QQuickItem3D usr/include/qt5/Qt3DQuick/QQuickMesh usr/include/qt5/Qt3DQuick/QQuickViewport usr/include/qt5/Qt3DQuick/Qt3DQuick usr/include/qt5/Qt3DQuick/Qt3DQuickVersion usr/include/qt5/Qt3DQuick/capsulemesh.h usr/include/qt5/Qt3DQuick/cylindermesh.h usr/include/qt5/Qt3DQuick/line.h usr/include/qt5/Qt3DQuick/point.h usr/include/qt5/Qt3DQuick/qmlres.h usr/include/qt5/Qt3DQuick/qquickanimation3d.h usr/include/qt5/Qt3DQuick/qquickeffect.h usr/include/qt5/Qt3DQuick/qquickitem3d.h usr/include/qt5/Qt3DQuick/qquickmesh.h usr/include/qt5/Qt3DQuick/qquickviewport.h usr/include/qt5/Qt3DQuick/qt3dquickglobal.h usr/include/qt5/Qt3DQuick/qt3dquickversion.h usr/include/qt5/Qt3DQuick/spheremesh.h usr/lib/*/*.prl usr/lib/*/*.so usr/lib/*/cmake/* usr/lib/*/pkgconfig/* usr/lib/*/qt5/bin/qglinfo usr/lib/*/qt5/mkspecs/modules/* usr/include/qt5/Qt3D/Qt3DDepends usr/include/qt5/Qt3DQuick/Qt3DQuickDepends debian/qt3d5-examples.install0000664000000000000000000000003112310566625013334 0ustar usr/lib/*/qt5/examples/* debian/copyright0000664000000000000000000004466212310566625011145 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: qt3d Source: http://qt.gitorious.org/qt/qt3d Files: * Copyright: 2012 Digia Plc and/or its subsidiary(-ies) License: LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3 Files: debian/* Copyright: 2007-2012 Fathi Boudra 2007-2012 Sune Vuorela 2008-2012 Modestas Vainius 2007-2009 Ana Beatriz Guerrero Lopez 2005-2007 Brian Nelson 2012 Timo Jyrinki License: LGPL-2.1 License: LGPL-2.1 with Digia Qt LGPL Exception 1.1 GNU Lesser General Public License version 2.1: This file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. Please review the following information to ensure the GNU Lesser General Public License version 2.1 requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. . In addition, as a special exception, Digia gives you certain additional rights. These rights are described in the Digia Qt LGPL Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this package. . On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL-2.1`. . Digia Qt LGPL Exception version 1.1: As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that: (i) the header files of the Library have not been modified; and (ii) the incorporated material is limited to numerical parameters, data structure layouts, accessors, macros, inline functions and templates; and (iii) you comply with the terms of Section 6 of the GNU Lesser General Public License version 2.1. . Moreover, you may apply this exception to a modified version of the Library, provided that such modification does not involve copying material from the Library into the modified Library's header files unless such material is limited to (i) numerical parameters; (ii) data structure layouts; (iii) accessors; and (iv) small macros, templates and inline functions of five lines or less in length. . Furthermore, you are not required to apply this additional permission to a modified version of the Library. Files: tests/auto/cmake/test_modules/main.cpp Copyright: 2012 Klarälvdalens Datakonsult AB, a KDAB Group company License: LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3 License: GPL-3 GNU General Public License Usage . Alternatively, this file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE.GPL included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. . On Debian systems, the complete text of the license can be found in `/usr/share/common-licenses/GPL-3`. License: LGPL-2.1 This file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. Please review the following information to ensure the GNU Lesser General Public License version 2.1 requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. . On Debian systems, the complete text of the LGPL-2.1 license can be found in `/usr/share/common-licenses/LGPL-2.1`, Files: 3rdparty/assimp/* Copyright: 2006-2010, ASSIMP Development Team License: BSD-3-clause Files: examples/* src/quick3d/qmlres.cpp src/quick3d/qmlres.h src/imports/threed/DefaultNavigator.qml tests/manual/qrc/qml/tst_qrc.qml tests/manual/transformations/qml/desktop.qml tests/manual/shapes/qml/desktop.qml tests/manual/scaling/qml/desktop.qml tests/manual/submesh/qml/desktop.qml tests/manual/navigation1/qml/desktop.qml tests/manual/basic/qml/desktop.qml tests/manual/model3ds/qml/desktop.qml tests/manual/translation/qml/desktop.qml tests/manual/background/qml/desktop.qml tests/manual/rotation/qml/desktop.qml tests/manual/fullreferencing/qml/desktop.qml tests/manual/displaymodel/qml/desktop.qml tests/manual/animations/qml/desktop.qml tutorials/quick3d/teapot_qml/qml/desktop.qml tutorials/quick3d/teapot_qml/qml/Teapot.qml tutorials/quick3d/shadertut/main.cpp tutorials/quick3d/shadertut/qml/TutorialTeapot.qml tutorials/quick3d/shadertut/qml/shader-tutorial.qml tutorials/quick3d/shadertut/qml/desktop.qml tutorials/quick3d/teapot_bounce_qml/qml/TeapotBounce.qml tutorials/quick3d/teapot_bounce_qml/qml/desktop.qml tutorials/qt3d/penguin_advanced/modelview.h tutorials/qt3d/penguin_advanced/main.cpp tutorials/qt3d/penguin_advanced/modelview.cpp tutorials/qt3d/cube2/main.cpp tutorials/qt3d/cube2/cubeview.h tutorials/qt3d/cube2/cubeview.cpp tutorials/qt3d/cube4/main.cpp tutorials/qt3d/cube4/cube.qml tutorials/qt3d/cube4/cubeview.h tutorials/qt3d/cube4/cubeview.cpp tutorials/qt3d/penguin/modelview.h tutorials/qt3d/penguin/main.cpp tutorials/qt3d/penguin/modelview.cpp tutorials/qt3d/cube1/main.cpp tutorials/qt3d/cube1/cubeview.h tutorials/qt3d/cube1/cubeview.cpp tutorials/qt3d/cube3/main.cpp tutorials/qt3d/cube3/cubeview.h tutorials/qt3d/cube3/cubeview.cpp Copyright: 2012 Digia Plc and/or its subsidiary(-ies) License: BSD-3-clause License: BSD-3-clause You may use this file under the terms of the BSD license as follows: . "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." Files: 3rdparty/assimp/contrib/ConvertUTF/* Copyright: 2001-2004 Unicode, Inc. License: Disclaimer . This source code is provided as is by Unicode, Inc. No claims are made as to fitness for any particular purpose. No warranties of any kind are expressed or implied. The recipient agrees to determine applicability of information provided. If this file has been purchased on magnetic or optical media from Unicode, Inc., the sole remedy for any claim will be exchange of defective media within 90 days of receipt. . Limitations on Rights to Redistribute This Code . Unicode, Inc. hereby grants the right to freely use the information supplied in this file in the creation of products supporting the Unicode Standard, and to make copies of this file in any form for internal or external distribution as long as this notice remains attached. Files: 3rdparty/assimp/contrib/zlib/* Copyright: 1995-2010 Jean-loup Gailly 1995-2010 Mark Adler License: Zlib This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Files: 3rdparty/assimp/contrib/unzip/* Copyright: 1998-2005 Gilles Vollant License: Zlib This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Files: 3rdparty/assimp/contrib/unzip/unzip.c Copyright: 1990-2000 Info-ZIP License: Info-ZIP license See the accompanying file LICENSE, version 2000-Apr-09 or later (the contents of which are also included in zip.h) for terms of use. If, for some reason, all these files are missing, the Info-ZIP license also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html Files: 3rdparty/assimp/contrib/irrXML/* Copyright: 2002-2005 Nikolaus Gebhardt License: irrXML license License: irrXML license The irrXML license is based on the zlib license. Basicly, this means you can do with irrXML whatever you want: . This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. . 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. . 3. This notice may not be removed or altered from any source distribution. Files: 3rdparty/assimp/code/BoostWorkaround/* Copyright: 1994-1999 Beman Dawes License: Boost Software License 1.0 Boost Software License - Version 1.0 - August 17th, 2003 . Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: . The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: fast_atof.h Copyright: 2002-2007 Nikolaus Gebhardt License: irrXML license Files: doc/config/scripts/superfish.js Copyright: 2008 Joel Birch License: MIT Files: doc/config/scripts/jquery.js Copyright: 2010 John Resig 2010 The Dojo Foundation License: MIT License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: 3rdparty/assimp/code/MDCNormalTable.h doc/src/legal/snippets/pico-model.txt Copyright: 2002 Randy Reddig & seaw0lf License: Custom BSD like Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . Neither the names of the copyright holders nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: 3rdparty/assimp/code/pstdint.h doc/src/legal/snippets/pstdint.txt Copyright: 2005-2007 Paul Hsieh License: BSD-3-clause Files: 3rdparty/assimp/code/BoostWorkaround/boost/foreach.hpp Copyright: 2004 Eric Niebler License: BSL Files: 3rdparty/assimp/code/BoostWorkaround/boost/timer.hpp Copyright: 1994-1999 Beman Dawes License: BSL Files: 3rdparty/assimp/code/BoostWorkaround/boost/tuple/tuple.hpp Copyright: 2008 Alexander Gessler License: BSL Files: 3rdparty/assimp/code/BoostWorkaround/boost/pointer_cast.hpp Copyright: 2005 Ion Gaztanaga License: BSL License: BSL Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) . Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: . The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: *.qdoc Copyright: 2012 Digia Plc and/or its subsidiary(-ies). License: GFDL-1.3 License: GFDL-1.3 GNU Free Documentation License Usage Alternatively, this file may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation and appearing in the file included in the packaging of this file. Please review the following information to ensure the GNU Free Documentation License version 1.3 requirements will be met: http://www.gnu.org/copyleft/fdl.html. . On Debian systems, the complete text of the GFDL-1.3 license can be found in `/usr/share/common-licenses/GFDL-1.3`, Files: src/quick3d/cube.qdoc src/quick3d/quad.qdoc src/quick3d/teapot.qdoc Copyright: 2012 Digia Plc and/or its subsidiary(-ies). License: LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3 debian/not-installed0000664000000000000000000000273012310566625011700 0ustar usr/lib/x86_64-linux-gnu/libQt53D.la usr/lib/*/qt5/bin/qglinfo usr/lib/*/qt5/qml/Qt3D/plugins.qmltypes usr/lib/*/qt5/qml/Qt3D/qmldir usr/lib/*/qt5/qml/Qt3D/libqthreedqmlplugin.so usr/lib/*/qt5/qml/Qt3D/Shapes/Cube.qml usr/lib/*/qt5/qml/Qt3D/Shapes/plugins.qmltypes usr/lib/*/qt5/qml/Qt3D/Shapes/quad.obj usr/lib/*/qt5/qml/Qt3D/Shapes/Sphere.qml usr/lib/*/qt5/qml/Qt3D/Shapes/qmldir usr/lib/*/qt5/qml/Qt3D/Shapes/Cylinder.qml usr/lib/*/qt5/qml/Qt3D/Shapes/teapot.bez usr/lib/*/qt5/qml/Qt3D/Shapes/cube.obj usr/lib/*/qt5/qml/Qt3D/Shapes/Capsule.qml usr/lib/*/qt5/qml/Qt3D/Shapes/Quad.qml usr/lib/*/qt5/qml/Qt3D/Shapes/Teapot.qml usr/include/qt5/Qt3DQuick/Qt3DQuickVersion usr/include/qt5/Qt3DQuick/cylindermesh.h usr/include/qt5/Qt3DQuick/qquickeffect.h usr/include/qt5/Qt3DQuick/line.h usr/include/qt5/Qt3DQuick/qquickmesh.h usr/include/qt5/Qt3DQuick/spheremesh.h usr/include/qt5/Qt3DQuick/capsulemesh.h usr/include/qt5/Qt3DQuick/qquickitem3d.h usr/include/qt5/Qt3DQuick/Qt3DQuick usr/include/qt5/Qt3DQuick/qt3dquickglobal.h usr/include/qt5/Qt3DQuick/QQuickAnimation3D usr/include/qt5/Qt3DQuick/QQuickMesh usr/include/qt5/Qt3DQuick/QQuickViewport usr/include/qt5/Qt3DQuick/qquickanimation3d.h usr/include/qt5/Qt3DQuick/cube.h usr/include/qt5/Qt3DQuick/qquickviewport.h usr/include/qt5/Qt3DQuick/point.h usr/include/qt5/Qt3DQuick/QQuickItem3D usr/include/qt5/Qt3DQuick/qmlres.h usr/include/qt5/Qt3DQuick/teapot.h usr/include/qt5/Qt3DQuick/QQuickEffect usr/include/qt5/Qt3DQuick/qt3dquickversion.h debian/control0000664000000000000000000001000612310566625010576 0ustar Source: qt3d-opensource-src Section: libs Priority: optional Maintainer: Ubuntu Developers Build-Depends: debhelper (>= 9.0.0), libqt5opengl5-dev, pkg-kde-tools, qtbase5-private-dev (>= 5.2.1+dfsg~), qtdeclarative5-private-dev (>= 5.2.1~), xauth, xvfb, zlib1g-dev, Standards-Version: 3.9.3 Homepage: http://qt-project.org/ Package: libqt53d5 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends}, Depends: ${misc:Depends}, ${shlibs:Depends}, Description: Qt 3D module Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains Qt 3D module. . WARNING: This module is not an official part of Qt 5, but instead a git snapshot of an ongoing development. The package is very likely to change in a binary incompatible way, and no guarantees are given. Package: qtdeclarative5-qt3d-plugin Architecture: any Multi-Arch: same Pre-Depends: dpkg (>= 1.15.6~), ${misc:Pre-Depends}, Depends: ${misc:Depends}, ${shlibs:Depends}, Description: Qt 5 3D QML plugin Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains the Qt 3D QML plugin. . WARNING: This module is not an official part of Qt 5, but instead a git snapshot of an ongoing development. The package is very likely to change in a binary incompatible way, and no guarantees are given. Package: qt3d5-dev Section: libdevel Architecture: any Depends: libqt53d5 (= ${binary:Version}), qtbase5-dev, ${misc:Depends}, ${shlibs:Depends}, Description: Qt 5 3d development files Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains the header development files used for building Qt 5 applications using Qt 3D library. . WARNING: This module is not an official part of Qt 5, but instead a git snapshot of an ongoing development. The package is very likely to change in a binary incompatible way, and no guarantees are given. Package: qt3d5-private-dev Architecture: any Section: libdevel Depends: qt3d5-dev (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}, Description: Qt 5 3d private development files Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains the private header development files for building some Qt 5 applications using 3D private headers. . Use at your own risk. . WARNING: This module is not an official part of Qt 5, but instead a git snapshot of an ongoing development. The package is very likely to change in a binary incompatible way, and no guarantees are given. Package: qt3d5-examples Architecture: any Multi-Arch: same Section: x11 Pre-Depends: dpkg (>= 1.15.6~), ${misc:Pre-Depends}, Depends: ${misc:Depends}, ${shlibs:Depends}, Description: Qt 5 3d examples Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains Qt 5 3D examples. . WARNING: This module is not an official part of Qt 5, but instead a git snapshot of an ongoing development. The package is very likely to change in a binary incompatible way, and no guarantees are given. Package: qt3d5-dbg Priority: extra Architecture: any Section: debug Depends: libqt53d5 (= ${binary:Version}), qt3d5-examples (= ${binary:Version}), ${misc:Depends}, Description: Qt 3D library debugging symbols Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains the debugging symbols for the Qt 5 3D libraries. debian/source/0000775000000000000000000000000012310566625010476 5ustar debian/source/format0000664000000000000000000000001412310566625011704 0ustar 3.0 (quilt) debian/qt3d5-examples.lintian-overrides0000664000000000000000000000004612310566625015332 0ustar qt3d5-examples: image-file-in-usr-lib debian/libqt53d5.symbols0000664000000000000000000037015212321445230012322 0ustar # SymbolsHelper-Confirmed: 5.0~git20130731 amd64 arm64 armhf i386 powerpc ppc64el libQt53D.so.5 libqt53d5 #MINVER# | libqt53d5-gles #MINVER# | libqt53d5 #MINVER# | libqt53d5-gles #MINVER# _Z10qDumpSceneP12QGLSceneNodebiRK4QSetIS0_E@Base 5.0~git20130731 _Z15qArrayAllocMoreiii@Base 5.0~git20130731 (optional)_Z25qt_gl_ClientActiveTexturej@Base 5.0~git20130731 1 _ZN10QGLBuilder10addSectionEP10QGLSection@Base 5.0~git20130731 _ZN10QGLBuilder10newSectionEN3QGL9SmoothingE@Base 5.0~git20130731 _ZN10QGLBuilder11currentNodeEv@Base 5.0~git20130731 _ZN10QGLBuilder12addQuadStripERK13QGeometryData@Base 5.0~git20130731 _ZN10QGLBuilder12addTrianglesERK13QGeometryData@Base 5.0~git20130731 _ZN10QGLBuilder14addTriangleFanERK13QGeometryData@Base 5.0~git20130731 _ZN10QGLBuilder16addTriangleStripERK13QGeometryData@Base 5.0~git20130731 _ZN10QGLBuilder18finalizedSceneNodeEv@Base 5.0~git20130731 _ZN10QGLBuilder19addQuadsInterleavedERK13QGeometryDataS2_@Base 5.0~git20130731 _ZN10QGLBuilder19addTriangulatedFaceERK13QGeometryData@Base 5.0~git20130731 _ZN10QGLBuilder19setDefaultThresholdEi@Base 5.0~git20130731 _ZN10QGLBuilder7newNodeEv@Base 5.0~git20130731 _ZN10QGLBuilder7paletteEv@Base 5.0~git20130731 _ZN10QGLBuilder7popNodeEv@Base 5.0~git20130731 _ZN10QGLBuilder8addQuadsERK13QGeometryData@Base 5.0~git20130731 _ZN10QGLBuilder8pushNodeEv@Base 5.0~git20130731 _ZN10QGLBuilder9sceneNodeEv@Base 5.0~git20130731 _ZN10QGLBuilderC1E14QSharedPointerI21QGLMaterialCollectionE@Base 5.0~git20130731 _ZN10QGLBuilderC1EP21QGLMaterialCollection@Base 5.0~git20130731 _ZN10QGLBuilderC2E14QSharedPointerI21QGLMaterialCollectionE@Base 5.0~git20130731 _ZN10QGLBuilderC2EP21QGLMaterialCollection@Base 5.0~git20130731 _ZN10QGLBuilderD0Ev@Base 5.0~git20130731 _ZN10QGLBuilderD1Ev@Base 5.0~git20130731 _ZN10QGLBuilderD2Ev@Base 5.0~git20130731 _ZN10QGLPainter10popSurfaceEv@Base 5.0~git20130731 _ZN10QGLPainter10setPickingEb@Base 5.0~git20130731 _ZN10QGLPainter10setScissorERK5QRect@Base 5.0~git20130731 _ZN10QGLPainter10setSurfaceEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN10QGLPainter11pushSurfaceEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN10QGLPainter11removeLightEi@Base 5.0~git20130731 _ZN10QGLPainter12setFaceColorEN3QGL4FaceERK6QColor@Base 5.0~git20130731 _ZN10QGLPainter12setMainLightEPK18QGLLightParameters@Base 5.0~git20130731 _ZN10QGLPainter12setMainLightEPK18QGLLightParametersRK10QMatrix4x4@Base 5.0~git20130731 _ZN10QGLPainter13disableEffectEv@Base 5.0~git20130731 _ZN10QGLPainter13setClearColorERK6QColor@Base 5.0~git20130731 _ZN10QGLPainter13setLightModelEPK13QGLLightModel@Base 5.0~git20130731 _ZN10QGLPainter13setUserEffectEP17QGLAbstractEffect@Base 5.0~git20130731 _ZN10QGLPainter15clearAttributesEv@Base 5.0~git20130731 _ZN10QGLPainter15modelViewMatrixEv@Base 5.0~git20130731 _ZN10QGLPainter15renderSequencerEv@Base 5.0~git20130731 _ZN10QGLPainter15setFaceMaterialEN3QGL4FaceEPK11QGLMaterial@Base 5.0~git20130731 _ZN10QGLPainter15setObjectPickIdEi@Base 5.0~git20130731 _ZN10QGLPainter15setVertexBundleERK15QGLVertexBundle@Base 5.0~git20130731 _ZN10QGLPainter16clearPickObjectsEv@Base 5.0~git20130731 _ZN10QGLPainter16projectionMatrixEv@Base 5.0~git20130731 _ZN10QGLPainter16setCachedProgramERK7QStringP20QOpenGLShaderProgram@Base 5.0~git20130731 _ZN10QGLPainter17setStandardEffectEN3QGL14StandardEffectE@Base 5.0~git20130731 _ZN10QGLPainter18setVertexAttributeEN3QGL15VertexAttributeERK17QGLAttributeValue@Base 5.0~git20130731 _ZN10QGLPainter19updateFixedFunctionE6QFlagsINS_6UpdateEE@Base 5.0~git20130731 _ZN10QGLPainter3endEv@Base 5.0~git20130731 _ZN10QGLPainter4drawEN3QGL11DrawingModeEPKti@Base 5.0~git20130731 _ZN10QGLPainter4drawEN3QGL11DrawingModeERK14QGLIndexBuffer@Base 5.0~git20130731 _ZN10QGLPainter4drawEN3QGL11DrawingModeERK14QGLIndexBufferii@Base 5.0~git20130731 _ZN10QGLPainter4drawEN3QGL11DrawingModeEii@Base 5.0~git20130731 _ZN10QGLPainter5beginEP14QOpenGLContext@Base 5.0~git20130731 _ZN10QGLPainter5beginEP14QOpenGLContextP18QGLAbstractSurfaceb@Base 5.0~git20130731 _ZN10QGLPainter5beginEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN10QGLPainter5beginEP7QWindow@Base 5.0~git20130731 _ZN10QGLPainter5beginEP8QPainter@Base 5.0~git20130731 _ZN10QGLPainter5beginEv@Base 5.0~git20130731 _ZN10QGLPainter6setEyeEN3QGL3EyeE@Base 5.0~git20130731 _ZN10QGLPainter6updateEv@Base 5.0~git20130731 _ZN10QGLPainter8addLightEPK18QGLLightParameters@Base 5.0~git20130731 _ZN10QGLPainter8addLightEPK18QGLLightParametersRK10QMatrix4x4@Base 5.0~git20130731 _ZN10QGLPainter8setColorERK6QColor@Base 5.0~git20130731 _ZN10QGLPainter9setCameraEPK9QGLCamera@Base 5.0~git20130731 _ZN10QGLPainterC1EP14QOpenGLContext@Base 5.0~git20130731 _ZN10QGLPainterC1EP18QGLAbstractSurface@Base 5.0~git20130731 _ZN10QGLPainterC1EP7QWindow@Base 5.0~git20130731 _ZN10QGLPainterC1EP8QPainter@Base 5.0~git20130731 _ZN10QGLPainterC1Ev@Base 5.0~git20130731 _ZN10QGLPainterC2EP14QOpenGLContext@Base 5.0~git20130731 _ZN10QGLPainterC2EP18QGLAbstractSurface@Base 5.0~git20130731 _ZN10QGLPainterC2EP7QWindow@Base 5.0~git20130731 _ZN10QGLPainterC2EP8QPainter@Base 5.0~git20130731 _ZN10QGLPainterC2Ev@Base 5.0~git20130731 _ZN10QGLPainterD0Ev@Base 5.0~git20130731 _ZN10QGLPainterD1Ev@Base 5.0~git20130731 _ZN10QGLPainterD2Ev@Base 5.0~git20130731 _ZN10QGLSection10deleteNodeEP12QGLSceneNode@Base 5.0~git20130731 _ZN10QGLSection12appendSmoothERK14QLogicalVertex@Base 5.0~git20130731 _ZN10QGLSection12appendSmoothERK14QLogicalVertexi@Base 5.0~git20130731 _ZN10QGLSection13appendFacetedERK14QLogicalVertex@Base 5.0~git20130731 _ZN10QGLSection15setMapThresholdEi@Base 5.0~git20130731 _ZN10QGLSection6appendERK14QLogicalVertex@Base 5.0~git20130731 _ZN10QGLSection6appendERK14QLogicalVertexS2_S2_@Base 5.0~git20130731 _ZN10QGLSection7addNodeEP12QGLSceneNode@Base 5.0~git20130731 _ZN10QGLSection7reserveEi@Base 5.0~git20130731 _ZN10QGLSection9appendOneERK14QLogicalVertex@Base 5.0~git20130731 _ZN10QGLSectionC1EP10QGLBuilderN3QGL9SmoothingE@Base 5.0~git20130731 _ZN10QGLSectionC2EP10QGLBuilderN3QGL9SmoothingE@Base 5.0~git20130731 _ZN10QGLSectionD1Ev@Base 5.0~git20130731 _ZN10QGLSectionD2Ev@Base 5.0~git20130731 _ZN11QGLMaterial10bindEffectEP10QGLPainterRK15QGLAttributeSetb@Base 5.0~git20130731 _ZN11QGLMaterial10setTextureEP12QGLTexture2Di@Base 5.0~git20130731 _ZN11QGLMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN11QGLMaterial11qt_metacastEPKc@Base 5.0~git20130731 _ZN11QGLMaterial12bindTexturesEP10QGLPainter@Base 5.0~git20130731 _ZN11QGLMaterial12setShininessEf@Base 5.0~git20130731 _ZN11QGLMaterial13prepareToDrawEP10QGLPainterRK15QGLAttributeSet@Base 5.0~git20130731 _ZN11QGLMaterial13setTextureUrlERK4QUrli@Base 5.0~git20130731 _ZN11QGLMaterial15setAmbientColorERK6QColor@Base 5.0~git20130731 _ZN11QGLMaterial15setDiffuseColorERK6QColor@Base 5.0~git20130731 _ZN11QGLMaterial15setEmittedLightERK6QColor@Base 5.0~git20130731 _ZN11QGLMaterial15texturesChangedEv@Base 5.0~git20130731 _ZN11QGLMaterial16setSpecularColorERK6QColor@Base 5.0~git20130731 _ZN11QGLMaterial16shininessChangedEv@Base 5.0~git20130731 _ZN11QGLMaterial16staticMetaObjectE@Base 5.0~git20130731 _ZN11QGLMaterial19ambientColorChangedEv@Base 5.0~git20130731 _ZN11QGLMaterial19diffuseColorChangedEv@Base 5.0~git20130731 _ZN11QGLMaterial19emittedLightChangedEv@Base 5.0~git20130731 _ZN11QGLMaterial20specularColorChangedEv@Base 5.0~git20130731 _ZN11QGLMaterial21setTextureCombineModeENS_18TextureCombineModeEi@Base 5.0~git20130731 _ZN11QGLMaterial4bindEP10QGLPainter@Base 5.0~git20130731 _ZN11QGLMaterial7releaseEP10QGLPainterP19QGLAbstractMaterial@Base 5.0~git20130731 _ZN11QGLMaterial8setColorERK6QColor@Base 5.0~git20130731 _ZN11QGLMaterialC1EP7QObject@Base 5.0~git20130731 _ZN11QGLMaterialC2EP7QObject@Base 5.0~git20130731 _ZN11QGLMaterialD0Ev@Base 5.0~git20130731 _ZN11QGLMaterialD1Ev@Base 5.0~git20130731 _ZN11QGLMaterialD2Ev@Base 5.0~git20130731 _ZN11QGLMockView11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN11QGLMockView11qt_metacastEPKc@Base 5.0~git20130731 _ZN11QGLMockView13ensureContextEv@Base 5.0~git20130731 _ZN11QGLMockView16staticMetaObjectE@Base 5.0~git20130731 _ZN11QGLMockView7contextEv@Base 5.0~git20130731 _ZN11QGLMockViewC1EP7QWindow@Base 5.0~git20130731 _ZN11QGLMockViewC2EP7QWindow@Base 5.0~git20130731 _ZN11QGLMockViewD0Ev@Base 5.0~git20130731 _ZN11QGLMockViewD1Ev@Base 5.0~git20130731 _ZN11QGLMockViewD2Ev@Base 5.0~git20130731 _ZN11QGLPickNode11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN11QGLPickNode11qt_metacastEPKc@Base 5.0~git20130731 _ZN11QGLPickNode12hoverChangedEv@Base 5.0~git20130731 _ZN11QGLPickNode13doubleClickedEv@Base 5.0~git20130731 _ZN11QGLPickNode16staticMetaObjectE@Base 5.0~git20130731 _ZN11QGLPickNode5eventEP6QEvent@Base 5.0~git20130731 _ZN11QGLPickNode7clickedEv@Base 5.0~git20130731 _ZN11QGLPickNode7pressedEv@Base 5.0~git20130731 _ZN11QGLPickNode8releasedEv@Base 5.0~git20130731 _ZN11QGLPickNodeC1EP16QGLAbstractScene@Base 5.0~git20130731 _ZN11QGLPickNodeC2EP16QGLAbstractScene@Base 5.0~git20130731 _ZN11QGLPickNodeD0Ev@Base 5.0~git20130731 _ZN11QGLPickNodeD1Ev@Base 5.0~git20130731 _ZN11QGLPickNodeD2Ev@Base 5.0~git20130731 _ZN11QTriangle3D9transformERK10QMatrix4x4@Base 5.0~git20130731 _ZN12QGLSceneNode10removeNodeEPS_@Base 5.0~git20130731 _ZN12QGLSceneNode10setOptionsE6QFlagsINS_6OptionEE@Base 5.0~git20130731 _ZN12QGLSceneNode10setPaletteE14QSharedPointerI21QGLMaterialCollectionE@Base 5.0~git20130731 _ZN12QGLSceneNode11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN12QGLSceneNode11qt_metacastEPKc@Base 5.0~git20130731 _ZN12QGLSceneNode11removeNodesERK5QListIPS_E@Base 5.0~git20130731 _ZN12QGLSceneNode11setGeometryE13QGeometryData@Base 5.0~git20130731 _ZN12QGLSceneNode11setMaterialEP11QGLMaterial@Base 5.0~git20130731 _ZN12QGLSceneNode11setPickNodeEP11QGLPickNode@Base 5.0~git20130731 _ZN12QGLSceneNode11setPositionERK9QVector3D@Base 5.0~git20130731 _ZN12QGLSceneNode12addTransformEP26QQuickQGraphicsTransform3D@Base 5.0~git20130731 _ZN12QGLSceneNode12drawGeometryEP10QGLPainter@Base 5.0~git20130731 _ZN12QGLSceneNode13findSceneNodeER11QStringList@Base 5.0~git20130731 _ZN12QGLSceneNode13findSceneNodeER7QString@Base 5.0~git20130731 _ZN12QGLSceneNode13setTransformsERK5QListIP26QQuickQGraphicsTransform3DE@Base 5.0~git20130731 _ZN12QGLSceneNode13setUserEffectEP17QGLAbstractEffect@Base 5.0~git20130731 _ZN12QGLSceneNode14setDrawingModeEN3QGL11DrawingModeE@Base 5.0~git20130731 _ZN12QGLSceneNode15setBackMaterialEP11QGLMaterial@Base 5.0~git20130731 _ZN12QGLSceneNode15setDrawingWidthEf@Base 5.0~git20130731 _ZN12QGLSceneNode16setEffectEnabledEb@Base 5.0~git20130731 _ZN12QGLSceneNode16setMaterialIndexEi@Base 5.0~git20130731 _ZN12QGLSceneNode16staticMetaObjectE@Base 5.0~git20130731 _ZN12QGLSceneNode16transformChangedEv@Base 5.0~git20130731 _ZN12QGLSceneNode17setLocalTransformERK10QMatrix4x4@Base 5.0~git20130731 _ZN12QGLSceneNode18setPainterMaterialEiP10QGLPainterN3QGL4FaceERb@Base 5.0~git20130731 _ZN12QGLSceneNode20drawNormalIndicatorsEP10QGLPainter@Base 5.0~git20130731 _ZN12QGLSceneNode20setBackMaterialIndexEi@Base 5.0~git20130731 _ZN12QGLSceneNode3getERK11QStringListP7QObjectb@Base 5.0~git20130731 _ZN12QGLSceneNode3getERK7QStringP7QObjectb@Base 5.0~git20130731 _ZN12QGLSceneNode4drawEP10QGLPainter@Base 5.0~git20130731 _ZN12QGLSceneNode4setXEf@Base 5.0~git20130731 _ZN12QGLSceneNode4setYEf@Base 5.0~git20130731 _ZN12QGLSceneNode4setZEf@Base 5.0~git20130731 _ZN12QGLSceneNode6culledEv@Base 5.0~git20130731 _ZN12QGLSceneNode6exceptERK11QStringListP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNode6exceptERK7QStringP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNode7addNodeEPS_@Base 5.0~git20130731 _ZN12QGLSceneNode7updatedEv@Base 5.0~git20130731 _ZN12QGLSceneNode8addNodesERK5QListIPS_E@Base 5.0~git20130731 _ZN12QGLSceneNode8setCountEi@Base 5.0~git20130731 _ZN12QGLSceneNode8setStartEi@Base 5.0~git20130731 _ZN12QGLSceneNode9displayedEv@Base 5.0~git20130731 _ZN12QGLSceneNode9setEffectEN3QGL14StandardEffectE@Base 5.0~git20130731 _ZN12QGLSceneNode9setOptionENS_6OptionEb@Base 5.0~git20130731 _ZN12QGLSceneNodeC1EP19QGLSceneNodePrivateP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNodeC1EP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNodeC1ERK13QGeometryDataP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNodeC2EP19QGLSceneNodePrivateP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNodeC2EP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNodeC2ERK13QGeometryDataP7QObject@Base 5.0~git20130731 _ZN12QGLSceneNodeD0Ev@Base 5.0~git20130731 _ZN12QGLSceneNodeD1Ev@Base 5.0~git20130731 _ZN12QGLSceneNodeD2Ev@Base 5.0~git20130731 _ZN12QGLTexture2D10clearImageEv@Base 5.0~git20130731 _ZN12QGLTexture2D11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN12QGLTexture2D11qt_metacastEPKc@Base 5.0~git20130731 _ZN12QGLTexture2D13fromTextureIdEjRK5QSize@Base 5.0~git20130731 _ZN12QGLTexture2D14setBindOptionsE6QFlagsINS_10BindOptionEE@Base 5.0~git20130731 _ZN12QGLTexture2D14textureUpdatedEv@Base 5.0~git20130731 _ZN12QGLTexture2D15setVerticalWrapEN3QGL11TextureWrapE@Base 5.0~git20130731 _ZN12QGLTexture2D16cleanupResourcesEv@Base 5.0~git20130731 _ZN12QGLTexture2D16staticMetaObjectE@Base 5.0~git20130731 _ZN12QGLTexture2D16toBeDeletedLaterEP14QOpenGLContextj@Base 5.0~git20130731 _ZN12QGLTexture2D17setCompressedFileERK7QString@Base 5.0~git20130731 _ZN12QGLTexture2D17setHorizontalWrapEN3QGL11TextureWrapE@Base 5.0~git20130731 _ZN12QGLTexture2D22textureRequestFinishedEP10QByteArray@Base 5.0~git20130731 _ZN12QGLTexture2D35processPendingResourceDeallocationsEv@Base 5.0~git20130731 _ZN12QGLTexture2D6setUrlERK4QUrl@Base 5.0~git20130731 _ZN12QGLTexture2D7setSizeERK5QSize@Base 5.0~git20130731 _ZN12QGLTexture2D8setImageERK6QImage@Base 5.0~git20130731 _ZN12QGLTexture2D9setPixmapERK7QPixmap@Base 5.0~git20130731 _ZN12QGLTexture2DC1EP7QObject@Base 5.0~git20130731 _ZN12QGLTexture2DC2EP7QObject@Base 5.0~git20130731 _ZN12QGLTexture2DD0Ev@Base 5.0~git20130731 _ZN12QGLTexture2DD1Ev@Base 5.0~git20130731 _ZN12QGLTexture2DD2Ev@Base 5.0~git20130731 _ZN13QGLLightModel11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN13QGLLightModel11qt_metacastEPKc@Base 5.0~git20130731 _ZN13QGLLightModel12modelChangedEv@Base 5.0~git20130731 _ZN13QGLLightModel15setColorControlENS_12ColorControlE@Base 5.0~git20130731 _ZN13QGLLightModel16staticMetaObjectE@Base 5.0~git20130731 _ZN13QGLLightModel17lightModelChangedEv@Base 5.0~git20130731 _ZN13QGLLightModel17setViewerPositionENS_14ViewerPositionE@Base 5.0~git20130731 _ZN13QGLLightModel19colorControlChangedEv@Base 5.0~git20130731 _ZN13QGLLightModel20setAmbientSceneColorERK6QColor@Base 5.0~git20130731 _ZN13QGLLightModel21viewerPositionChangedEv@Base 5.0~git20130731 _ZN13QGLLightModel24ambientSceneColorChangedEv@Base 5.0~git20130731 _ZN13QGLLightModel8setModelENS_5ModelE@Base 5.0~git20130731 _ZN13QGLLightModelC1EP7QObject@Base 5.0~git20130731 _ZN13QGLLightModelC2EP7QObject@Base 5.0~git20130731 _ZN13QGLLightModelD0Ev@Base 5.0~git20130731 _ZN13QGLLightModelD1Ev@Base 5.0~git20130731 _ZN13QGLLightModelD2Ev@Base 5.0~git20130731 _ZN13QGLSubsurface10deactivateEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN13QGLSubsurface10setSurfaceEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN13QGLSubsurface8activateEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN13QGLSubsurface9setRegionERK5QRect@Base 5.0~git20130731 _ZN13QGLSubsurfaceC1EP18QGLAbstractSurfaceRK5QRect@Base 5.0~git20130731 _ZN13QGLSubsurfaceC1Ev@Base 5.0~git20130731 _ZN13QGLSubsurfaceC2EP18QGLAbstractSurfaceRK5QRect@Base 5.0~git20130731 _ZN13QGLSubsurfaceC2Ev@Base 5.0~git20130731 _ZN13QGLSubsurfaceD0Ev@Base 5.0~git20130731 _ZN13QGLSubsurfaceD1Ev@Base 5.0~git20130731 _ZN13QGLSubsurfaceD2Ev@Base 5.0~git20130731 _ZN13QGeometryData11appendColorERK9QColor4ub@Base 5.0~git20130731 _ZN13QGeometryData11appendColorERK9QColor4ubS2_@Base 5.0~git20130731 _ZN13QGeometryData11appendColorERK9QColor4ubS2_S2_@Base 5.0~git20130731 _ZN13QGeometryData11appendColorERK9QColor4ubS2_S2_S2_@Base 5.0~git20130731 _ZN13QGeometryData11appendIndexEi@Base 5.0~git20130731 _ZN13QGeometryData11enableFieldEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData12appendNormalERK9QVector3D@Base 5.0~git20130731 _ZN13QGeometryData12appendNormalERK9QVector3DS2_@Base 5.0~git20130731 _ZN13QGeometryData12appendNormalERK9QVector3DS2_S2_@Base 5.0~git20130731 _ZN13QGeometryData12appendNormalERK9QVector3DS2_S2_S2_@Base 5.0~git20130731 _ZN13QGeometryData12appendVertexERK14QLogicalVertex@Base 5.0~git20130731 _ZN13QGeometryData12appendVertexERK9QVector3D@Base 5.0~git20130731 _ZN13QGeometryData12appendVertexERK9QVector3DS2_@Base 5.0~git20130731 _ZN13QGeometryData12appendVertexERK9QVector3DS2_S2_@Base 5.0~git20130731 _ZN13QGeometryData12appendVertexERK9QVector3DS2_S2_S2_@Base 5.0~git20130731 (optional)_ZN13QGeometryData13appendIndicesERK6QArrayIjLi8EE@Base 5.0~git20130731 1 (optional)_ZN13QGeometryData13appendIndicesERK6QArrayItLi8EE@Base 5.0~git20130731 2 _ZN13QGeometryData13appendIndicesEiii@Base 5.0~git20130731 _ZN13QGeometryData14appendGeometryERKS_@Base 5.0~git20130731 _ZN13QGeometryData14appendTexCoordERK9QVector2DN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData14appendTexCoordERK9QVector2DS2_N3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData14appendTexCoordERK9QVector2DS2_S2_N3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData14appendTexCoordERK9QVector2DS2_S2_S2_N3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData14floatAttributeEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData14interleaveWithERKS_@Base 5.0~git20130731 _ZN13QGeometryData15appendAttributeERK8QVariantN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData15appendAttributeERK9QVector2DN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData15appendAttributeERK9QVector3DN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData15appendAttributeEfN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData15appendAttributeEffN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData15appendAttributeEfffN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData15appendAttributeEffffN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData16appendColorArrayERK6QArrayI9QColor4ubLi8EE@Base 5.0~git20130731 _ZN13QGeometryData16normalizeNormalsEv@Base 5.0~git20130731 _ZN13QGeometryData17appendNormalArrayERK14QVector3DArray@Base 5.0~git20130731 _ZN13QGeometryData17appendVertexArrayERK14QVector3DArray@Base 5.0~git20130731 _ZN13QGeometryData17setBufferStrategyE6QFlagsINS_19BufferStrategyFlagsEE@Base 5.0~git20130731 _ZN13QGeometryData17vector2DAttributeEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData17vector3DAttributeEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData19appendTexCoordArrayERK14QVector2DArrayN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData20appendAttributeArrayERK16QCustomDataArrayN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData26generateTextureCoordinatesEN2Qt11OrientationEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData4drawEP10QGLPainteriijf@Base 5.0~git20130731 _ZN13QGeometryData5clearEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryData5clearEv@Base 5.0~git20130731 _ZN13QGeometryData5colorEi@Base 5.0~git20130731 _ZN13QGeometryData6createEv@Base 5.0~git20130731 _ZN13QGeometryData6detachEv@Base 5.0~git20130731 _ZN13QGeometryData6normalEi@Base 5.0~git20130731 _ZN13QGeometryData6uploadEv@Base 5.0~git20130731 _ZN13QGeometryData6vertexEi@Base 5.0~git20130731 _ZN13QGeometryData7reserveEi@Base 5.0~git20130731 _ZN13QGeometryData8texCoordEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZN13QGeometryDataC1ERKS_@Base 5.0~git20130731 _ZN13QGeometryDataC1Ej@Base 5.0~git20130731 _ZN13QGeometryDataC1Ev@Base 5.0~git20130731 _ZN13QGeometryDataC2ERKS_@Base 5.0~git20130731 _ZN13QGeometryDataC2Ej@Base 5.0~git20130731 _ZN13QGeometryDataC2Ev@Base 5.0~git20130731 _ZN13QGeometryDataD1Ev@Base 5.0~git20130731 _ZN13QGeometryDataD2Ev@Base 5.0~git20130731 _ZN13QGeometryDataaSERKS_@Base 5.0~git20130731 _ZN14QAreaAllocator6expandERK5QSize@Base 5.0~git20130731 _ZN14QAreaAllocator7releaseERK5QListI5QRectE@Base 5.0~git20130731 _ZN14QAreaAllocator7releaseERK5QRect@Base 5.0~git20130731 _ZN14QAreaAllocator8allocateERK5QListI5QSizeE@Base 5.0~git20130731 _ZN14QAreaAllocator8expandByERK5QSize@Base 5.0~git20130731 _ZN14QAreaAllocatorC1ERK5QSize@Base 5.0~git20130731 _ZN14QAreaAllocatorC2ERK5QSize@Base 5.0~git20130731 _ZN14QAreaAllocatorD0Ev@Base 5.0~git20130731 _ZN14QAreaAllocatorD1Ev@Base 5.0~git20130731 _ZN14QAreaAllocatorD2Ev@Base 5.0~git20130731 _ZN14QGLIndexBuffer10setIndexesERK6QArrayIjLi8EE@Base 5.0~git20130731 _ZN14QGLIndexBuffer10setIndexesERK6QArrayItLi8EE@Base 5.0~git20130731 _ZN14QGLIndexBuffer14replaceIndexesEiRK6QArrayIjLi8EE@Base 5.0~git20130731 _ZN14QGLIndexBuffer14replaceIndexesEiRK6QArrayItLi8EE@Base 5.0~git20130731 _ZN14QGLIndexBuffer15setUsagePatternEN13QOpenGLBuffer12UsagePatternE@Base 5.0~git20130731 _ZN14QGLIndexBuffer4bindEv@Base 5.0~git20130731 _ZN14QGLIndexBuffer6appendERKS_j@Base 5.0~git20130731 _ZN14QGLIndexBuffer6appendERKS_jN3QGL11DrawingModeE@Base 5.0~git20130731 _ZN14QGLIndexBuffer6uploadEv@Base 5.0~git20130731 _ZN14QGLIndexBuffer7releaseEv@Base 5.0~git20130731 _ZN14QGLIndexBufferC1ERKS_@Base 5.0~git20130731 _ZN14QGLIndexBufferC1Ev@Base 5.0~git20130731 _ZN14QGLIndexBufferC2ERKS_@Base 5.0~git20130731 _ZN14QGLIndexBufferC2Ev@Base 5.0~git20130731 _ZN14QGLIndexBufferD1Ev@Base 5.0~git20130731 _ZN14QGLIndexBufferD2Ev@Base 5.0~git20130731 _ZN14QGLIndexBufferaSERKS_@Base 5.0~git20130731 _ZN14QGLRenderState10updateFromEPK12QGLSceneNode@Base 5.0~git20130731 _ZN14QGLRenderState6detachEv@Base 5.0~git20130731 _ZN14QGLRenderStateC1ERKS_@Base 5.0~git20130731 _ZN14QGLRenderStateC1Ev@Base 5.0~git20130731 _ZN14QGLRenderStateC2ERKS_@Base 5.0~git20130731 _ZN14QGLRenderStateC2Ev@Base 5.0~git20130731 _ZN14QGLRenderStateD0Ev@Base 5.0~git20130731 _ZN14QGLRenderStateD1Ev@Base 5.0~git20130731 _ZN14QGLRenderStateD2Ev@Base 5.0~git20130731 _ZN14QGLRenderStateaSERKS_@Base 5.0~git20130731 _ZN14QGLTextureCube10clearImageENS_4FaceE@Base 5.0~git20130731 _ZN14QGLTextureCube13fromTextureIdEjRK5QSize@Base 5.0~git20130731 _ZN14QGLTextureCube14setBindOptionsE6QFlagsIN12QGLTexture2D10BindOptionEE@Base 5.0~git20130731 _ZN14QGLTextureCube15setVerticalWrapEN3QGL11TextureWrapE@Base 5.0~git20130731 _ZN14QGLTextureCube16cleanupResourcesEv@Base 5.0~git20130731 _ZN14QGLTextureCube17setHorizontalWrapEN3QGL11TextureWrapE@Base 5.0~git20130731 _ZN14QGLTextureCube7releaseEv@Base 5.0~git20130731 _ZN14QGLTextureCube7setSizeERK5QSize@Base 5.0~git20130731 _ZN14QGLTextureCube8setImageENS_4FaceERK6QImage@Base 5.0~git20130731 _ZN14QGLTextureCubeC1Ev@Base 5.0~git20130731 _ZN14QGLTextureCubeC2Ev@Base 5.0~git20130731 _ZN14QGLTextureCubeD1Ev@Base 5.0~git20130731 _ZN14QGLTextureCubeD2Ev@Base 5.0~git20130731 _ZN14QVector2DArray5scaleEf@Base 5.0~git20130731 _ZN14QVector2DArray9transformERK10QMatrix4x4@Base 5.0~git20130731 _ZN14QVector2DArray9translateERK9QVector2D@Base 5.0~git20130731 _ZN14QVector3DArray5scaleEf@Base 5.0~git20130731 _ZN14QVector3DArray9transformERK10QMatrix4x4@Base 5.0~git20130731 _ZN14QVector3DArray9translateERK9QVector3D@Base 5.0~git20130731 _ZN14QVector4DArray5scaleEf@Base 5.0~git20130731 _ZN14QVector4DArray9transformERK10QMatrix4x4@Base 5.0~git20130731 _ZN14QVector4DArray9translateERK9QVector4D@Base 5.0~git20130731 _ZN15QGLAttributeSet8fromListERK5QListIN3QGL15VertexAttributeEE@Base 5.0~git20130731 _ZN15QGLVertexBundle12addAttributeEN3QGL15VertexAttributeERK16QCustomDataArray@Base 5.0~git20130731 _ZN15QGLVertexBundle12addAttributeEN3QGL15VertexAttributeERK6QArrayI9QColor4ubLi8EE@Base 5.0~git20130731 _ZN15QGLVertexBundle12addAttributeEN3QGL15VertexAttributeERK6QArrayI9QVector2DLi8EE@Base 5.0~git20130731 _ZN15QGLVertexBundle12addAttributeEN3QGL15VertexAttributeERK6QArrayI9QVector3DLi8EE@Base 5.0~git20130731 _ZN15QGLVertexBundle12addAttributeEN3QGL15VertexAttributeERK6QArrayI9QVector4DLi8EE@Base 5.0~git20130731 _ZN15QGLVertexBundle12addAttributeEN3QGL15VertexAttributeERK6QArrayIfLi8EE@Base 5.0~git20130731 _ZN15QGLVertexBundle4bindEv@Base 5.0~git20130731 _ZN15QGLVertexBundle6uploadEv@Base 5.0~git20130731 _ZN15QGLVertexBundle7releaseEv@Base 5.0~git20130731 _ZN15QGLVertexBundleC1ERKS_@Base 5.0~git20130731 _ZN15QGLVertexBundleC1Ev@Base 5.0~git20130731 _ZN15QGLVertexBundleC2ERKS_@Base 5.0~git20130731 _ZN15QGLVertexBundleC2Ev@Base 5.0~git20130731 _ZN15QGLVertexBundleD1Ev@Base 5.0~git20130731 _ZN15QGLVertexBundleD2Ev@Base 5.0~git20130731 _ZN15QGLVertexBundleaSERKS_@Base 5.0~git20130731 _ZN15QMatrix4x4Stack13setToIdentityEv@Base 5.0~git20130731 _ZN15QMatrix4x4Stack3popEv@Base 5.0~git20130731 _ZN15QMatrix4x4Stack4pushEv@Base 5.0~git20130731 _ZN15QMatrix4x4Stack5scaleERK9QVector3D@Base 5.0~git20130731 _ZN15QMatrix4x4Stack5scaleEf@Base 5.0~git20130731 _ZN15QMatrix4x4Stack5scaleEfff@Base 5.0~git20130731 _ZN15QMatrix4x4Stack6rotateERK11QQuaternion@Base 5.0~git20130731 _ZN15QMatrix4x4Stack6rotateEfRK9QVector3D@Base 5.0~git20130731 _ZN15QMatrix4x4Stack6rotateEffff@Base 5.0~git20130731 _ZN15QMatrix4x4Stack8setDirtyEb@Base 5.0~git20130731 _ZN15QMatrix4x4Stack9translateERK9QVector3D@Base 5.0~git20130731 _ZN15QMatrix4x4Stack9translateEfff@Base 5.0~git20130731 _ZN15QMatrix4x4StackC1Ev@Base 5.0~git20130731 _ZN15QMatrix4x4StackC2Ev@Base 5.0~git20130731 _ZN15QMatrix4x4StackD1Ev@Base 5.0~git20130731 _ZN15QMatrix4x4StackD2Ev@Base 5.0~git20130731 _ZN15QMatrix4x4StackaSERK10QMatrix4x4@Base 5.0~git20130731 _ZN15QMatrix4x4StackmLERK10QMatrix4x4@Base 5.0~git20130731 _ZN16QCustomDataArray14setElementTypeENS_11ElementTypeE@Base 5.0~git20130731 _ZN16QCustomDataArray5setAtEiRK8QVariant@Base 5.0~git20130731 _ZN16QCustomDataArray6appendERK8QVariant@Base 5.0~git20130731 _ZN16QCustomDataArrayC1ENS_11ElementTypeE@Base 5.0~git20130731 _ZN16QCustomDataArrayC1ENS_11ElementTypeEi@Base 5.0~git20130731 _ZN16QCustomDataArrayC1ERK6QArrayI9QColor4ubLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC1ERK6QArrayI9QVector2DLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC1ERK6QArrayI9QVector3DLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC1ERK6QArrayI9QVector4DLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC1ERK6QArrayIfLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC2ENS_11ElementTypeE@Base 5.0~git20130731 _ZN16QCustomDataArrayC2ENS_11ElementTypeEi@Base 5.0~git20130731 _ZN16QCustomDataArrayC2ERK6QArrayI9QColor4ubLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC2ERK6QArrayI9QVector2DLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC2ERK6QArrayI9QVector3DLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC2ERK6QArrayI9QVector4DLi8EE@Base 5.0~git20130731 _ZN16QCustomDataArrayC2ERK6QArrayIfLi8EE@Base 5.0~git20130731 _ZN16QDownloadManager11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN16QDownloadManager11qt_metacastEPKc@Base 5.0~git20130731 _ZN16QDownloadManager12netReplyDoneEv@Base 5.0~git20130731 _ZN16QDownloadManager13downloadAssetE4QUrl@Base 5.0~git20130731 _ZN16QDownloadManager14m_netAccessMgrE@Base 5.0~git20130731 _ZN16QDownloadManager16downloadCompleteEP10QByteArray@Base 5.0~git20130731 _ZN16QDownloadManager16staticMetaObjectE@Base 5.0~git20130731 _ZN16QDownloadManager17getNetworkManagerEv@Base 5.0~git20130731 _ZN16QDownloadManagerC1EP7QObject@Base 5.0~git20130731 _ZN16QDownloadManagerC2EP7QObject@Base 5.0~git20130731 _ZN16QDownloadManagerD0Ev@Base 5.0~git20130731 _ZN16QDownloadManagerD1Ev@Base 5.0~git20130731 _ZN16QDownloadManagerD2Ev@Base 5.0~git20130731 _ZN16QGLAbstractScene10childEventEP11QChildEvent@Base 5.0~git20130731 _ZN16QGLAbstractScene10nextPickIdEv@Base 5.0~git20130731 _ZN16QGLAbstractScene11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN16QGLAbstractScene11qt_metacastEPKc@Base 5.0~git20130731 _ZN16QGLAbstractScene11setPickableEb@Base 5.0~git20130731 _ZN16QGLAbstractScene12sceneUpdatedEv@Base 5.0~git20130731 _ZN16QGLAbstractScene15m_FormatsFilterE@Base 5.0~git20130731 _ZN16QGLAbstractScene16staticMetaObjectE@Base 5.0~git20130731 _ZN16QGLAbstractScene16supportedFormatsENS_14FormatListTypeE@Base 5.0~git20130731 _ZN16QGLAbstractScene17generatePickNodesEv@Base 5.0~git20130731 _ZN16QGLAbstractScene18m_bFormatListReadyE@Base 5.0~git20130731 _ZN16QGLAbstractScene21checkSupportedFormatsEv@Base 5.0~git20130731 _ZN16QGLAbstractScene9loadSceneEP9QIODeviceRK4QUrlRK7QStringS7_@Base 5.0~git20130731 _ZN16QGLAbstractScene9loadSceneERK4QUrlRK7QStringS5_@Base 5.0~git20130731 _ZN16QGLAbstractScene9loadSceneERK7QStringS2_S2_@Base 5.0~git20130731 _ZN16QGLAbstractScene9m_FormatsE@Base 5.0~git20130731 _ZN16QGLAbstractSceneC1EP7QObject@Base 5.0~git20130731 _ZN16QGLAbstractSceneC2EP7QObject@Base 5.0~git20130731 _ZN16QGLAbstractSceneD0Ev@Base 5.0~git20130731 _ZN16QGLAbstractSceneD1Ev@Base 5.0~git20130731 _ZN16QGLAbstractSceneD2Ev@Base 5.0~git20130731 _ZN16QGLBezierPatches12setPositionsERK14QVector3DArray@Base 5.0~git20130731 _ZN16QGLBezierPatches16setTextureCoordsERK14QVector2DArray@Base 5.0~git20130731 _ZN16QGLBezierPatches19setSubdivisionDepthEi@Base 5.0~git20130731 _ZN16QGLBezierPatches9transformERK10QMatrix4x4@Base 5.0~git20130731 _ZN16QGLBezierPatchesC1ERKS_@Base 5.0~git20130731 _ZN16QGLBezierPatchesC1Ev@Base 5.0~git20130731 _ZN16QGLBezierPatchesC2ERKS_@Base 5.0~git20130731 _ZN16QGLBezierPatchesC2Ev@Base 5.0~git20130731 _ZN16QGLBezierPatchesD0Ev@Base 5.0~git20130731 _ZN16QGLBezierPatchesD1Ev@Base 5.0~git20130731 _ZN16QGLBezierPatchesD2Ev@Base 5.0~git20130731 _ZN16QGLBezierPatchesaSERKS_@Base 5.0~git20130731 _ZN16QGLColorMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN16QGLColorMaterial11qt_metacastEPKc@Base 5.0~git20130731 _ZN16QGLColorMaterial12colorChangedEv@Base 5.0~git20130731 _ZN16QGLColorMaterial13prepareToDrawEP10QGLPainterRK15QGLAttributeSet@Base 5.0~git20130731 _ZN16QGLColorMaterial16staticMetaObjectE@Base 5.0~git20130731 _ZN16QGLColorMaterial4bindEP10QGLPainter@Base 5.0~git20130731 _ZN16QGLColorMaterial7releaseEP10QGLPainterP19QGLAbstractMaterial@Base 5.0~git20130731 _ZN16QGLColorMaterial8setColorERK6QColor@Base 5.0~git20130731 _ZN16QGLColorMaterialC1EP7QObject@Base 5.0~git20130731 _ZN16QGLColorMaterialC2EP7QObject@Base 5.0~git20130731 _ZN16QGLColorMaterialD0Ev@Base 5.0~git20130731 _ZN16QGLColorMaterialD1Ev@Base 5.0~git20130731 _ZN16QGLColorMaterialD2Ev@Base 5.0~git20130731 _ZN16QGLWindowSurface10deactivateEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN16QGLWindowSurface8activateEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN16QGLWindowSurfaceC1EP7QWindow@Base 5.0~git20130731 _ZN16QGLWindowSurfaceC1Ev@Base 5.0~git20130731 _ZN16QGLWindowSurfaceC2EP7QWindow@Base 5.0~git20130731 _ZN16QGLWindowSurfaceC2Ev@Base 5.0~git20130731 _ZN16QGLWindowSurfaceD0Ev@Base 5.0~git20130731 _ZN16QGLWindowSurfaceD1Ev@Base 5.0~git20130731 _ZN16QGLWindowSurfaceD2Ev@Base 5.0~git20130731 _ZN16QGraphicsScale3D11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN16QGraphicsScale3D11qt_metacastEPKc@Base 5.0~git20130731 _ZN16QGraphicsScale3D12scaleChangedEv@Base 5.0~git20130731 _ZN16QGraphicsScale3D13originChangedEv@Base 5.0~git20130731 _ZN16QGraphicsScale3D16staticMetaObjectE@Base 5.0~git20130731 _ZN16QGraphicsScale3D8setScaleERK9QVector3D@Base 5.0~git20130731 _ZN16QGraphicsScale3D9setOriginERK9QVector3D@Base 5.0~git20130731 _ZN16QGraphicsScale3DC1EP7QObject@Base 5.0~git20130731 _ZN16QGraphicsScale3DC2EP7QObject@Base 5.0~git20130731 _ZN16QGraphicsScale3DD0Ev@Base 5.0~git20130731 _ZN16QGraphicsScale3DD1Ev@Base 5.0~git20130731 _ZN16QGraphicsScale3DD2Ev@Base 5.0~git20130731 _ZN17QGLAbstractEffectC1Ev@Base 5.0~git20130731 _ZN17QGLAbstractEffectC2Ev@Base 5.0~git20130731 _ZN17QGLAbstractEffectD0Ev@Base 5.0~git20130731 _ZN17QGLAbstractEffectD1Ev@Base 5.0~git20130731 _ZN17QGLAbstractEffectD2Ev@Base 5.0~git20130731 _ZN17QGLAttributeValueC1ERK16QCustomDataArray@Base 5.0~git20130731 _ZN17QGLAttributeValueC2ERK16QCustomDataArray@Base 5.0~git20130731 _ZN17QGLSceneAnimation11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN17QGLSceneAnimation11qt_metacastEPKc@Base 5.0~git20130731 _ZN17QGLSceneAnimation16staticMetaObjectE@Base 5.0~git20130731 _ZN17QGLSceneAnimationC1EP7QObject@Base 5.0~git20130731 _ZN17QGLSceneAnimationC1ERK7QStringP7QObject@Base 5.0~git20130731 _ZN17QGLSceneAnimationC2EP7QObject@Base 5.0~git20130731 _ZN17QGLSceneAnimationC2ERK7QStringP7QObject@Base 5.0~git20130731 _ZN17QGLSceneAnimationD0Ev@Base 5.0~git20130731 _ZN17QGLSceneAnimationD1Ev@Base 5.0~git20130731 _ZN17QGLSceneAnimationD2Ev@Base 5.0~git20130731 _ZN18QGLAbstractSurface10setContextEP14QOpenGLContext@Base 5.0~git20130731 _ZN18QGLAbstractSurface20setFramebufferObjectEP24QOpenGLFramebufferObject@Base 5.0~git20130731 _ZN18QGLAbstractSurface23createSurfaceForContextEP14QOpenGLContext@Base 5.0~git20130731 _ZN18QGLAbstractSurface8switchToEPS_@Base 5.0~git20130731 _ZN18QGLAbstractSurface9setWindowEP7QWindow@Base 5.0~git20130731 _ZN18QGLAbstractSurfaceC1Ei@Base 5.0~git20130731 _ZN18QGLAbstractSurfaceC2Ei@Base 5.0~git20130731 _ZN18QGLAbstractSurfaceD0Ev@Base 5.0~git20130731 _ZN18QGLAbstractSurfaceD1Ev@Base 5.0~git20130731 _ZN18QGLAbstractSurfaceD2Ev@Base 5.0~git20130731 _ZN18QGLCameraAnimation11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN18QGLCameraAnimation11qt_metacastEPKc@Base 5.0~git20130731 _ZN18QGLCameraAnimation11setDurationEi@Base 5.0~git20130731 _ZN18QGLCameraAnimation11setStartEyeERK9QVector3D@Base 5.0~git20130731 _ZN18QGLCameraAnimation12setEndCenterERK9QVector3D@Base 5.0~git20130731 _ZN18QGLCameraAnimation14setEasingCurveERK12QEasingCurve@Base 5.0~git20130731 _ZN18QGLCameraAnimation14setEndUpVectorERK9QVector3D@Base 5.0~git20130731 _ZN18QGLCameraAnimation14setStartCenterERK9QVector3D@Base 5.0~git20130731 _ZN18QGLCameraAnimation16setStartUpVectorERK9QVector3D@Base 5.0~git20130731 _ZN18QGLCameraAnimation16staticMetaObjectE@Base 5.0~git20130731 _ZN18QGLCameraAnimation17updateCurrentTimeEi@Base 5.0~git20130731 _ZN18QGLCameraAnimation9setCameraEP9QGLCamera@Base 5.0~git20130731 _ZN18QGLCameraAnimation9setEndEyeERK9QVector3D@Base 5.0~git20130731 _ZN18QGLCameraAnimationC1EP7QObject@Base 5.0~git20130731 _ZN18QGLCameraAnimationC2EP7QObject@Base 5.0~git20130731 _ZN18QGLCameraAnimationD0Ev@Base 5.0~git20130731 _ZN18QGLCameraAnimationD1Ev@Base 5.0~git20130731 _ZN18QGLCameraAnimationD2Ev@Base 5.0~git20130731 _ZN18QGLColladaFxEffect11setLightingEi@Base 5.0~git20130731 _ZN18QGLColladaFxEffect11setMaterialEP11QGLMaterial@Base 5.0~git20130731 _ZN18QGLColladaFxEffect14diffuseTextureEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect15generateShadersEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect21addBlinnPhongLightingEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect2idEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect3sidEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect5setIdE7QString@Base 5.0~git20130731 _ZN18QGLColladaFxEffect6setSidE7QString@Base 5.0~git20130731 _ZN18QGLColladaFxEffect6updateEP10QGLPainter6QFlagsINS0_6UpdateEE@Base 5.0~git20130731 _ZN18QGLColladaFxEffect8isActiveEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect8lightingEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect8materialEv@Base 5.0~git20130731 _ZN18QGLColladaFxEffect9setActiveEP10QGLPainterb@Base 5.0~git20130731 _ZN18QGLColladaFxEffectC1ERKS_@Base 5.0~git20130731 _ZN18QGLColladaFxEffectC1Ev@Base 5.0~git20130731 _ZN18QGLColladaFxEffectC2ERKS_@Base 5.0~git20130731 _ZN18QGLColladaFxEffectC2Ev@Base 5.0~git20130731 _ZN18QGLColladaFxEffectD0Ev@Base 5.0~git20130731 _ZN18QGLColladaFxEffectD1Ev@Base 5.0~git20130731 _ZN18QGLColladaFxEffectD2Ev@Base 5.0~git20130731 _ZN18QGLLightParameters11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN18QGLLightParameters11qt_metacastEPKc@Base 5.0~git20130731 _ZN18QGLLightParameters11setPositionERK9QVector3D@Base 5.0~git20130731 _ZN18QGLLightParameters12lightChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters12setDirectionERK9QVector3D@Base 5.0~git20130731 _ZN18QGLLightParameters12setSpotAngleEf@Base 5.0~git20130731 _ZN18QGLLightParameters15positionChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters15setAmbientColorERK6QColor@Base 5.0~git20130731 _ZN18QGLLightParameters15setDiffuseColorERK6QColor@Base 5.0~git20130731 _ZN18QGLLightParameters15setSpotExponentEf@Base 5.0~git20130731 _ZN18QGLLightParameters16directionChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters16setSpecularColorERK6QColor@Base 5.0~git20130731 _ZN18QGLLightParameters16setSpotDirectionERK9QVector3D@Base 5.0~git20130731 _ZN18QGLLightParameters16spotAngleChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters16staticMetaObjectE@Base 5.0~git20130731 _ZN18QGLLightParameters19ambientColorChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters19diffuseColorChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters19spotExponentChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters20setLinearAttenuationEf@Base 5.0~git20130731 _ZN18QGLLightParameters20specularColorChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters20spotDirectionChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters22setConstantAttenuationEf@Base 5.0~git20130731 _ZN18QGLLightParameters23setQuadraticAttenuationEf@Base 5.0~git20130731 _ZN18QGLLightParameters24linearAttenuationChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters26constantAttenuationChangedEv@Base 5.0~git20130731 _ZN18QGLLightParameters27quadraticAttenuationChangedEv@Base 5.0~git20130731 _ZN18QGLLightParametersC1EP7QObject@Base 5.0~git20130731 _ZN18QGLLightParametersC2EP7QObject@Base 5.0~git20130731 _ZN18QGLLightParametersD0Ev@Base 5.0~git20130731 _ZN18QGLLightParametersD1Ev@Base 5.0~git20130731 _ZN18QGLLightParametersD2Ev@Base 5.0~git20130731 _ZN18QGLRenderSequencer10applyStateEv@Base 5.0~git20130731 _ZN18QGLRenderSequencer10beginStateEP12QGLSceneNode@Base 5.0~git20130731 _ZN18QGLRenderSequencer10setPainterEP10QGLPainter@Base 5.0~git20130731 _ZN18QGLRenderSequencer13setComparatorEP24QGLRenderOrderComparator@Base 5.0~git20130731 _ZN18QGLRenderSequencer14nextInSequenceEv@Base 5.0~git20130731 _ZN18QGLRenderSequencer16renderInSequenceEP12QGLSceneNode@Base 5.0~git20130731 _ZN18QGLRenderSequencer5resetEv@Base 5.0~git20130731 _ZN18QGLRenderSequencer6setTopEP12QGLSceneNode@Base 5.0~git20130731 _ZN18QGLRenderSequencer8endStateEP12QGLSceneNode@Base 5.0~git20130731 _ZN18QGLRenderSequencer9insertNewERK14QGLRenderOrder@Base 5.0~git20130731 _ZN18QGLRenderSequencerC1EP10QGLPainter@Base 5.0~git20130731 _ZN18QGLRenderSequencerC2EP10QGLPainter@Base 5.0~git20130731 _ZN19QGLAbstractMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN19QGLAbstractMaterial11qt_metacastEPKc@Base 5.0~git20130731 _ZN19QGLAbstractMaterial13prepareToDrawEP10QGLPainterRK15QGLAttributeSet@Base 5.0~git20130731 _ZN19QGLAbstractMaterial15materialChangedEv@Base 5.0~git20130731 _ZN19QGLAbstractMaterial16staticMetaObjectE@Base 5.0~git20130731 _ZN19QGLAbstractMaterialC1EP7QObject@Base 5.0~git20130731 _ZN19QGLAbstractMaterialC2EP7QObject@Base 5.0~git20130731 _ZN19QGLAbstractMaterialD0Ev@Base 5.0~git20130731 _ZN19QGLAbstractMaterialD1Ev@Base 5.0~git20130731 _ZN19QGLAbstractMaterialD2Ev@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial11backChangedEv@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial11qt_metacastEPKc@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial12frontChangedEv@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial13prepareToDrawEP10QGLPainterRK15QGLAttributeSet@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial16staticMetaObjectE@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial4bindEP10QGLPainter@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial7releaseEP10QGLPainterP19QGLAbstractMaterial@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial7setBackEP11QGLMaterial@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterial8setFrontEP11QGLMaterial@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterialC1EP7QObject@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterialC2EP7QObject@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterialD0Ev@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterialD1Ev@Base 5.0~git20130731 _ZN19QGLTwoSidedMaterialD2Ev@Base 5.0~git20130731 _ZN19QGraphicsRotation3D11axisChangedEv@Base 5.0~git20130731 _ZN19QGraphicsRotation3D11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN19QGraphicsRotation3D11qt_metacastEPKc@Base 5.0~git20130731 _ZN19QGraphicsRotation3D12angleChangedEv@Base 5.0~git20130731 _ZN19QGraphicsRotation3D13originChangedEv@Base 5.0~git20130731 _ZN19QGraphicsRotation3D16staticMetaObjectE@Base 5.0~git20130731 _ZN19QGraphicsRotation3D7setAxisERK9QVector3D@Base 5.0~git20130731 _ZN19QGraphicsRotation3D8setAngleEf@Base 5.0~git20130731 _ZN19QGraphicsRotation3D9setOriginERK9QVector3D@Base 5.0~git20130731 _ZN19QGraphicsRotation3DC1EP7QObject@Base 5.0~git20130731 _ZN19QGraphicsRotation3DC2EP7QObject@Base 5.0~git20130731 _ZN19QGraphicsRotation3DD0Ev@Base 5.0~git20130731 _ZN19QGraphicsRotation3DD1Ev@Base 5.0~git20130731 _ZN19QGraphicsRotation3DD2Ev@Base 5.0~git20130731 _ZN20QSimpleAreaAllocator8allocateERK5QSize@Base 5.0~git20130731 _ZN20QSimpleAreaAllocatorC1ERK5QSize@Base 5.0~git20130731 _ZN20QSimpleAreaAllocatorC2ERK5QSize@Base 5.0~git20130731 _ZN20QSimpleAreaAllocatorD0Ev@Base 5.0~git20130731 _ZN20QSimpleAreaAllocatorD1Ev@Base 5.0~git20130731 _ZN20QSimpleAreaAllocatorD2Ev@Base 5.0~git20130731 _ZN21QGLMaterialCollection11addMaterialEP11QGLMaterial@Base 5.0~git20130731 _ZN21QGLMaterialCollection11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN21QGLMaterialCollection11qt_metacastEPKc@Base 5.0~git20130731 _ZN21QGLMaterialCollection14removeMaterialEP11QGLMaterial@Base 5.0~git20130731 _ZN21QGLMaterialCollection14removeMaterialEi@Base 5.0~git20130731 _ZN21QGLMaterialCollection15materialDeletedEv@Base 5.0~git20130731 _ZN21QGLMaterialCollection16staticMetaObjectE@Base 5.0~git20130731 _ZN21QGLMaterialCollection18markMaterialAsUsedEi@Base 5.0~git20130731 _ZN21QGLMaterialCollection21removeUnusedMaterialsEv@Base 5.0~git20130731 _ZN21QGLMaterialCollectionC1EP7QObject@Base 5.0~git20130731 _ZN21QGLMaterialCollectionC2EP7QObject@Base 5.0~git20130731 _ZN21QGLMaterialCollectionD0Ev@Base 5.0~git20130731 _ZN21QGLMaterialCollectionD1Ev@Base 5.0~git20130731 _ZN21QGLMaterialCollectionD2Ev@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler11qt_metacastEPKc@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler13decodeOptionsERK7QString@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler13downloadSceneEv@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler16downloadCompleteEP10QByteArray@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler16staticMetaObjectE@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler6setUrlERK4QUrl@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler8finalizeEv@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler8setSceneEP16QGLAbstractScene@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler9setDeviceEP9QIODevice@Base 5.0~git20130731 _ZN21QGLSceneFormatHandler9setFormatERK7QString@Base 5.0~git20130731 _ZN21QGLSceneFormatHandlerC1Ev@Base 5.0~git20130731 _ZN21QGLSceneFormatHandlerC2Ev@Base 5.0~git20130731 _ZN21QGLSceneFormatHandlerD0Ev@Base 5.0~git20130731 _ZN21QGLSceneFormatHandlerD1Ev@Base 5.0~git20130731 _ZN21QGLSceneFormatHandlerD2Ev@Base 5.0~git20130731 _ZN21QGeneralAreaAllocator16allocateFromNodeERK5QSizePNS_4NodeE@Base 5.0~git20130731 _ZN21QGeneralAreaAllocator17updateLargestFreeEPNS_4NodeE@Base 5.0~git20130731 _ZN21QGeneralAreaAllocator6expandERK5QSize@Base 5.0~git20130731 _ZN21QGeneralAreaAllocator7releaseERK5QRect@Base 5.0~git20130731 _ZN21QGeneralAreaAllocator8allocateERK5QSize@Base 5.0~git20130731 _ZN21QGeneralAreaAllocator8freeNodeEPNS_4NodeE@Base 5.0~git20130731 _ZN21QGeneralAreaAllocator9splitNodeEPNS_4NodeENS_5SplitE@Base 5.0~git20130731 _ZN21QGeneralAreaAllocatorC1ERK5QSize@Base 5.0~git20130731 _ZN21QGeneralAreaAllocatorC2ERK5QSize@Base 5.0~git20130731 _ZN21QGeneralAreaAllocatorD0Ev@Base 5.0~git20130731 _ZN21QGeneralAreaAllocatorD1Ev@Base 5.0~git20130731 _ZN21QGeneralAreaAllocatorD2Ev@Base 5.0~git20130731 _ZN21QUniformAreaAllocator6expandERK5QSize@Base 5.0~git20130731 _ZN21QUniformAreaAllocator7releaseERK5QRect@Base 5.0~git20130731 _ZN21QUniformAreaAllocator8allocateERK5QSize@Base 5.0~git20130731 _ZN21QUniformAreaAllocatorC1ERK5QSizeS2_@Base 5.0~git20130731 _ZN21QUniformAreaAllocatorC2ERK5QSizeS2_@Base 5.0~git20130731 _ZN21QUniformAreaAllocatorD0Ev@Base 5.0~git20130731 _ZN21QUniformAreaAllocatorD1Ev@Base 5.0~git20130731 _ZN21QUniformAreaAllocatorD2Ev@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect10beforeLinkEv@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect15setVertexShaderERK10QByteArray@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect16setMaximumLightsEi@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect17setFragmentShaderERK10QByteArray@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect17setGeometryShaderERK10QByteArray@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect23setVertexShaderFromFileERK7QString@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect25setFragmentShaderFromFileERK7QString@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect25setGeometryShaderFromFileERK7QString@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect6updateEP10QGLPainter6QFlagsINS0_6UpdateEE@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect9afterLinkEv@Base 5.0~git20130731 _ZN22QGLShaderProgramEffect9setActiveEP10QGLPainterb@Base 5.0~git20130731 _ZN22QGLShaderProgramEffectC1Ev@Base 5.0~git20130731 _ZN22QGLShaderProgramEffectC2Ev@Base 5.0~git20130731 _ZN22QGLShaderProgramEffectD0Ev@Base 5.0~git20130731 _ZN22QGLShaderProgramEffectD1Ev@Base 5.0~git20130731 _ZN22QGLShaderProgramEffectD2Ev@Base 5.0~git20130731 _ZN22QGraphicsTranslation3D11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN22QGraphicsTranslation3D11qt_metacastEPKc@Base 5.0~git20130731 _ZN22QGraphicsTranslation3D11setProgressEf@Base 5.0~git20130731 _ZN22QGraphicsTranslation3D12setTranslateERK9QVector3D@Base 5.0~git20130731 _ZN22QGraphicsTranslation3D15progressChangedEv@Base 5.0~git20130731 _ZN22QGraphicsTranslation3D16staticMetaObjectE@Base 5.0~git20130731 _ZN22QGraphicsTranslation3D16translateChangedEv@Base 5.0~git20130731 _ZN22QGraphicsTranslation3DC1EP7QObject@Base 5.0~git20130731 _ZN22QGraphicsTranslation3DC2EP7QObject@Base 5.0~git20130731 _ZN22QGraphicsTranslation3DD0Ev@Base 5.0~git20130731 _ZN22QGraphicsTranslation3DD1Ev@Base 5.0~git20130731 _ZN22QGraphicsTranslation3DD2Ev@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoader11effectNamesEv@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoader4loadE7QString@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoader5countEv@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoader6effectE7QString@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoaderC1Ev@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoaderC2Ev@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoaderD1Ev@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoaderD2Ev@Base 5.0~git20130731 _ZN24QGLColladaFxEffectLoaderixEi@Base 5.0~git20130731 _ZN24QGLRenderOrderComparator10isLessThanERK14QGLRenderOrderS2_@Base 5.0~git20130731 _ZN24QGLRenderOrderComparator9isEqualToERK14QGLRenderOrderS2_@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory12exportEffectEP18QGLColladaFxEffect7QStringS2_@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory15resolveImageURIEP12_ResultState7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory16processFloatListER16QXmlStreamReader@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory18loadEffectsFromXmlER16QXmlStreamReader4QDir@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory18processPassElementER16QXmlStreamReaderP12_ResultStateP18QGLColladaFxEffect@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory19loadEffectsFromFileERK7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory19processColorElementER16QXmlStreamReader@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory19processImageElementER16QXmlStreamReaderP12_ResultState@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory20generateCodeElementsEP18QGLColladaFxEffect7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory20processEffectElementER16QXmlStreamReaderP12_ResultState@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory21generateShaderElementEP18QGLColladaFxEffect7QStringS2_@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory21glslProfileFromEffectEP18QGLColladaFxEffect7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory21processProfileElementER16QXmlStreamReaderP12_ResultState@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory21processProgramElementER16QXmlStreamReaderP12_ResultStateP18QGLColladaFxEffect@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory21processSurfaceElementER16QXmlStreamReaderP12_ResultState7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory21processTextureElementER16QXmlStreamReaderP12_ResultState@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory21resolveTexture2DImageEP12QGLTexture2DP12_ResultState7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory22generateProgramElementEP18QGLColladaFxEffect7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory22processNewparamElementER16QXmlStreamReaderP12_ResultState@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory23processSampler2DElementER16QXmlStreamReaderP12_ResultState7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory23processTechniqueElementER16QXmlStreamReaderP12_ResultStateR7QString@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory26processParamOrFloatElementER16QXmlStreamReader@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory27generateBindUniformElementsEP18QGLColladaFxEffect@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory27processLibraryImagesElementER16QXmlStreamReaderP12_ResultState@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory28generateBindAttributeElementEP18QGLColladaFxEffect@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory28processColorOrTextureElementER16QXmlStreamReader@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactory28processLibraryEffectsElementER16QXmlStreamReaderP12_ResultState@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactoryC1Ev@Base 5.0~git20130731 _ZN25QGLColladaFxEffectFactoryC2Ev@Base 5.0~git20130731 _ZN26QQuickQGraphicsTransform3D11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN26QQuickQGraphicsTransform3D11qt_metacastEPKc@Base 5.0~git20130731 _ZN26QQuickQGraphicsTransform3D16staticMetaObjectE@Base 5.0~git20130731 _ZN26QQuickQGraphicsTransform3D16transformChangedEv@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurface10deactivateEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurface8activateEP18QGLAbstractSurface@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurfaceC1EP24QOpenGLFramebufferObjectP14QOpenGLContext@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurfaceC1Ev@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurfaceC2EP24QOpenGLFramebufferObjectP14QOpenGLContext@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurfaceC2Ev@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurfaceD0Ev@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurfaceD1Ev@Base 5.0~git20130731 _ZN27QGLFramebufferObjectSurfaceD2Ev@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransform11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransform11qt_metacastEPKc@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransform16staticMetaObjectE@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransform19setPreserveUpVectorEb@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransform23preserveUpVectorChangedEv@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransformC1EP7QObject@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransformC2EP7QObject@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransformD0Ev@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransformD1Ev@Base 5.0~git20130731 _ZN27QGraphicsBillboardTransformD2Ev@Base 5.0~git20130731 _ZN3QGL14nextPowerOfTwoERK5QSize@Base 5.0~git20130731 _ZN3QGL14nextPowerOfTwoEi@Base 5.0~git20130731 _ZN6QBox3D5uniteERK9QVector3D@Base 5.0~git20130731 _ZN6QBox3D5uniteERKS_@Base 5.0~git20130731 _ZN6QBox3D9intersectERKS_@Base 5.0~git20130731 _ZN6QBox3D9transformERK10QMatrix4x4@Base 5.0~git20130731 _ZN7QGLDomeD0Ev@Base 5.0~git20130731 _ZN7QGLDomeD1Ev@Base 5.0~git20130731 _ZN7QGLDomeD2Ev@Base 5.0~git20130731 _ZN7QGLView10setOptionsE6QFlagsINS_6OptionEE@Base 5.0~git20130731 _ZN7QGLView10wheelEventEP11QWheelEvent@Base 5.0~git20130731 _ZN7QGLView11exposeEventEP12QExposeEvent@Base 5.0~git20130731 _ZN7QGLView11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN7QGLView11qt_metacastEPKc@Base 5.0~git20130731 _ZN7QGLView11resizeEventEP12QResizeEvent@Base 5.0~git20130731 _ZN7QGLView12earlyPaintGLEP10QGLPainter@Base 5.0~git20130731 _ZN7QGLView12initializeGLEP10QGLPainter@Base 5.0~git20130731 _ZN7QGLView12initializeGLEv@Base 5.0~git20130731 _ZN7QGLView13cameraChangedEv@Base 5.0~git20130731 _ZN7QGLView13keyPressEventEP9QKeyEvent@Base 5.0~git20130731 _ZN7QGLView13setStereoTypeENS_10StereoTypeE@Base 5.0~git20130731 _ZN7QGLView14mouseMoveEventEP11QMouseEvent@Base 5.0~git20130731 _ZN7QGLView14objectForPointERK6QPoint@Base 5.0~git20130731 _ZN7QGLView14registerObjectEiP7QObject@Base 5.0~git20130731 _ZN7QGLView14sendEnterEventEP7QObject@Base 5.0~git20130731 _ZN7QGLView14sendLeaveEventEP7QObject@Base 5.0~git20130731 _ZN7QGLView15mousePressEventEP11QMouseEvent@Base 5.0~git20130731 _ZN7QGLView16deregisterObjectEi@Base 5.0~git20130731 _ZN7QGLView16staticMetaObjectE@Base 5.0~git20130731 _ZN7QGLView17mouseReleaseEventEP11QMouseEvent@Base 5.0~git20130731 _ZN7QGLView21mouseDoubleClickEventEP11QMouseEvent@Base 5.0~git20130731 _ZN7QGLView3panEii@Base 5.0~git20130731 _ZN7QGLView4quitEv@Base 5.0~git20130731 _ZN7QGLView5wheelEi@Base 5.0~git20130731 _ZN7QGLView6rotateEii@Base 5.0~git20130731 _ZN7QGLView6updateEv@Base 5.0~git20130731 _ZN7QGLView7contextEv@Base 5.0~git20130731 _ZN7QGLView7paintGLEP10QGLPainter@Base 5.0~git20130731 _ZN7QGLView7paintGLEv@Base 5.0~git20130731 _ZN7QGLView8resizeGLEii@Base 5.0~git20130731 _ZN7QGLView9hideEventEP10QHideEvent@Base 5.0~git20130731 _ZN7QGLView9setCameraEP9QGLCamera@Base 5.0~git20130731 _ZN7QGLView9setOptionENS_6OptionEb@Base 5.0~git20130731 _ZN7QGLView9showEventEP10QShowEvent@Base 5.0~git20130731 _ZN7QGLViewC1EP7QWindow@Base 5.0~git20130731 _ZN7QGLViewC1ERK14QSurfaceFormatP7QWindow@Base 5.0~git20130731 _ZN7QGLViewC2EP7QWindow@Base 5.0~git20130731 _ZN7QGLViewC2ERK14QSurfaceFormatP7QWindow@Base 5.0~git20130731 _ZN7QGLViewD0Ev@Base 5.0~git20130731 _ZN7QGLViewD1Ev@Base 5.0~git20130731 _ZN7QGLViewD2Ev@Base 5.0~git20130731 _ZN9QGLCamera11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN9QGLCamera11qt_metacastEPKc@Base 5.0~git20130731 _ZN9QGLCamera11setFarPlaneEf@Base 5.0~git20130731 _ZN9QGLCamera11setUpVectorERK9QVector3D@Base 5.0~git20130731 _ZN9QGLCamera11setViewSizeERK6QSizeF@Base 5.0~git20130731 _ZN9QGLCamera11viewChangedEv@Base 5.0~git20130731 _ZN9QGLCamera12rotateCenterERK11QQuaternion@Base 5.0~git20130731 _ZN9QGLCamera12setNearPlaneEf@Base 5.0~git20130731 _ZN9QGLCamera12translateEyeEfff@Base 5.0~git20130731 _ZN9QGLCamera14setFieldOfViewEf@Base 5.0~git20130731 _ZN9QGLCamera14setMinViewSizeERK6QSizeF@Base 5.0~git20130731 _ZN9QGLCamera14tiltPanRollEyeEfffNS_11RotateOrderE@Base 5.0~git20130731 _ZN9QGLCamera15translateCenterEfff@Base 5.0~git20130731 _ZN9QGLCamera16setEyeSeparationEf@Base 5.0~git20130731 _ZN9QGLCamera16staticMetaObjectE@Base 5.0~git20130731 _ZN9QGLCamera17projectionChangedEv@Base 5.0~git20130731 _ZN9QGLCamera17setProjectionTypeENS_14ProjectionTypeE@Base 5.0~git20130731 _ZN9QGLCamera17setScreenRotationEi@Base 5.0~git20130731 _ZN9QGLCamera17tiltPanRollCenterEfffNS_11RotateOrderE@Base 5.0~git20130731 _ZN9QGLCamera19setMotionAdjustmentERK9QVector3D@Base 5.0~git20130731 _ZN9QGLCamera23setAdjustForAspectRatioEb@Base 5.0~git20130731 _ZN9QGLCamera6setEyeERK9QVector3D@Base 5.0~git20130731 _ZN9QGLCamera9rotateEyeERK11QQuaternion@Base 5.0~git20130731 _ZN9QGLCamera9setCenterERK9QVector3D@Base 5.0~git20130731 _ZN9QGLCameraC1EP7QObject@Base 5.0~git20130731 _ZN9QGLCameraC2EP7QObject@Base 5.0~git20130731 _ZN9QGLCameraD0Ev@Base 5.0~git20130731 _ZN9QGLCameraD1Ev@Base 5.0~git20130731 _ZN9QGLCameraD2Ev@Base 5.0~git20130731 _ZN9QGLSphereD0Ev@Base 5.0~git20130731 _ZN9QGLSphereD1Ev@Base 5.0~git20130731 _ZN9QGLSphereD2Ev@Base 5.0~git20130731 _ZN9QGLTeapotC1Ev@Base 5.0~git20130731 _ZN9QGLTeapotC2Ev@Base 5.0~git20130731 _ZN9QGLTeapotD0Ev@Base 5.0~git20130731 _ZN9QGLTeapotD1Ev@Base 5.0~git20130731 _ZN9QGLTeapotD2Ev@Base 5.0~git20130731 _ZNK10QGLBuilder14currentSectionEv@Base 5.0~git20130731 _ZNK10QGLBuilder8sectionsEv@Base 5.0~git20130731 _ZNK10QGLPainter10attributesEv@Base 5.0~git20130731 _ZNK10QGLPainter10isCullableERK6QBox3D@Base 5.0~git20130731 _ZNK10QGLPainter10isCullableERK9QVector3D@Base 5.0~git20130731 _ZNK10QGLPainter10lightModelEv@Base 5.0~git20130731 _ZNK10QGLPainter10pickObjectEii@Base 5.0~git20130731 _ZNK10QGLPainter10userEffectEv@Base 5.0~git20130731 _ZNK10QGLPainter11aspectRatioEv@Base 5.0~git20130731 _ZNK10QGLPainter11worldMatrixEv@Base 5.0~git20130731 _ZNK10QGLPainter12faceMaterialEN3QGL4FaceE@Base 5.0~git20130731 _ZNK10QGLPainter12normalMatrixEv@Base 5.0~git20130731 _ZNK10QGLPainter12objectPickIdEv@Base 5.0~git20130731 _ZNK10QGLPainter13cachedProgramERK7QString@Base 5.0~git20130731 _ZNK10QGLPainter14combinedMatrixEv@Base 5.0~git20130731 _ZNK10QGLPainter14currentSurfaceEv@Base 5.0~git20130731 _ZNK10QGLPainter14lightTransformEi@Base 5.0~git20130731 _ZNK10QGLPainter14maximumLightIdEv@Base 5.0~git20130731 _ZNK10QGLPainter14standardEffectEv@Base 5.0~git20130731 _ZNK10QGLPainter15isFixedFunctionEv@Base 5.0~git20130731 _ZNK10QGLPainter18mainLightTransformEv@Base 5.0~git20130731 _ZNK10QGLPainter3eyeEv@Base 5.0~git20130731 _ZNK10QGLPainter5colorEv@Base 5.0~git20130731 _ZNK10QGLPainter5lightEi@Base 5.0~git20130731 _ZNK10QGLPainter6effectEv@Base 5.0~git20130731 _ZNK10QGLPainter7contextEv@Base 5.0~git20130731 _ZNK10QGLPainter8isActiveEv@Base 5.0~git20130731 _ZNK10QGLPainter9isPickingEv@Base 5.0~git20130731 _ZNK10QGLPainter9mainLightEv@Base 5.0~git20130731 _ZNK10QGLPainter9pickColorEv@Base 5.0~git20130731 _ZNK10QGLSection12mapThresholdEv@Base 5.0~git20130731 _ZNK10QGLSection5nodesEv@Base 5.0~git20130731 _ZNK11QGLMaterial10metaObjectEv@Base 5.0~git20130731 _ZNK11QGLMaterial10textureUrlEi@Base 5.0~git20130731 _ZNK11QGLMaterial12ambientColorEv@Base 5.0~git20130731 _ZNK11QGLMaterial12diffuseColorEv@Base 5.0~git20130731 _ZNK11QGLMaterial12emittedLightEv@Base 5.0~git20130731 _ZNK11QGLMaterial13isTransparentEv@Base 5.0~git20130731 _ZNK11QGLMaterial13specularColorEv@Base 5.0~git20130731 _ZNK11QGLMaterial17textureLayerCountEv@Base 5.0~git20130731 _ZNK11QGLMaterial18textureCombineModeEi@Base 5.0~git20130731 _ZNK11QGLMaterial5frontEv@Base 5.0~git20130731 _ZNK11QGLMaterial7textureEi@Base 5.0~git20130731 _ZNK11QGLMaterial9shininessEv@Base 5.0~git20130731 _ZNK11QGLMockView10metaObjectEv@Base 5.0~git20130731 _ZNK11QGLMockView7isValidEv@Base 5.0~git20130731 _ZNK11QGLPickNode10metaObjectEv@Base 5.0~git20130731 _ZNK11QTriangle3D10intersectsERK6QRay3D@Base 5.0~git20130731 _ZNK11QTriangle3D11transformedERK10QMatrix4x4@Base 5.0~git20130731 _ZNK11QTriangle3D12intersectionERK6QRay3D@Base 5.0~git20130731 _ZNK11QTriangle3D2uvERK9QVector3D@Base 5.0~git20130731 _ZNK11QTriangle3D8containsERK9QVector3D@Base 5.0~git20130731 _ZNK12QGLSceneNode10metaObjectEv@Base 5.0~git20130731 _ZNK12QGLSceneNode10transformsEv@Base 5.0~git20130731 _ZNK12QGLSceneNode10userEffectEv@Base 5.0~git20130731 _ZNK12QGLSceneNode11allChildrenEv@Base 5.0~git20130731 _ZNK12QGLSceneNode11boundingBoxEv@Base 5.0~git20130731 _ZNK12QGLSceneNode11drawingModeEv@Base 5.0~git20130731 _ZNK12QGLSceneNode12backMaterialEv@Base 5.0~git20130731 _ZNK12QGLSceneNode12drawingWidthEv@Base 5.0~git20130731 _ZNK12QGLSceneNode13materialIndexEv@Base 5.0~git20130731 _ZNK12QGLSceneNode14localTransformEv@Base 5.0~git20130731 _ZNK12QGLSceneNode15cloneNoChildrenEP7QObject@Base 5.0~git20130731 _ZNK12QGLSceneNode17backMaterialIndexEv@Base 5.0~git20130731 _ZNK12QGLSceneNode17cloneWithChildrenEP7QObject@Base 5.0~git20130731 _ZNK12QGLSceneNode19invalidateTransformEv@Base 5.0~git20130731 _ZNK12QGLSceneNode1xEv@Base 5.0~git20130731 _ZNK12QGLSceneNode1yEv@Base 5.0~git20130731 _ZNK12QGLSceneNode1zEv@Base 5.0~git20130731 _ZNK12QGLSceneNode21invalidateBoundingBoxEv@Base 5.0~git20130731 _ZNK12QGLSceneNode4onlyERK11QStringListP7QObject@Base 5.0~git20130731 _ZNK12QGLSceneNode4onlyERK7QStringP7QObject@Base 5.0~git20130731 _ZNK12QGLSceneNode5cloneEP7QObject@Base 5.0~git20130731 _ZNK12QGLSceneNode5countEv@Base 5.0~git20130731 _ZNK12QGLSceneNode5startEv@Base 5.0~git20130731 _ZNK12QGLSceneNode6effectEv@Base 5.0~git20130731 _ZNK12QGLSceneNode7optionsEv@Base 5.0~git20130731 _ZNK12QGLSceneNode7paletteEv@Base 5.0~git20130731 _ZNK12QGLSceneNode8childrenEv@Base 5.0~git20130731 _ZNK12QGLSceneNode8geometryEv@Base 5.0~git20130731 _ZNK12QGLSceneNode8materialEv@Base 5.0~git20130731 _ZNK12QGLSceneNode8pickNodeEv@Base 5.0~git20130731 _ZNK12QGLSceneNode8positionEv@Base 5.0~git20130731 _ZNK12QGLSceneNode9allExceptERK11QStringListP7QObject@Base 5.0~git20130731 _ZNK12QGLSceneNode9allExceptERK7QStringP7QObject@Base 5.0~git20130731 _ZNK12QGLSceneNode9hasEffectEv@Base 5.0~git20130731 _ZNK12QGLSceneNode9transformEv@Base 5.0~git20130731 _ZNK12QGLTexture2D10metaObjectEv@Base 5.0~git20130731 _ZNK12QGLTexture2D11bindOptionsEv@Base 5.0~git20130731 _ZNK12QGLTexture2D12verticalWrapEv@Base 5.0~git20130731 _ZNK12QGLTexture2D13requestedSizeEv@Base 5.0~git20130731 _ZNK12QGLTexture2D14horizontalWrapEv@Base 5.0~git20130731 _ZNK12QGLTexture2D15hasAlphaChannelEv@Base 5.0~git20130731 _ZNK12QGLTexture2D3urlEv@Base 5.0~git20130731 _ZNK12QGLTexture2D4bindEv@Base 5.0~git20130731 _ZNK12QGLTexture2D4sizeEv@Base 5.0~git20130731 _ZNK12QGLTexture2D5imageEv@Base 5.0~git20130731 _ZNK12QGLTexture2D6isNullEv@Base 5.0~git20130731 _ZNK12QGLTexture2D7releaseEv@Base 5.0~git20130731 _ZNK12QGLTexture2D9textureIdEv@Base 5.0~git20130731 _ZNK13QGLLightModel10metaObjectEv@Base 5.0~git20130731 _ZNK13QGLLightModel12colorControlEv@Base 5.0~git20130731 _ZNK13QGLLightModel14viewerPositionEv@Base 5.0~git20130731 _ZNK13QGLLightModel17ambientSceneColorEv@Base 5.0~git20130731 _ZNK13QGLLightModel5modelEv@Base 5.0~git20130731 _ZNK13QGLSubsurface10viewportGLEv@Base 5.0~git20130731 _ZNK13QGLSubsurface6regionEv@Base 5.0~git20130731 _ZNK13QGLSubsurface7isValidEv@Base 5.0~git20130731 _ZNK13QGLSubsurface7surfaceEv@Base 5.0~git20130731 _ZNK13QGeometryData10attributesEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData10indexCountEv@Base 5.0~git20130731 _ZNK13QGeometryData10texCoordAtEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData10translatedERK9QVector3D@Base 5.0~git20130731 _ZNK13QGeometryData10vertexDataEv@Base 5.0~git20130731 _ZNK13QGeometryData11boundingBoxEv@Base 5.0~git20130731 _ZNK13QGeometryData11indexBufferEv@Base 5.0~git20130731 _ZNK13QGeometryData12vertexBundleEv@Base 5.0~git20130731 _ZNK13QGeometryData14attributeValueEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData14bufferStrategyEv@Base 5.0~git20130731 _ZNK13QGeometryData15interleavedWithERKS_@Base 5.0~git20130731 _ZNK13QGeometryData15logicalVertexAtEi@Base 5.0~git20130731 _ZNK13QGeometryData16floatAttributeAtEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData19vector2DAttributeAtEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData19vector3DAttributeAtEiN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData5countEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData5countEv@Base 5.0~git20130731 _ZNK13QGeometryData6centerEv@Base 5.0~git20130731 _ZNK13QGeometryData6colorsEv@Base 5.0~git20130731 _ZNK13QGeometryData6fieldsEv@Base 5.0~git20130731 _ZNK13QGeometryData6isNullEv@Base 5.0~git20130731 _ZNK13QGeometryData7colorAtEi@Base 5.0~git20130731 _ZNK13QGeometryData7indicesEv@Base 5.0~git20130731 _ZNK13QGeometryData7isEmptyEv@Base 5.0~git20130731 _ZNK13QGeometryData7normalsEv@Base 5.0~git20130731 _ZNK13QGeometryData8hasFieldEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryData8normalAtEi@Base 5.0~git20130731 _ZNK13QGeometryData8reversedEv@Base 5.0~git20130731 _ZNK13QGeometryData8vertexAtEi@Base 5.0~git20130731 _ZNK13QGeometryData8verticesEv@Base 5.0~git20130731 _ZNK13QGeometryData9texCoordsEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK13QGeometryDataeqERKS_@Base 5.0~git20130731 _ZNK14QAreaAllocator15roundAllocationERK5QSize@Base 5.0~git20130731 _ZNK14QAreaAllocator8overheadEv@Base 5.0~git20130731 _ZNK14QGLIndexBuffer10indexCountEv@Base 5.0~git20130731 _ZNK14QGLIndexBuffer10isUploadedEv@Base 5.0~git20130731 _ZNK14QGLIndexBuffer11elementTypeEv@Base 5.0~git20130731 _ZNK14QGLIndexBuffer11indexesUIntEv@Base 5.0~git20130731 _ZNK14QGLIndexBuffer12usagePatternEv@Base 5.0~git20130731 _ZNK14QGLIndexBuffer13indexesUShortEv@Base 5.0~git20130731 _ZNK14QGLIndexBuffer6bufferEv@Base 5.0~git20130731 _ZNK14QGLRenderOrder10effectHashEv@Base 5.0~git20130731 _ZNK14QGLRenderOrder10isLessThanERKS_@Base 5.0~git20130731 _ZNK14QGLRenderOrder7isEqualERKS_@Base 5.0~git20130731 _ZNK14QGLRenderState10userEffectEv@Base 5.0~git20130731 _ZNK14QGLRenderState12backMaterialEv@Base 5.0~git20130731 _ZNK14QGLRenderState14standardEffectEv@Base 5.0~git20130731 _ZNK14QGLRenderState4hashEv@Base 5.0~git20130731 _ZNK14QGLRenderState4nodeEv@Base 5.0~git20130731 _ZNK14QGLRenderState7isValidEv@Base 5.0~git20130731 _ZNK14QGLRenderState8materialEv@Base 5.0~git20130731 _ZNK14QGLRenderState9hasEffectEv@Base 5.0~git20130731 _ZNK14QGLTextureCube11bindOptionsEv@Base 5.0~git20130731 _ZNK14QGLTextureCube12verticalWrapEv@Base 5.0~git20130731 _ZNK14QGLTextureCube13requestedSizeEv@Base 5.0~git20130731 _ZNK14QGLTextureCube14horizontalWrapEv@Base 5.0~git20130731 _ZNK14QGLTextureCube15hasAlphaChannelEv@Base 5.0~git20130731 _ZNK14QGLTextureCube4bindEv@Base 5.0~git20130731 _ZNK14QGLTextureCube4sizeEv@Base 5.0~git20130731 _ZNK14QGLTextureCube5imageENS_4FaceE@Base 5.0~git20130731 _ZNK14QGLTextureCube6isNullEv@Base 5.0~git20130731 _ZNK14QGLTextureCube9textureIdEv@Base 5.0~git20130731 _ZNK14QVector2DArray10translatedERK9QVector2D@Base 5.0~git20130731 _ZNK14QVector2DArray11transformedERK10QMatrix4x4@Base 5.0~git20130731 _ZNK14QVector2DArray6scaledEf@Base 5.0~git20130731 _ZNK14QVector3DArray10translatedERK9QVector3D@Base 5.0~git20130731 _ZNK14QVector3DArray11transformedERK10QMatrix4x4@Base 5.0~git20130731 _ZNK14QVector3DArray6scaledEf@Base 5.0~git20130731 _ZNK14QVector4DArray10translatedERK9QVector4D@Base 5.0~git20130731 _ZNK14QVector4DArray11transformedERK10QMatrix4x4@Base 5.0~git20130731 _ZNK14QVector4DArray6scaledEf@Base 5.0~git20130731 _ZNK15QGLAttributeSet6toListEv@Base 5.0~git20130731 _ZNK15QGLVertexBundle10attributesEv@Base 5.0~git20130731 _ZNK15QGLVertexBundle10isUploadedEv@Base 5.0~git20130731 _ZNK15QGLVertexBundle11vertexCountEv@Base 5.0~git20130731 _ZNK15QGLVertexBundle14attributeValueEN3QGL15VertexAttributeE@Base 5.0~git20130731 _ZNK15QGLVertexBundle6bufferEv@Base 5.0~git20130731 _ZNK15QMatrix4x4Stack3topEv@Base 5.0~git20130731 _ZNK15QMatrix4x4Stack7isDirtyEv@Base 5.0~git20130731 _ZNK16QCustomDataArray12toColorArrayEv@Base 5.0~git20130731 _ZNK16QCustomDataArray12toFloatArrayEv@Base 5.0~git20130731 _ZNK16QCustomDataArray15toVector2DArrayEv@Base 5.0~git20130731 _ZNK16QCustomDataArray15toVector3DArrayEv@Base 5.0~git20130731 _ZNK16QCustomDataArray15toVector4DArrayEv@Base 5.0~git20130731 _ZNK16QCustomDataArray2atEi@Base 5.0~git20130731 _ZNK16QDownloadManager10metaObjectEv@Base 5.0~git20130731 _ZNK16QGLAbstractScene10animationsEv@Base 5.0~git20130731 _ZNK16QGLAbstractScene10metaObjectEv@Base 5.0~git20130731 _ZNK16QGLAbstractScene11objectNamesEv@Base 5.0~git20130731 _ZNK16QGLAbstractScene6objectERK7QString@Base 5.0~git20130731 _ZNK16QGLAbstractScene8pickableEv@Base 5.0~git20130731 _ZNK16QGLAbstractScene9pickNodesEv@Base 5.0~git20130731 _ZNK16QGLBezierPatches10intersectsERK6QRay3D@Base 5.0~git20130731 _ZNK16QGLBezierPatches11transformedERK10QMatrix4x4@Base 5.0~git20130731 _ZNK16QGLBezierPatches12intersectionERK6QRay3DP9QVector2DPi@Base 5.0~git20130731 _ZNK16QGLBezierPatches13textureCoordsEv@Base 5.0~git20130731 _ZNK16QGLBezierPatches16subdivisionDepthEv@Base 5.0~git20130731 _ZNK16QGLBezierPatches9positionsEv@Base 5.0~git20130731 _ZNK16QGLColorMaterial10metaObjectEv@Base 5.0~git20130731 _ZNK16QGLColorMaterial13isTransparentEv@Base 5.0~git20130731 _ZNK16QGLColorMaterial5colorEv@Base 5.0~git20130731 _ZNK16QGLWindowSurface10viewportGLEv@Base 5.0~git20130731 _ZNK16QGLWindowSurface7isValidEv@Base 5.0~git20130731 _ZNK16QGraphicsScale3D10metaObjectEv@Base 5.0~git20130731 _ZNK16QGraphicsScale3D5cloneEP7QObject@Base 5.0~git20130731 _ZNK16QGraphicsScale3D5scaleEv@Base 5.0~git20130731 _ZNK16QGraphicsScale3D6originEv@Base 5.0~git20130731 _ZNK16QGraphicsScale3D7applyToEP10QMatrix4x4@Base 5.0~git20130731 _ZNK17QGLAbstractEffect15supportsPickingEv@Base 5.0~git20130731 _ZNK17QGLAttributeValue10sizeOfTypeEv@Base 5.0~git20130731 _ZNK17QGLSceneAnimation10metaObjectEv@Base 5.0~git20130731 _ZNK17QGLSceneAnimation4nameEv@Base 5.0~git20130731 _ZNK18QGLAbstractSurface11aspectRatioEv@Base 5.0~git20130731 _ZNK18QGLAbstractSurface11surfaceTypeEv@Base 5.0~git20130731 _ZNK18QGLAbstractSurface12viewportRectEv@Base 5.0~git20130731 _ZNK18QGLAbstractSurface17framebufferObjectEv@Base 5.0~git20130731 _ZNK18QGLAbstractSurface6windowEv@Base 5.0~git20130731 _ZNK18QGLAbstractSurface7contextEv@Base 5.0~git20130731 _ZNK18QGLAbstractSurface7isValidEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation10metaObjectEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation11easingCurveEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation11endUpVectorEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation11startCenterEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation13startUpVectorEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation6cameraEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation6endEyeEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation8durationEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation8startEyeEv@Base 5.0~git20130731 _ZNK18QGLCameraAnimation9endCenterEv@Base 5.0~git20130731 _ZNK18QGLLightParameters10metaObjectEv@Base 5.0~git20130731 _ZNK18QGLLightParameters11eyePositionERK10QMatrix4x4@Base 5.0~git20130731 _ZNK18QGLLightParameters12ambientColorEv@Base 5.0~git20130731 _ZNK18QGLLightParameters12diffuseColorEv@Base 5.0~git20130731 _ZNK18QGLLightParameters12spotCosAngleEv@Base 5.0~git20130731 _ZNK18QGLLightParameters12spotExponentEv@Base 5.0~git20130731 _ZNK18QGLLightParameters13specularColorEv@Base 5.0~git20130731 _ZNK18QGLLightParameters13spotDirectionEv@Base 5.0~git20130731 _ZNK18QGLLightParameters16eyeSpotDirectionERK10QMatrix4x4@Base 5.0~git20130731 _ZNK18QGLLightParameters17linearAttenuationEv@Base 5.0~git20130731 _ZNK18QGLLightParameters19constantAttenuationEv@Base 5.0~git20130731 _ZNK18QGLLightParameters20quadraticAttenuationEv@Base 5.0~git20130731 _ZNK18QGLLightParameters4typeEv@Base 5.0~git20130731 _ZNK18QGLLightParameters8positionEv@Base 5.0~git20130731 _ZNK18QGLLightParameters9directionEv@Base 5.0~git20130731 _ZNK18QGLLightParameters9spotAngleEv@Base 5.0~git20130731 _ZNK18QGLRenderSequencer10comparatorEv@Base 5.0~git20130731 _ZNK18QGLRenderSequencer3topEv@Base 5.0~git20130731 _ZNK19QGLAbstractMaterial10metaObjectEv@Base 5.0~git20130731 _ZNK19QGLAbstractMaterial4backEv@Base 5.0~git20130731 _ZNK19QGLAbstractMaterial5frontEv@Base 5.0~git20130731 _ZNK19QGLTwoSidedMaterial10metaObjectEv@Base 5.0~git20130731 _ZNK19QGLTwoSidedMaterial13isTransparentEv@Base 5.0~git20130731 _ZNK19QGLTwoSidedMaterial4backEv@Base 5.0~git20130731 _ZNK19QGLTwoSidedMaterial5frontEv@Base 5.0~git20130731 _ZNK19QGraphicsRotation3D10metaObjectEv@Base 5.0~git20130731 _ZNK19QGraphicsRotation3D4axisEv@Base 5.0~git20130731 _ZNK19QGraphicsRotation3D5angleEv@Base 5.0~git20130731 _ZNK19QGraphicsRotation3D5cloneEP7QObject@Base 5.0~git20130731 _ZNK19QGraphicsRotation3D6originEv@Base 5.0~git20130731 _ZNK19QGraphicsRotation3D7applyToEP10QMatrix4x4@Base 5.0~git20130731 _ZNK21QGLMaterialCollection10metaObjectEv@Base 5.0~git20130731 _ZNK21QGLMaterialCollection12materialNameEi@Base 5.0~git20130731 _ZNK21QGLMaterialCollection14isMaterialUsedEi@Base 5.0~git20130731 _ZNK21QGLMaterialCollection4sizeEv@Base 5.0~git20130731 _ZNK21QGLMaterialCollection7indexOfEP11QGLMaterial@Base 5.0~git20130731 _ZNK21QGLMaterialCollection7indexOfERK7QString@Base 5.0~git20130731 _ZNK21QGLMaterialCollection7isEmptyEv@Base 5.0~git20130731 _ZNK21QGLMaterialCollection8containsEP11QGLMaterial@Base 5.0~git20130731 _ZNK21QGLMaterialCollection8containsERK7QString@Base 5.0~git20130731 _ZNK21QGLMaterialCollection8materialERK7QString@Base 5.0~git20130731 _ZNK21QGLMaterialCollection8materialEi@Base 5.0~git20130731 _ZNK21QGLSceneFormatHandler10metaObjectEv@Base 5.0~git20130731 _ZNK21QGLSceneFormatHandler3urlEv@Base 5.0~git20130731 _ZNK21QGLSceneFormatHandler6deviceEv@Base 5.0~git20130731 _ZNK21QGLSceneFormatHandler6formatEv@Base 5.0~git20130731 _ZNK21QGLSceneFormatHandler8getSceneEv@Base 5.0~git20130731 _ZNK21QGeneralAreaAllocator8overheadEv@Base 5.0~git20130731 _ZNK21QUniformAreaAllocator8overheadEv@Base 5.0~git20130731 _ZNK22QGLShaderProgramEffect12vertexShaderEv@Base 5.0~git20130731 _ZNK22QGLShaderProgramEffect13maximumLightsEv@Base 5.0~git20130731 _ZNK22QGLShaderProgramEffect14fragmentShaderEv@Base 5.0~git20130731 _ZNK22QGLShaderProgramEffect14geometryShaderEv@Base 5.0~git20130731 _ZNK22QGLShaderProgramEffect7programEv@Base 5.0~git20130731 _ZNK22QGraphicsTranslation3D10metaObjectEv@Base 5.0~git20130731 _ZNK22QGraphicsTranslation3D5cloneEP7QObject@Base 5.0~git20130731 _ZNK22QGraphicsTranslation3D7applyToEP10QMatrix4x4@Base 5.0~git20130731 _ZNK22QGraphicsTranslation3D8progressEv@Base 5.0~git20130731 _ZNK22QGraphicsTranslation3D9translateEv@Base 5.0~git20130731 _ZNK23QGLAttributeDescription10sizeOfTypeEv@Base 5.0~git20130731 _ZNK26QQuickQGraphicsTransform3D10metaObjectEv@Base 5.0~git20130731 _ZNK27QGLFramebufferObjectSurface10viewportGLEv@Base 5.0~git20130731 _ZNK27QGLFramebufferObjectSurface7isValidEv@Base 5.0~git20130731 _ZNK27QGraphicsBillboardTransform10metaObjectEv@Base 5.0~git20130731 _ZNK27QGraphicsBillboardTransform16preserveUpVectorEv@Base 5.0~git20130731 _ZNK27QGraphicsBillboardTransform5cloneEP7QObject@Base 5.0~git20130731 _ZNK27QGraphicsBillboardTransform7applyToEP10QMatrix4x4@Base 5.0~git20130731 _ZNK6QBox3D10intersectsERK6QRay3D@Base 5.0~git20130731 _ZNK6QBox3D10intersectsERKS_@Base 5.0~git20130731 _ZNK6QBox3D11intersectedERKS_@Base 5.0~git20130731 _ZNK6QBox3D11transformedERK10QMatrix4x4@Base 5.0~git20130731 _ZNK6QBox3D12intersectionERK6QRay3D@Base 5.0~git20130731 _ZNK6QBox3D12intersectionERK6QRay3DPfS3_@Base 5.0~git20130731 _ZNK6QBox3D6unitedERK9QVector3D@Base 5.0~git20130731 _ZNK6QBox3D6unitedERKS_@Base 5.0~git20130731 _ZNK6QRay3D17projectedDistanceERK9QVector3D@Base 5.0~git20130731 _ZNK6QRay3D7projectERK9QVector3D@Base 5.0~git20130731 _ZNK6QRay3D8containsERK9QVector3D@Base 5.0~git20130731 _ZNK6QRay3D8containsERKS_@Base 5.0~git20130731 _ZNK6QRay3D8distanceERK9QVector3D@Base 5.0~git20130731 _ZNK7QGLView10metaObjectEv@Base 5.0~git20130731 _ZNK7QGLView10stereoTypeEv@Base 5.0~git20130731 _ZNK7QGLView6cameraEv@Base 5.0~git20130731 _ZNK7QGLView7optionsEv@Base 5.0~git20130731 _ZNK7QGLView8mapPointERK6QPoint@Base 5.0~git20130731 _ZNK7QGLView9isVisibleEv@Base 5.0~git20130731 _ZNK7QGLView9viewDeltaEii@Base 5.0~git20130731 _ZNK8QPlane3D10intersectsERK6QRay3D@Base 5.0~git20130731 _ZNK8QPlane3D12intersectionERK6QRay3D@Base 5.0~git20130731 _ZNK8QPlane3D8containsERK6QRay3D@Base 5.0~git20130731 _ZNK8QPlane3D8containsERK9QVector3D@Base 5.0~git20130731 _ZNK8QPlane3D8distanceERK9QVector3D@Base 5.0~git20130731 _ZNK9QGLCamera10metaObjectEv@Base 5.0~git20130731 _ZNK9QGLCamera11fieldOfViewEv@Base 5.0~git20130731 _ZNK9QGLCamera11minViewSizeEv@Base 5.0~git20130731 _ZNK9QGLCamera11translationEfff@Base 5.0~git20130731 _ZNK9QGLCamera13eyeSeparationEv@Base 5.0~git20130731 _ZNK9QGLCamera14projectionTypeEv@Base 5.0~git20130731 _ZNK9QGLCamera14screenRotationEv@Base 5.0~git20130731 _ZNK9QGLCamera15modelViewMatrixEN3QGL3EyeE@Base 5.0~git20130731 _ZNK9QGLCamera16motionAdjustmentEv@Base 5.0~git20130731 _ZNK9QGLCamera16projectionMatrixEf@Base 5.0~git20130731 _ZNK9QGLCamera20adjustForAspectRatioEv@Base 5.0~git20130731 _ZNK9QGLCamera3eyeEv@Base 5.0~git20130731 _ZNK9QGLCamera3panEf@Base 5.0~git20130731 _ZNK9QGLCamera4rollEf@Base 5.0~git20130731 _ZNK9QGLCamera4tiltEf@Base 5.0~git20130731 _ZNK9QGLCamera5cloneEP7QObject@Base 5.0~git20130731 _ZNK9QGLCamera6centerEv@Base 5.0~git20130731 _ZNK9QGLCamera8farPlaneEv@Base 5.0~git20130731 _ZNK9QGLCamera8mapPointERK6QPointfRK5QSize@Base 5.0~git20130731 _ZNK9QGLCamera8upVectorEv@Base 5.0~git20130731 _ZNK9QGLCamera8viewSizeEv@Base 5.0~git20130731 _ZNK9QGLCamera9nearPlaneEv@Base 5.0~git20130731 _ZNK9QSphere3D10intersectsERK6QBox3D@Base 5.0~git20130731 _ZNK9QSphere3D10intersectsERK6QRay3D@Base 5.0~git20130731 _ZNK9QSphere3D10intersectsERK8QPlane3D@Base 5.0~git20130731 _ZNK9QSphere3D11transformedERK10QMatrix4x4@Base 5.0~git20130731 _ZNK9QSphere3D12intersectionERK6QRay3D@Base 5.0~git20130731 _ZNK9QSphere3D12intersectionERK6QRay3DPfS3_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNKSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNKSt8_Rb_treeISsSt4pairIKSsmESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_@Base 5.0~git20130731 (optional=templinst)_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag@Base 5.0~git20130731 (optional=templinst)_ZNSt10_List_baseISsSaISsEE8_M_clearEv@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt11_Deque_baseIjSaIjEE17_M_initialize_mapEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt11_Deque_baseIjSaIjEE17_M_initialize_mapEm@Base 5.0~git20130731 (optional=templinst)_ZNSt11_Deque_baseIjSaIjEED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt11_Deque_baseIjSaIjEED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED0Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt3mapIjSsSt4lessIjESaISt4pairIKjSsEEED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt3mapIjSsSt4lessIjESaISt4pairIKjSsEEED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt3mapIjfSt4lessIjESaISt4pairIKjfEEED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt3mapIjfSt4lessIjESaISt4pairIKjfEEED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt3mapIjiSt4lessIjESaISt4pairIKjiEEED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt3mapIjiSt4lessIjESaISt4pairIKjiEEED2Ev@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt3mapIjjSt4lessIjESaISt4pairIKjjEEEixEOj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt3mapImmSt4lessImESaISt4pairIKmmEEEixEOm@Base 5.0~git20130731 (optional=templinst)_ZNSt4listIjSaIjEE4sortEv@Base 5.0~git20130731 (optional=templinst)_ZNSt4listIjSaIjEE5mergeEOS1_@Base 5.0~git20130731 (optional=templinst)_ZNSt4pairISsSsED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt4pairISsSsED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt5dequeIjSaIjEE16_M_push_back_auxIIRKjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt5dequeIjSaIjEE16_M_push_back_auxIJRKjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIN6Assimp9BVHLoader11ChannelTypeESaIS2_EE12emplace_backIIS2_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIN6Assimp9BVHLoader11ChannelTypeESaIS2_EE12emplace_backIJS2_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIN6Assimp9BVHLoader11ChannelTypeESaIS2_EE19_M_emplace_back_auxIIS2_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIN6Assimp9BVHLoader11ChannelTypeESaIS2_EE19_M_emplace_back_auxIJS2_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIPS_IjSaIjEESaIS2_EE19_M_emplace_back_auxIIS2_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIPS_IjSaIjEESaIS2_EE19_M_emplace_back_auxIJS2_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIS_IjSaIjEESaIS1_EE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIS_IjSaIjEESaIS1_EE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEE12emplace_backIISsEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEE12emplace_backIJSsEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorISsSaISsEE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorISsSaISsEE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIIRKSsEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIISsEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJRKSsEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJSsEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorISsSaISsEE7reserveEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorISsSaISsEE7reserveEm@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISsSaISsEEaSERKS1_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairISsSsESaIS1_EE19_M_emplace_back_auxIIS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairISsSsESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairISsSsESaIS1_EED1Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairISsSsESaIS1_EED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIifESaIS1_EE19_M_emplace_back_auxIIRKS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIifESaIS1_EE19_M_emplace_back_auxIJRKS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorISt4pairIifESaIS1_EE7reserveEj@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIifESaIS1_EEaSERKS3_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjSsESaIS1_EE19_M_emplace_back_auxIIS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjSsESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64)_ZNSt6vectorISt4pairIjSsESaIS1_EED1Ev@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64)_ZNSt6vectorISt4pairIjSsESaIS1_EED2Ev@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjfESaIS1_EE12emplace_backIIS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjfESaIS1_EE12emplace_backIJS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorISt4pairIjfESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorISt4pairIjfESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEmRKS1_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjfESaIS1_EE19_M_emplace_back_auxIIS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjfESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorISt4pairIjfESaIS1_EE7reserveEj@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorISt4pairIjjESaIS1_EE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjjESaIS1_EE19_M_emplace_back_auxIIS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorISt4pairIjjESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorISt4pairImmESaIS1_EE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst|arch=arm64)_ZNSt6vectorIbSaIbEE13_M_reallocateEm@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratorjb@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratormb@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIcSaIcEE13_M_assign_auxIN9__gnu_cxx17__normal_iteratorIPcS1_EEEEvT_S7_St20forward_iterator_tag@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIcSaIcEE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIcSaIcEE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEjRKf@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIfSaIfEE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIfSaIfEE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIfSaIfEE19_M_emplace_back_auxIIRKfEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIfSaIfEE19_M_emplace_back_auxIIfEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIfSaIfEE19_M_emplace_back_auxIJRKfEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIfSaIfEE19_M_emplace_back_auxIJfEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIfSaIfEE7reserveEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIfSaIfEE7reserveEm@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIhSaIhEE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIhSaIhEE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIiSaIiEE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIiSaIiEE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIiSaIiEE19_M_emplace_back_auxIIiEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIiSaIiEE19_M_emplace_back_auxIJiEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE12emplace_backIIjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE12emplace_backIJjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE13_M_insert_auxIIjEEEvN9__gnu_cxx17__normal_iteratorIPjS1_EEDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE13_M_insert_auxIJjEEEvN9__gnu_cxx17__normal_iteratorIPjS1_EEDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIjSaIjEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPjS1_EEjRKj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIjSaIjEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPjS1_EEmRKj@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIjSaIjEE17_M_default_appendEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIjSaIjEE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE19_M_emplace_back_auxIIRKjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE19_M_emplace_back_auxIIjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE19_M_emplace_back_auxIJRKjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE19_M_emplace_back_auxIJjEEEvDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt6vectorIjSaIjEE5eraseEN9__gnu_cxx17__normal_iteratorIPjS1_EES5_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIjSaIjEE6resizeEjRKj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIjSaIjEE6resizeEmRKj@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt6vectorIjSaIjEE7reserveEj@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorIjSaIjEE7reserveEm@Base 5.0~git20130731 (optional=templinst|arch=arm64 i386 powerpc ppc64el)_ZNSt6vectorIjSaIjEEaSERKS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE12emplace_backIImEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE12emplace_backIJmEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE17_M_default_appendEm@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE19_M_emplace_back_auxIIRKmEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE19_M_emplace_back_auxIImEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJRKmEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJmEEEvDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt6vectorImSaImEE7reserveEm@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIPSsSt4pairIKS0_PSt6vectorIjSaIjEEESt10_Select1stIS7_ESt4lessIS0_ESaIS7_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIOS0_EESI_IIEEEEESt17_Rb_tree_iteratorIS7_ESt23_Rb_tree_const_iteratorIS7_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIPSsSt4pairIKS0_PSt6vectorIjSaIjEEESt10_Select1stIS7_ESt4lessIS0_ESaIS7_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJOS0_EESI_IJEEEEESt17_Rb_tree_iteratorIS7_ESt23_Rb_tree_const_iteratorIS7_EDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIPSsSt4pairIKS0_PSt6vectorIjSaIjEEESt10_Select1stIS7_ESt4lessIS0_ESaIS7_EE24_M_get_insert_unique_posERS2_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeIPSsSt4pairIKS0_PSt6vectorIjSaIjEEESt10_Select1stIS7_ESt4lessIS0_ESaIS7_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS7_ERS2_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIPSsSt4pairIKS0_PSt6vectorIjSaIjEEESt10_Select1stIS7_ESt4lessIS0_ESaIS7_EE8_M_eraseEPSt13_Rb_tree_nodeIS7_E@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueIRKSsEESt4pairISt17_Rb_tree_iteratorISsEbEOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueISsEESt4pairISt17_Rb_tree_iteratorISsEbEOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE24_M_get_insert_unique_posERKSs@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE4findERKSs@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE8_M_eraseEPSt13_Rb_tree_nodeISsE@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE14_M_insert_nodeEPSt18_Rb_tree_node_baseSA_PSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESD_IIEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESD_IJEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERS1_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeISsSt4pairIKSsjESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeISsSt4pairIKSsmESt10_Select1stIS2_ESt4lessISsESaIS2_EE14_M_insert_nodeEPSt18_Rb_tree_node_baseSA_PSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeISsSt4pairIKSsmESt10_Select1stIS2_ESt4lessISsESaIS2_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESD_IIEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeISsSt4pairIKSsmESt10_Select1stIS2_ESt4lessISsESaIS2_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESD_IJEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeISsSt4pairIKSsmESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeISsSt4pairIKSsmESt10_Select1stIS2_ESt4lessISsESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeISsSt4pairIKSsmESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIiSt4pairIKijESt10_Select1stIS2_ESt4lessIiESaIS2_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESD_IIEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIiSt4pairIKijESt10_Select1stIS2_ESt4lessIiESaIS2_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESD_IJEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIiSt4pairIKijESt10_Select1stIS2_ESt4lessIiESaIS2_EE24_M_get_insert_unique_posERS1_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIiSt4pairIKijESt10_Select1stIS2_ESt4lessIiESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeIiSt4pairIKimESt10_Select1stIS2_ESt4lessIiESaIS2_EE24_M_get_insert_unique_posERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeIiSt4pairIKimESt10_Select1stIS2_ESt4lessIiESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeIiSt4pairIKimESt10_Select1stIS2_ESt4lessIiESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjSsESt10_Select1stIS2_ESt4lessIjESaIS2_EE16_M_insert_uniqueIS0_IjSsEEES0_ISt17_Rb_tree_iteratorIS2_EbEOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjSsESt10_Select1stIS2_ESt4lessIjESaIS2_EE7_M_copyEPKSt13_Rb_tree_nodeIS2_EPSA_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjSsESt10_Select1stIS2_ESt4lessIjESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=powerpc ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjSsESt10_Select1stIS2_ESt4lessIjESaIS2_EEC1EOS8_@Base 5.0~git20130731 (optional=templinst|arch=powerpc ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjSsESt10_Select1stIS2_ESt4lessIjESaIS2_EEC2EOS8_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjSsESt10_Select1stIS2_ESt4lessIjESaIS2_EEaSERKS8_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjfESt10_Select1stIS2_ESt4lessIjESaIS2_EE16_M_insert_uniqueIS0_IjfEEES0_ISt17_Rb_tree_iteratorIS2_EbEOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjfESt10_Select1stIS2_ESt4lessIjESaIS2_EE7_M_copyEPKSt13_Rb_tree_nodeIS2_EPSA_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjfESt10_Select1stIS2_ESt4lessIjESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=powerpc ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjfESt10_Select1stIS2_ESt4lessIjESaIS2_EEC1EOS8_@Base 5.0~git20130731 (optional=templinst|arch=powerpc ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjfESt10_Select1stIS2_ESt4lessIjESaIS2_EEC2EOS8_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjfESt10_Select1stIS2_ESt4lessIjESaIS2_EEaSERKS8_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE16_M_insert_uniqueIS0_IjiEEES0_ISt17_Rb_tree_iteratorIS2_EbEOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE7_M_copyEPKSt13_Rb_tree_nodeIS2_EPSA_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=powerpc ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EEC1EOS8_@Base 5.0~git20130731 (optional=templinst|arch=powerpc ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EEC2EOS8_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EEaSERKS8_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjjESt10_Select1stIS2_ESt4lessIjESaIS2_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIOjEESD_IIEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjjESt10_Select1stIS2_ESt4lessIjESaIS2_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESD_IIEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjjESt10_Select1stIS2_ESt4lessIjESaIS2_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJOjEESD_IJEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjjESt10_Select1stIS2_ESt4lessIjESaIS2_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESD_IJEEEEESt17_Rb_tree_iteratorIS2_ESt23_Rb_tree_const_iteratorIS2_EDpOT_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjjESt10_Select1stIS2_ESt4lessIjESaIS2_EE24_M_get_insert_unique_posERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeIjSt4pairIKjjESt10_Select1stIS2_ESt4lessIjESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERS1_@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjSt4pairIKjjESt10_Select1stIS2_ESt4lessIjESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjjSt9_IdentityIjESt4lessIjESaIjEE16_M_insert_uniqueIjEESt4pairISt17_Rb_tree_iteratorIjEbEOT_@Base 5.0~git20130731 (optional=templinst|arch=!i386 !powerpc)_ZNSt8_Rb_treeIjjSt9_IdentityIjESt4lessIjESaIjEE4findERKj@Base 5.0~git20130731 (optional=templinst)_ZNSt8_Rb_treeIjjSt9_IdentityIjESt4lessIjESaIjEE8_M_eraseEPSt13_Rb_tree_nodeIjE@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImESaIS2_EE24_M_get_insert_unique_posERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERS1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEiSsEvT_T0_S8_T1_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEElSsEvT_T0_S8_T1_@Base 5.0~git20130731 (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEEvT_S7_@Base 5.0~git20130731 (optional=templinst|arch=!amd64 !arm64 !ppc64el)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEiEvT_S7_T0_@Base 5.0~git20130731 (optional=templinst|arch=amd64 arm64 ppc64el)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEElEvT_S7_T0_@Base 5.0~git20130731 (optional=templinst)_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEEvT_@Base 5.0~git20130731 (optional=templinst)_ZSt6__findIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEESsET_S8_S8_RKT0_St26random_access_iterator_tag@Base 5.0~git20130731 (optional=templinst)_ZSt6__findIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEESsET_S7_S7_RKT0_St26random_access_iterator_tag@Base 5.0~git20130731 (optional=templinst)_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEEvT_S7_@Base 5.0~git20130731 (optional=templinst)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_@Base 5.0~git20130731 (optional=templinst)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_@Base 5.0~git20130731 _ZTI10QGLBuilder@Base 5.0~git20130731 _ZTI10QGLPainter@Base 5.0~git20130731 _ZTI11QGLMaterial@Base 5.0~git20130731 _ZTI11QGLMockView@Base 5.0~git20130731 _ZTI11QGLPickNode@Base 5.0~git20130731 _ZTI12QGLSceneNode@Base 5.0~git20130731 _ZTI12QGLTexture2D@Base 5.0~git20130731 _ZTI13QGLLightModel@Base 5.0~git20130731 _ZTI13QGLSubsurface@Base 5.0~git20130731 _ZTI14QAreaAllocator@Base 5.0~git20130731 _ZTI14QGLRenderState@Base 5.0~git20130731 _ZTI16QDownloadManager@Base 5.0~git20130731 _ZTI16QGLAbstractScene@Base 5.0~git20130731 _ZTI16QGLBezierPatches@Base 5.0~git20130731 _ZTI16QGLColorMaterial@Base 5.0~git20130731 _ZTI16QGLWindowSurface@Base 5.0~git20130731 _ZTI16QGraphicsScale3D@Base 5.0~git20130731 _ZTI16QOpenGLFunctions@Base 5.0~git20130731 _ZTI17QGLAbstractEffect@Base 5.0~git20130731 _ZTI17QGLSceneAnimation@Base 5.0~git20130731 _ZTI18QGLAbstractSurface@Base 5.0~git20130731 _ZTI18QGLCameraAnimation@Base 5.0~git20130731 _ZTI18QGLColladaFxEffect@Base 5.0~git20130731 _ZTI18QGLLightParameters@Base 5.0~git20130731 _ZTI19QGLAbstractMaterial@Base 5.0~git20130731 _ZTI19QGLTwoSidedMaterial@Base 5.0~git20130731 _ZTI19QGraphicsRotation3D@Base 5.0~git20130731 _ZTI20QSimpleAreaAllocator@Base 5.0~git20130731 _ZTI21QGLMaterialCollection@Base 5.0~git20130731 _ZTI21QGLSceneFormatHandler@Base 5.0~git20130731 _ZTI21QGeneralAreaAllocator@Base 5.0~git20130731 _ZTI21QUniformAreaAllocator@Base 5.0~git20130731 _ZTI22QGLShaderProgramEffect@Base 5.0~git20130731 _ZTI22QGraphicsTranslation3D@Base 5.0~git20130731 _ZTI24QGLRenderOrderComparator@Base 5.0~git20130731 _ZTI26QQuickQGraphicsTransform3D@Base 5.0~git20130731 _ZTI27QGLFramebufferObjectSurface@Base 5.0~git20130731 _ZTI27QGraphicsBillboardTransform@Base 5.0~git20130731 _ZTI7QGLDome@Base 5.0~git20130731 _ZTI7QGLView@Base 5.0~git20130731 _ZTI9QGLCamera@Base 5.0~git20130731 _ZTI9QGLSphere@Base 5.0~git20130731 _ZTI9QGLTeapot@Base 5.0~git20130731 _ZTS10QGLBuilder@Base 5.0~git20130731 _ZTS10QGLPainter@Base 5.0~git20130731 _ZTS11QGLMaterial@Base 5.0~git20130731 _ZTS11QGLMockView@Base 5.0~git20130731 _ZTS11QGLPickNode@Base 5.0~git20130731 _ZTS12QGLSceneNode@Base 5.0~git20130731 _ZTS12QGLTexture2D@Base 5.0~git20130731 _ZTS13QGLLightModel@Base 5.0~git20130731 _ZTS13QGLSubsurface@Base 5.0~git20130731 _ZTS14QAreaAllocator@Base 5.0~git20130731 _ZTS14QGLRenderState@Base 5.0~git20130731 _ZTS16QDownloadManager@Base 5.0~git20130731 _ZTS16QGLAbstractScene@Base 5.0~git20130731 _ZTS16QGLBezierPatches@Base 5.0~git20130731 _ZTS16QGLColorMaterial@Base 5.0~git20130731 _ZTS16QGLWindowSurface@Base 5.0~git20130731 _ZTS16QGraphicsScale3D@Base 5.0~git20130731 _ZTS16QOpenGLFunctions@Base 5.0~git20130731 _ZTS17QGLAbstractEffect@Base 5.0~git20130731 _ZTS17QGLSceneAnimation@Base 5.0~git20130731 _ZTS18QGLAbstractSurface@Base 5.0~git20130731 _ZTS18QGLCameraAnimation@Base 5.0~git20130731 _ZTS18QGLColladaFxEffect@Base 5.0~git20130731 _ZTS18QGLLightParameters@Base 5.0~git20130731 _ZTS19QGLAbstractMaterial@Base 5.0~git20130731 _ZTS19QGLTwoSidedMaterial@Base 5.0~git20130731 _ZTS19QGraphicsRotation3D@Base 5.0~git20130731 _ZTS20QSimpleAreaAllocator@Base 5.0~git20130731 _ZTS21QGLMaterialCollection@Base 5.0~git20130731 _ZTS21QGLSceneFormatHandler@Base 5.0~git20130731 _ZTS21QGeneralAreaAllocator@Base 5.0~git20130731 _ZTS21QUniformAreaAllocator@Base 5.0~git20130731 _ZTS22QGLShaderProgramEffect@Base 5.0~git20130731 _ZTS22QGraphicsTranslation3D@Base 5.0~git20130731 _ZTS24QGLRenderOrderComparator@Base 5.0~git20130731 _ZTS26QQuickQGraphicsTransform3D@Base 5.0~git20130731 _ZTS27QGLFramebufferObjectSurface@Base 5.0~git20130731 _ZTS27QGraphicsBillboardTransform@Base 5.0~git20130731 _ZTS7QGLDome@Base 5.0~git20130731 _ZTS7QGLView@Base 5.0~git20130731 _ZTS9QGLCamera@Base 5.0~git20130731 _ZTS9QGLSphere@Base 5.0~git20130731 _ZTS9QGLTeapot@Base 5.0~git20130731 _ZTV10QGLBuilder@Base 5.0~git20130731 _ZTV10QGLPainter@Base 5.0~git20130731 _ZTV11QGLMaterial@Base 5.0~git20130731 _ZTV11QGLMockView@Base 5.0~git20130731 _ZTV11QGLPickNode@Base 5.0~git20130731 _ZTV12QGLSceneNode@Base 5.0~git20130731 _ZTV12QGLTexture2D@Base 5.0~git20130731 _ZTV13QGLLightModel@Base 5.0~git20130731 _ZTV13QGLSubsurface@Base 5.0~git20130731 _ZTV14QAreaAllocator@Base 5.0~git20130731 _ZTV14QGLRenderState@Base 5.0~git20130731 _ZTV16QDownloadManager@Base 5.0~git20130731 _ZTV16QGLAbstractScene@Base 5.0~git20130731 _ZTV16QGLBezierPatches@Base 5.0~git20130731 _ZTV16QGLColorMaterial@Base 5.0~git20130731 _ZTV16QGLWindowSurface@Base 5.0~git20130731 _ZTV16QGraphicsScale3D@Base 5.0~git20130731 _ZTV17QGLAbstractEffect@Base 5.0~git20130731 _ZTV17QGLSceneAnimation@Base 5.0~git20130731 _ZTV18QGLAbstractSurface@Base 5.0~git20130731 _ZTV18QGLCameraAnimation@Base 5.0~git20130731 _ZTV18QGLColladaFxEffect@Base 5.0~git20130731 _ZTV18QGLLightParameters@Base 5.0~git20130731 _ZTV19QGLAbstractMaterial@Base 5.0~git20130731 _ZTV19QGLTwoSidedMaterial@Base 5.0~git20130731 _ZTV19QGraphicsRotation3D@Base 5.0~git20130731 _ZTV20QSimpleAreaAllocator@Base 5.0~git20130731 _ZTV21QGLMaterialCollection@Base 5.0~git20130731 _ZTV21QGLSceneFormatHandler@Base 5.0~git20130731 _ZTV21QGeneralAreaAllocator@Base 5.0~git20130731 _ZTV21QUniformAreaAllocator@Base 5.0~git20130731 _ZTV22QGLShaderProgramEffect@Base 5.0~git20130731 _ZTV22QGraphicsTranslation3D@Base 5.0~git20130731 _ZTV24QGLRenderOrderComparator@Base 5.0~git20130731 _ZTV26QQuickQGraphicsTransform3D@Base 5.0~git20130731 _ZTV27QGLFramebufferObjectSurface@Base 5.0~git20130731 _ZTV27QGraphicsBillboardTransform@Base 5.0~git20130731 _ZTV7QGLDome@Base 5.0~git20130731 _ZTV7QGLView@Base 5.0~git20130731 _ZTV9QGLCamera@Base 5.0~git20130731 _ZTV9QGLSphere@Base 5.0~git20130731 _ZTV9QGLTeapot@Base 5.0~git20130731 _Zls6QDebugRK11QGLMaterial@Base 5.0~git20130731 _Zls6QDebugRK11QTriangle3D@Base 5.0~git20130731 _Zls6QDebugRK12QGLSceneNode@Base 5.0~git20130731 _Zls6QDebugRK13QGeometryData@Base 5.0~git20130731 _Zls6QDebugRK14QGLRenderOrder@Base 5.0~git20130731 _Zls6QDebugRK14QGLRenderState@Base 5.0~git20130731 _Zls6QDebugRK16QCustomDataArray@Base 5.0~git20130731 _Zls6QDebugRK6QBox3D@Base 5.0~git20130731 _Zls6QDebugRK6QRay3D@Base 5.0~git20130731 _Zls6QDebugRK8QPlane3D@Base 5.0~git20130731 _Zls6QDebugRK9QColor4ub@Base 5.0~git20130731 _Zls6QDebugRK9QGLCamera@Base 5.0~git20130731 _Zls6QDebugRK9QSphere3D@Base 5.0~git20130731 _ZlsR10QGLBuilderRK11QGLCylinder@Base 5.0~git20130731 _ZlsR10QGLBuilderRK13QGeometryData@Base 5.0~git20130731 _ZlsR10QGLBuilderRK16QGLBezierPatches@Base 5.0~git20130731 _ZlsR10QGLBuilderRK7QGLCube@Base 5.0~git20130731 _ZlsR10QGLBuilderRK7QGLDome@Base 5.0~git20130731 _ZlsR10QGLBuilderRK9QGLSphere@Base 5.0~git20130731 _ZlsR10QGLBuilderRKN3QGL9SmoothingE@Base 5.0~git20130731 _ZlsR11QDataStreamRK11QTriangle3D@Base 5.0~git20130731 _ZlsR11QDataStreamRK6QBox3D@Base 5.0~git20130731 _ZlsR11QDataStreamRK6QRay3D@Base 5.0~git20130731 _ZlsR11QDataStreamRK8QPlane3D@Base 5.0~git20130731 _ZlsR11QDataStreamRK9QSphere3D@Base 5.0~git20130731 _ZrsR11QDataStreamR11QTriangle3D@Base 5.0~git20130731 _ZrsR11QDataStreamR6QBox3D@Base 5.0~git20130731 _ZrsR11QDataStreamR6QRay3D@Base 5.0~git20130731 _ZrsR11QDataStreamR8QPlane3D@Base 5.0~git20130731 _ZrsR11QDataStreamR9QSphere3D@Base 5.0~git20130731 (c++)"non-virtual thunk to QGLMockView::~QGLMockView()@Base" 5.0~git20130731 (c++)"non-virtual thunk to QGLView::~QGLView()@Base" 5.0~git20130731 libQt53DQuick.so.5 libqt53d5 #MINVER# | libqt53d5-gles #MINVER# _Z12q_get_qmldirRK7QStringS1_@Base 5.0~git20130731 _Z14q_quick3d_mainPKcS0_iPPc@Base 5.0~git20130731 _Z9qDumpItemP12QQuickItem3Dbi@Base 5.0~git20130731 _ZN10QQuickMesh10classBeginEv@Base 5.0~git20130731 _ZN10QQuickMesh10setOptionsERK7QString@Base 5.0~git20130731 _ZN10QQuickMesh11dataChangedEv@Base 5.0~git20130731 _ZN10QQuickMesh11nodeChangedEv@Base 5.0~git20130731 _ZN10QQuickMesh11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN10QQuickMesh11qt_metacastEPKc@Base 5.0~git20130731 _ZN10QQuickMesh11setDumpInfoEb@Base 5.0~git20130731 _ZN10QQuickMesh11setMeshNameERK7QString@Base 5.0~git20130731 _ZN10QQuickMesh13getAnimationsEv@Base 5.0~git20130731 _ZN10QQuickMesh14addSceneBranchEP12QGLSceneNodeP7QObject@Base 5.0~git20130731 _ZN10QQuickMesh14getSceneObjectERK7QString@Base 5.0~git20130731 _ZN10QQuickMesh14getSceneObjectEv@Base 5.0~git20130731 _ZN10QQuickMesh14initAnimationsEv@Base 5.0~git20130731 _ZN10QQuickMesh14optionsChangedEv@Base 5.0~git20130731 _ZN10QQuickMesh15dumpInfoChangedEv@Base 5.0~git20130731 _ZN10QQuickMesh16staticMetaObjectE@Base 5.0~git20130731 _ZN10QQuickMesh17animationsChangedEv@Base 5.0~git20130731 _ZN10QQuickMesh17componentCompleteEv@Base 5.0~git20130731 _ZN10QQuickMesh17createSceneBranchE7QString@Base 5.0~git20130731 _ZN10QQuickMesh18resetSceneBranchesEv@Base 5.0~git20130731 _ZN10QQuickMesh18restoreSceneBranchEi@Base 5.0~git20130731 _ZN10QQuickMesh19dataRequestFinishedEv@Base 5.0~git20130731 _ZN10QQuickMesh19getSceneObjectNamesEv@Base 5.0~git20130731 _ZN10QQuickMesh19initSceneObjectListEv@Base 5.0~git20130731 _ZN10QQuickMesh33openglContextIsAboutToBeDestroyedEv@Base 5.0~git20130731 _ZN10QQuickMesh3refEv@Base 5.0~git20130731 _ZN10QQuickMesh4drawEP10QGLPainteri@Base 5.0~git20130731 _ZN10QQuickMesh5derefEv@Base 5.0~git20130731 _ZN10QQuickMesh6loadedEv@Base 5.0~git20130731 _ZN10QQuickMesh8materialERK7QStringS2_@Base 5.0~git20130731 _ZN10QQuickMesh8setSceneEP16QGLAbstractScene@Base 5.0~git20130731 _ZN10QQuickMesh9setSourceERK4QUrl@Base 5.0~git20130731 _ZN10QQuickMeshC1EP7QObject@Base 5.0~git20130731 _ZN10QQuickMeshC2EP7QObject@Base 5.0~git20130731 _ZN10QQuickMeshD0Ev@Base 5.0~git20130731 _ZN10QQuickMeshD1Ev@Base 5.0~git20130731 _ZN10QQuickMeshD2Ev@Base 5.0~git20130731 _ZN10SphereMesh11axisChangedEv@Base 5.0~git20130731 _ZN10SphereMesh11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN10SphereMesh11qt_metacastEPKc@Base 5.0~git20130731 _ZN10SphereMesh13radiusChangedEv@Base 5.0~git20130731 _ZN10SphereMesh14createGeometryEv@Base 5.0~git20130731 _ZN10SphereMesh16setLevelOfDetailEi@Base 5.0~git20130731 _ZN10SphereMesh16staticMetaObjectE@Base 5.0~git20130731 _ZN10SphereMesh20levelOfDetailChangedEv@Base 5.0~git20130731 _ZN10SphereMesh4drawEP10QGLPainteri@Base 5.0~git20130731 _ZN10SphereMesh7setAxisEN2Qt4AxisE@Base 5.0~git20130731 _ZN10SphereMesh9setRadiusEf@Base 5.0~git20130731 _ZN10SphereMeshC1EP7QObject@Base 5.0~git20130731 _ZN10SphereMeshC2EP7QObject@Base 5.0~git20130731 _ZN10SphereMeshD0Ev@Base 5.0~git20130731 _ZN10SphereMeshD1Ev@Base 5.0~git20130731 _ZN10SphereMeshD2Ev@Base 5.0~git20130731 _ZN11CapsuleMesh11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN11CapsuleMesh11qt_metacastEPKc@Base 5.0~git20130731 _ZN11CapsuleMesh13lengthChangedEv@Base 5.0~git20130731 _ZN11CapsuleMesh13radiusChangedEv@Base 5.0~git20130731 _ZN11CapsuleMesh14createGeometryEb@Base 5.0~git20130731 _ZN11CapsuleMesh16setLevelOfDetailEi@Base 5.0~git20130731 _ZN11CapsuleMesh16staticMetaObjectE@Base 5.0~git20130731 _ZN11CapsuleMesh20levelOfDetailChangedEv@Base 5.0~git20130731 _ZN11CapsuleMesh4drawEP10QGLPainteri@Base 5.0~git20130731 _ZN11CapsuleMesh9setLengthEf@Base 5.0~git20130731 _ZN11CapsuleMesh9setRadiusEf@Base 5.0~git20130731 _ZN11CapsuleMeshC1EP7QObject@Base 5.0~git20130731 _ZN11CapsuleMeshC2EP7QObject@Base 5.0~git20130731 _ZN11CapsuleMeshD0Ev@Base 5.0~git20130731 _ZN11CapsuleMeshD1Ev@Base 5.0~git20130731 _ZN11CapsuleMeshD2Ev@Base 5.0~git20130731 _ZN12CylinderMesh11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN12CylinderMesh11qt_metacastEPKc@Base 5.0~git20130731 _ZN12CylinderMesh13lengthChangedEv@Base 5.0~git20130731 _ZN12CylinderMesh13radiusChangedEv@Base 5.0~git20130731 _ZN12CylinderMesh14createGeometryEv@Base 5.0~git20130731 _ZN12CylinderMesh16setLevelOfDetailEi@Base 5.0~git20130731 _ZN12CylinderMesh16staticMetaObjectE@Base 5.0~git20130731 _ZN12CylinderMesh20levelOfDetailChangedEv@Base 5.0~git20130731 _ZN12CylinderMesh4drawEP10QGLPainteri@Base 5.0~git20130731 _ZN12CylinderMesh9setLengthEf@Base 5.0~git20130731 _ZN12CylinderMesh9setRadiusEf@Base 5.0~git20130731 _ZN12CylinderMeshC1EP7QObject@Base 5.0~git20130731 _ZN12CylinderMeshC2EP7QObject@Base 5.0~git20130731 _ZN12CylinderMeshD0Ev@Base 5.0~git20130731 _ZN12CylinderMeshD1Ev@Base 5.0~git20130731 _ZN12CylinderMeshD2Ev@Base 5.0~git20130731 _ZN12QQuickEffect10setTextureERK4QUrl@Base 5.0~git20130731 _ZN12QQuickEffect11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN12QQuickEffect11qt_metacastEPKc@Base 5.0~git20130731 _ZN12QQuickEffect11setBlendingEb@Base 5.0~git20130731 _ZN12QQuickEffect11setMaterialEP11QGLMaterial@Base 5.0~git20130731 _ZN12QQuickEffect12enableEffectEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickEffect13disableEffectEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickEffect13effectChangedEv@Base 5.0~git20130731 _ZN12QQuickEffect14setUseLightingEb@Base 5.0~git20130731 _ZN12QQuickEffect15progressChangedEf@Base 5.0~git20130731 _ZN12QQuickEffect15setTextureImageERK6QImage@Base 5.0~git20130731 _ZN12QQuickEffect16staticMetaObjectE@Base 5.0~git20130731 _ZN12QQuickEffect33openglContextIsAboutToBeDestroyedEv@Base 5.0~git20130731 _ZN12QQuickEffect7applyToEP12QGLSceneNode@Base 5.0~git20130731 _ZN12QQuickEffect8progressEv@Base 5.0~git20130731 _ZN12QQuickEffect8setColorERK6QColor@Base 5.0~git20130731 _ZN12QQuickEffect8setDecalEb@Base 5.0~git20130731 _ZN12QQuickEffect9texture2DEv@Base 5.0~git20130731 _ZN12QQuickEffectC1EP7QObject@Base 5.0~git20130731 _ZN12QQuickEffectC2EP7QObject@Base 5.0~git20130731 _ZN12QQuickEffectD0Ev@Base 5.0~git20130731 _ZN12QQuickEffectD1Ev@Base 5.0~git20130731 _ZN12QQuickEffectD2Ev@Base 5.0~git20130731 _ZN12QQuickItem3D10animationsEv@Base 5.0~git20130731 _ZN12QQuickItem3D10hoverEnterEv@Base 5.0~git20130731 _ZN12QQuickItem3D10hoverLeaveEv@Base 5.0~git20130731 _ZN12QQuickItem3D10initializeEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickItem3D10setEnabledEb@Base 5.0~git20130731 _ZN12QQuickItem3D11meshChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN12QQuickItem3D11qt_metacastEPKc@Base 5.0~git20130731 _ZN12QQuickItem3D11setMeshNodeERK7QString@Base 5.0~git20130731 _ZN12QQuickItem3D11setPositionERK9QVector3D@Base 5.0~git20130731 _ZN12QQuickItem3D12drawChildrenEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickItem3D12lightChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D12pretransformEv@Base 5.0~git20130731 _ZN12QQuickItem3D12setCullFacesE6QFlagsINS_8CullFaceEE@Base 5.0~git20130731 _ZN12QQuickItem3D13doubleClickedEv@Base 5.0~git20130731 _ZN12QQuickItem3D13drawCullSetupEv@Base 5.0~git20130731 _ZN12QQuickItem3D13effectChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D14enabledChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D14scale3dChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D15drawCullCleanupEv@Base 5.0~git20130731 _ZN12QQuickItem3D15drawEffectSetupEP10QGLPainterRbS2_@Base 5.0~git20130731 _ZN12QQuickItem3D15meshNodeChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D15setSortChildrenENS_8SortModeE@Base 5.0~git20130731 _ZN12QQuickItem3D16setInheritEventsEb@Base 5.0~git20130731 _ZN12QQuickItem3D16staticMetaObjectE@Base 5.0~git20130731 _ZN12QQuickItem3D16updateAnimationsEv@Base 5.0~git20130731 _ZN12QQuickItem3D17animationsChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D17componentCompleteEv@Base 5.0~git20130731 _ZN12QQuickItem3D17drawEffectCleanupEP10QGLPainterRbS2_@Base 5.0~git20130731 _ZN12QQuickItem3D17drawLightingSetupEP10QGLPainterPK18QGLLightParametersR10QMatrix4x4@Base 5.0~git20130731 _ZN12QQuickItem3D17position3dChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D18drawTransformSetupEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickItem3D19drawLightingCleanupEP10QGLPainterPK18QGLLightParametersR10QMatrix4x4@Base 5.0~git20130731 _ZN12QQuickItem3D19handleEffectChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D19sortChildrenChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D20drawTransformCleanupEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickItem3D20inheritEventsChangedEv@Base 5.0~git20130731 _ZN12QQuickItem3D39handleOpenglContextIsAboutToBeDestroyedEv@Base 5.0~git20130731 _ZN12QQuickItem3D4dataEv@Base 5.0~git20130731 _ZN12QQuickItem3D4drawEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickItem3D4setXEf@Base 5.0~git20130731 _ZN12QQuickItem3D4setYEf@Base 5.0~git20130731 _ZN12QQuickItem3D4setZEf@Base 5.0~git20130731 _ZN12QQuickItem3D5eventEP6QEvent@Base 5.0~git20130731 _ZN12QQuickItem3D6updateEv@Base 5.0~git20130731 _ZN12QQuickItem3D7clickedEv@Base 5.0~git20130731 _ZN12QQuickItem3D7pressedEv@Base 5.0~git20130731 _ZN12QQuickItem3D7setMeshEP10QQuickMesh@Base 5.0~git20130731 _ZN12QQuickItem3D8drawItemEP10QGLPainter@Base 5.0~git20130731 _ZN12QQuickItem3D8releasedEv@Base 5.0~git20130731 _ZN12QQuickItem3D8setLightEP18QGLLightParameters@Base 5.0~git20130731 _ZN12QQuickItem3D8setScaleEf@Base 5.0~git20130731 _ZN12QQuickItem3D9resourcesEv@Base 5.0~git20130731 _ZN12QQuickItem3D9setEffectEP12QQuickEffect@Base 5.0~git20130731 _ZN12QQuickItem3D9transformEv@Base 5.0~git20130731 _ZN12QQuickItem3DC1EP7QObject@Base 5.0~git20130731 _ZN12QQuickItem3DC2EP7QObject@Base 5.0~git20130731 _ZN12QQuickItem3DD0Ev@Base 5.0~git20130731 _ZN12QQuickItem3DD1Ev@Base 5.0~git20130731 _ZN12QQuickItem3DD2Ev@Base 5.0~git20130731 _ZN14QQuickViewport15setItemViewportEP12QQuickItem3D@Base 5.0~git20130731 _ZN14QQuickViewportD0Ev@Base 5.0~git20130731 _ZN14QQuickViewportD1Ev@Base 5.0~git20130731 _ZN14QQuickViewportD2Ev@Base 5.0~git20130731 _ZN17QQuickAnimation3D11nameChangedEv@Base 5.0~git20130731 _ZN17QQuickAnimation3D11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN17QQuickAnimation3D11qt_metacastEPKc@Base 5.0~git20130731 _ZN17QQuickAnimation3D16staticMetaObjectE@Base 5.0~git20130731 _ZN17QQuickAnimation3DC1EP17QGLSceneAnimationP7QObject@Base 5.0~git20130731 _ZN17QQuickAnimation3DC1EP7QObject@Base 5.0~git20130731 _ZN17QQuickAnimation3DC2EP17QGLSceneAnimationP7QObject@Base 5.0~git20130731 _ZN17QQuickAnimation3DC2EP7QObject@Base 5.0~git20130731 _ZN17QQuickAnimation3DD0Ev@Base 5.0~git20130731 _ZN17QQuickAnimation3DD1Ev@Base 5.0~git20130731 _ZN17QQuickAnimation3DD2Ev@Base 5.0~git20130731 _ZN4Line11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN4Line11qt_metacastEPKc@Base 5.0~git20130731 _ZN4Line11setVerticesERK8QVariant@Base 5.0~git20130731 _ZN4Line12widthChangedEv@Base 5.0~git20130731 _ZN4Line15verticesChangedEv@Base 5.0~git20130731 _ZN4Line16staticMetaObjectE@Base 5.0~git20130731 _ZN4Line8drawItemEP10QGLPainter@Base 5.0~git20130731 _ZN4Line8setWidthEf@Base 5.0~git20130731 _ZN4LineC1EP7QObject@Base 5.0~git20130731 _ZN4LineC2EP7QObject@Base 5.0~git20130731 _ZN4LineD0Ev@Base 5.0~git20130731 _ZN4LineD1Ev@Base 5.0~git20130731 _ZN4LineD2Ev@Base 5.0~git20130731 _ZN5Point11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.0~git20130731 _ZN5Point11qt_metacastEPKc@Base 5.0~git20130731 _ZN5Point11setVerticesERK8QVariant@Base 5.0~git20130731 _ZN5Point12setPointSizeEf@Base 5.0~git20130731 _ZN5Point15verticesChangedEv@Base 5.0~git20130731 _ZN5Point16pointSizeChangedEv@Base 5.0~git20130731 _ZN5Point16staticMetaObjectE@Base 5.0~git20130731 _ZN5Point8drawItemEP10QGLPainter@Base 5.0~git20130731 _ZN5PointC1EP7QObject@Base 5.0~git20130731 _ZN5PointC2EP7QObject@Base 5.0~git20130731 _ZN5PointD0Ev@Base 5.0~git20130731 _ZN5PointD1Ev@Base 5.0~git20130731 _ZN5PointD2Ev@Base 5.0~git20130731 _ZNK10QQuickMesh10metaObjectEv@Base 5.0~git20130731 _ZNK10QQuickMesh14getSceneBranchEi@Base 5.0~git20130731 _ZNK10QQuickMesh17nextSceneBranchIdEv@Base 5.0~git20130731 _ZNK10QQuickMesh6sourceEv@Base 5.0~git20130731 _ZNK10QQuickMesh7optionsEv@Base 5.0~git20130731 _ZNK10QQuickMesh8dumpInfoEv@Base 5.0~git20130731 _ZNK10QQuickMesh8meshNameEv@Base 5.0~git20130731 _ZNK10SphereMesh10metaObjectEv@Base 5.0~git20130731 _ZNK10SphereMesh13levelOfDetailEv@Base 5.0~git20130731 _ZNK10SphereMesh4axisEv@Base 5.0~git20130731 _ZNK10SphereMesh6radiusEv@Base 5.0~git20130731 _ZNK11CapsuleMesh10metaObjectEv@Base 5.0~git20130731 _ZNK11CapsuleMesh13levelOfDetailEv@Base 5.0~git20130731 _ZNK11CapsuleMesh6lengthEv@Base 5.0~git20130731 _ZNK11CapsuleMesh6radiusEv@Base 5.0~git20130731 _ZNK12CylinderMesh10metaObjectEv@Base 5.0~git20130731 _ZNK12CylinderMesh13levelOfDetailEv@Base 5.0~git20130731 _ZNK12CylinderMesh6lengthEv@Base 5.0~git20130731 _ZNK12CylinderMesh6radiusEv@Base 5.0~git20130731 _ZNK12QQuickEffect10metaObjectEv@Base 5.0~git20130731 _ZNK12QQuickEffect11useLightingEv@Base 5.0~git20130731 _ZNK12QQuickEffect12textureImageEv@Base 5.0~git20130731 _ZNK12QQuickEffect5colorEv@Base 5.0~git20130731 _ZNK12QQuickEffect5decalEv@Base 5.0~git20130731 _ZNK12QQuickEffect7textureEv@Base 5.0~git20130731 _ZNK12QQuickEffect8blendingEv@Base 5.0~git20130731 _ZNK12QQuickEffect8materialEv@Base 5.0~git20130731 _ZNK12QQuickItem3D10metaObjectEv@Base 5.0~git20130731 _ZNK12QQuickItem3D12localToWorldERK9QVector3D@Base 5.0~git20130731 _ZNK12QQuickItem3D12objectPickIdEv@Base 5.0~git20130731 _ZNK12QQuickItem3D12sortChildrenEv@Base 5.0~git20130731 _ZNK12QQuickItem3D12worldToLocalERK9QVector3D@Base 5.0~git20130731 _ZNK12QQuickItem3D13inheritEventsEv@Base 5.0~git20130731 _ZNK12QQuickItem3D13isInitializedEv@Base 5.0~git20130731 _ZNK12QQuickItem3D1xEv@Base 5.0~git20130731 _ZNK12QQuickItem3D1yEv@Base 5.0~git20130731 _ZNK12QQuickItem3D1zEv@Base 5.0~git20130731 _ZNK12QQuickItem3D4meshEv@Base 5.0~git20130731 _ZNK12QQuickItem3D5lightEv@Base 5.0~git20130731 _ZNK12QQuickItem3D5scaleEv@Base 5.0~git20130731 _ZNK12QQuickItem3D6effectEv@Base 5.0~git20130731 _ZNK12QQuickItem3D8meshNodeEv@Base 5.0~git20130731 _ZNK12QQuickItem3D8positionEv@Base 5.0~git20130731 _ZNK12QQuickItem3D9cullFacesEv@Base 5.0~git20130731 _ZNK12QQuickItem3D9isEnabledEv@Base 5.0~git20130731 _ZNK17QQuickAnimation3D10metaObjectEv@Base 5.0~git20130731 _ZNK17QQuickAnimation3D4nameEv@Base 5.0~git20130731 _ZNK4Line10metaObjectEv@Base 5.0~git20130731 _ZNK4Line8verticesEv@Base 5.0~git20130731 _ZNK5Point10metaObjectEv@Base 5.0~git20130731 _ZNK5Point8verticesEv@Base 5.0~git20130731 _ZTI10QQuickMesh@Base 5.0~git20130731 _ZTI10SphereMesh@Base 5.0~git20130731 _ZTI11CapsuleMesh@Base 5.0~git20130731 _ZTI12CylinderMesh@Base 5.0~git20130731 _ZTI12QQuickEffect@Base 5.0~git20130731 _ZTI12QQuickItem3D@Base 5.0~git20130731 _ZTI14QQuickViewport@Base 5.0~git20130731 _ZTI17QQuickAnimation3D@Base 5.0~git20130731 _ZTI4Line@Base 5.0~git20130731 _ZTI5Point@Base 5.0~git20130731 _ZTS10QQuickMesh@Base 5.0~git20130731 _ZTS10SphereMesh@Base 5.0~git20130731 _ZTS11CapsuleMesh@Base 5.0~git20130731 _ZTS12CylinderMesh@Base 5.0~git20130731 _ZTS12QQuickEffect@Base 5.0~git20130731 _ZTS12QQuickItem3D@Base 5.0~git20130731 _ZTS14QQuickViewport@Base 5.0~git20130731 _ZTS17QQuickAnimation3D@Base 5.0~git20130731 _ZTS4Line@Base 5.0~git20130731 _ZTS5Point@Base 5.0~git20130731 _ZTV10QQuickMesh@Base 5.0~git20130731 _ZTV10SphereMesh@Base 5.0~git20130731 _ZTV11CapsuleMesh@Base 5.0~git20130731 _ZTV12CylinderMesh@Base 5.0~git20130731 _ZTV12QQuickEffect@Base 5.0~git20130731 _ZTV12QQuickItem3D@Base 5.0~git20130731 _ZTV14QQuickViewport@Base 5.0~git20130731 _ZTV17QQuickAnimation3D@Base 5.0~git20130731 _ZTV4Line@Base 5.0~git20130731 _ZTV5Point@Base 5.0~git20130731 (c++)"non-virtual thunk to CapsuleMesh::~CapsuleMesh()@Base" 5.0~git20130731 (c++)"non-virtual thunk to CylinderMesh::~CylinderMesh()@Base" 5.0~git20130731 (c++)"non-virtual thunk to Line::~Line()@Base" 5.0~git20130731 (c++)"non-virtual thunk to Point::~Point()@Base" 5.0~git20130731 (c++)"non-virtual thunk to QQuickItem3D::componentComplete()@Base" 5.0~git20130731 (c++)"non-virtual thunk to QQuickItem3D::~QQuickItem3D()@Base" 5.0~git20130731 (c++)"non-virtual thunk to QQuickMesh::classBegin()@Base" 5.0~git20130731 (c++)"non-virtual thunk to QQuickMesh::componentComplete()@Base" 5.0~git20130731 (c++)"non-virtual thunk to QQuickMesh::~QQuickMesh()@Base" 5.0~git20130731 (c++)"non-virtual thunk to SphereMesh::~SphereMesh()@Base" 5.0~git20130731 debian/changelog0000664000000000000000000000524412321450420011040 0ustar qt3d-opensource-src (5.0~git20130731-0ubuntu5) trusty; urgency=medium * libqt53d5.symbols: updating symbols and adding adding dep alternative for the version compatible with OpenGLES (provided by another src pkg) -- Ricardo Salveti de Araujo Thu, 10 Apr 2014 05:06:25 -0300 qt3d-opensource-src (5.0~git20130731-0ubuntu4) trusty; urgency=medium * Run tests only on archs known to pass in the past -- Timo Jyrinki Fri, 14 Mar 2014 11:51:29 +0000 qt3d-opensource-src (5.0~git20130731-0ubuntu3) trusty; urgency=medium * Backport upstream patch to fix build on “uncommon” architectures. -- Dmitry Shachnev Fri, 14 Mar 2014 09:15:26 +0400 qt3d-opensource-src (5.0~git20130731-0ubuntu2) trusty; urgency=medium [ Timo Jyrinki ] * Rebuild against Qt 5.2.1, bump dependencies * Use QT_SELECT instead of depending on qt5-default * Use 'mkdir .git' to trigger header build for the snapshot release [ Allan LeSage ] * Add tests to QT_BUILD_PARTS. (LP: #1193370) * Depend on xvfb for existing tests requiring a display. * Add dh_override_auto_test to dh_auto_test under xvfb-run. * debian/patches/skip_failing_tests.patch - Skip some failing tests pending investigation. * Depend on xauth, needed in some configurations. -- Timo Jyrinki Fri, 28 Feb 2014 09:00:49 +0000 qt3d-opensource-src (5.0~git20130731-0ubuntu1) saucy; urgency=low * New upstream snapshot release * Improve override_dh_auto_install, use --fail-missing * Drop patches: - add_GPL_license_file.patch, merged upstream - add_module_version.patch, added upstream - disable_conflicting_examples.patch, not needed anymore * Refresh link_against_system_zlib.patch * Add bug link to workaround_zlib_linking_issue.patch -- Timo Jyrinki Fri, 02 Aug 2013 11:10:16 +0300 qt3d-opensource-src (5.0~git20130109-0ubuntu3) saucy; urgency=low * debian/patches/add_module_version.patch: - Add a module version to fix FTBFS -- Didier Roche Fri, 21 Jun 2013 17:59:14 +0200 qt3d-opensource-src (5.0~git20130109-0ubuntu2) raring; urgency=low [ Timo Jyrinki ] * Fix pkgconfig Libs.private path (LP: #1125156) * debian/patches/workaround_zlib_linking_issue.patch: - Fix FTBFS [ Didier Roche ] * Fixed some small copyright issues -- Didier Roche Fri, 15 Feb 2013 12:52:28 +0100 qt3d-opensource-src (5.0~git20130109-0ubuntu1) raring; urgency=low * Initial release * Cherry-pick from upstream: - add_license_files.patch -- Timo Jyrinki Tue, 22 Jan 2013 14:32:08 +0200