├── .gitignore ├── CMakeLists.txt ├── NOTES ├── README.md ├── game ├── CMakeLists.txt ├── db.h ├── game.cpp ├── game.h ├── game_db.h ├── main.cpp ├── particles_3d.h ├── render_3d.cpp └── render_3d.h ├── include └── glpp │ ├── angle_ext.h │ ├── assets.h │ ├── gl2.h │ ├── gl2 │ ├── commands.h │ ├── enums.h │ ├── extensions_enums.h │ └── osx │ │ └── extensions.h │ ├── gles2.h │ ├── gles2 │ ├── angle │ │ └── extensions.h │ ├── commands.h │ ├── enums.h │ └── extensions_enums.h │ ├── glpp.h │ ├── imconfig.h │ ├── imgui.h │ ├── input.h │ ├── scene.h │ ├── types.h │ ├── ui.h │ └── utils.h ├── res ├── bg_green.png ├── blank-1x1.png ├── boxes-anim.blend ├── boxes-anim.fbx ├── campfire.blend ├── campfire.fbx ├── dude-anim-stand.blend ├── dude-anim-walk.blend ├── dude-anim.blend ├── dude-anim.fbx ├── dude-walk.png ├── ground-64x64.png ├── ground-dark-64x64.png ├── landscape.blend ├── rain.png ├── shaders │ ├── 2d.frag │ ├── 2d.vert │ ├── 3d.frag │ ├── 3d.vert │ ├── 3d_particle.frag │ ├── 3d_particle.vert │ ├── 3d_shadow_dir.frag │ ├── 3d_shadow_dir.vert │ ├── 3d_shadow_pos.frag │ ├── 3d_shadow_pos.vert │ ├── post.frag │ ├── post.vert │ ├── prime.frag │ ├── prime.vert │ ├── sprite.frag │ ├── sprite.vert │ ├── test2d.frag │ ├── test2d.vert │ ├── ui.frag │ └── ui.vert ├── sprites.png ├── test-100x100.png ├── trees.blend ├── trees.fbx ├── weapons.blend └── weapons.fbx ├── src ├── gl2 │ ├── CMakeLists.txt │ ├── commands.cpp │ ├── gl2.cpp │ └── osx │ │ └── extensions.cpp ├── gles2 │ ├── CMakeLists.txt │ ├── angle │ │ └── extensions.cpp │ ├── angle_ext.cpp │ ├── commands.cpp │ └── gles2.cpp ├── glew │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c └── glpp │ ├── CMakeLists.txt │ ├── assets.cpp │ ├── detail │ ├── ai_helpers.cpp │ ├── ai_helpers.h │ ├── ai_structures.cpp │ ├── ai_structures.h │ ├── imgui │ │ ├── imgui.cpp │ │ ├── stb_rect_pack.h │ │ ├── stb_textedit.h │ │ └── stb_truetype.h │ └── stb │ │ └── stb_easy_font.h │ ├── glpp.cpp │ ├── input.cpp │ ├── scene.cpp │ ├── ui.cpp │ └── utils.cpp ├── testbed ├── CMakeLists.txt ├── buffer_demo.cpp ├── instanced_demo.cpp ├── main.cpp ├── text_demo.cpp ├── texture_batches_demo.cpp ├── triangle_demo.cpp └── ui_demo.cpp └── thirdparty ├── CMakeLists.txt ├── angle ├── CMakeLists.txt ├── bin │ ├── Debug │ │ ├── d3dcompiler_47.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ └── Release │ │ ├── d3dcompiler_47.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll ├── include │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ ├── GLES3 │ │ ├── gl3.h │ │ ├── gl3ext.h │ │ └── gl3platform.h │ ├── GLSLANG │ │ ├── ShaderLang.h │ │ └── ShaderVars.h │ ├── KHR │ │ └── khrplatform.h │ ├── angle_gl.h │ ├── angle_windowsstore.h │ ├── export.h │ └── platform │ │ └── Platform.h └── lib │ ├── Debug │ ├── libEGL.lib │ └── libGLESv2.lib │ └── Release │ ├── libEGL.lib │ └── libGLESv2.lib ├── assimp-3.1.1 ├── AssimpBuildTreeSettings.cmake.in ├── AssimpConfig.cmake.in ├── AssimpConfigVersion.cmake.in ├── CHANGES ├── CMakeLists.txt ├── CREDITS ├── INSTALL ├── LICENSE ├── README ├── Readme.md ├── assimp-config-version.cmake.in ├── assimp-config.cmake.in ├── assimp.pc.in ├── cmake-modules │ ├── DebSourcePPA.cmake │ ├── FindDirectX.cmake │ ├── FindPkgMacros.cmake │ ├── FindZLIB.cmake │ ├── Findassimp.cmake │ ├── PrecompiledHeader.cmake │ └── cmake_uninstall.cmake.in ├── code │ ├── 3DSConverter.cpp │ ├── 3DSHelper.h │ ├── 3DSLoader.cpp │ ├── 3DSLoader.h │ ├── ACLoader.cpp │ ├── ACLoader.h │ ├── ASELoader.cpp │ ├── ASELoader.h │ ├── ASEParser.cpp │ ├── ASEParser.h │ ├── Assimp.cpp │ ├── AssimpCExport.cpp │ ├── AssimpPCH.cpp │ ├── AssimpPCH.h │ ├── B3DImporter.cpp │ ├── B3DImporter.h │ ├── BVHLoader.cpp │ ├── BVHLoader.h │ ├── BaseImporter.cpp │ ├── BaseImporter.h │ ├── BaseProcess.cpp │ ├── BaseProcess.h │ ├── Bitmap.cpp │ ├── Bitmap.h │ ├── BlenderBMesh.cpp │ ├── BlenderBMesh.h │ ├── BlenderDNA.cpp │ ├── BlenderDNA.h │ ├── BlenderDNA.inl │ ├── BlenderIntermediate.h │ ├── BlenderLoader.cpp │ ├── BlenderLoader.h │ ├── BlenderModifier.cpp │ ├── BlenderModifier.h │ ├── BlenderScene.cpp │ ├── BlenderScene.h │ ├── BlenderSceneGen.h │ ├── BlenderTessellator.cpp │ ├── BlenderTessellator.h │ ├── BlobIOSystem.h │ ├── BoostWorkaround │ │ └── boost │ │ │ ├── LICENSE_1_0.txt │ │ │ ├── foreach.hpp │ │ │ ├── format.hpp │ │ │ ├── lexical_cast.hpp │ │ │ ├── make_shared.hpp │ │ │ ├── math │ │ │ └── common_factor_rt.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── pointer_cast.hpp │ │ │ ├── scoped_array.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── shared_array.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── static_assert.hpp │ │ │ ├── timer.hpp │ │ │ └── tuple │ │ │ └── tuple.hpp │ ├── ByteSwap.h │ ├── CInterfaceIOWrapper.h │ ├── CMakeLists.txt │ ├── COBLoader.cpp │ ├── COBLoader.h │ ├── COBScene.h │ ├── CSMLoader.cpp │ ├── CSMLoader.h │ ├── CalcTangentsProcess.cpp │ ├── CalcTangentsProcess.h │ ├── ColladaExporter.cpp │ ├── ColladaExporter.h │ ├── ColladaHelper.h │ ├── ColladaLoader.cpp │ ├── ColladaLoader.h │ ├── ColladaParser.cpp │ ├── ColladaParser.h │ ├── ComputeUVMappingProcess.cpp │ ├── ComputeUVMappingProcess.h │ ├── ConvertToLHProcess.cpp │ ├── ConvertToLHProcess.h │ ├── DXFHelper.h │ ├── DXFLoader.cpp │ ├── DXFLoader.h │ ├── DeboneProcess.cpp │ ├── DeboneProcess.h │ ├── DefaultIOStream.cpp │ ├── DefaultIOStream.h │ ├── DefaultIOSystem.cpp │ ├── DefaultIOSystem.h │ ├── DefaultLogger.cpp │ ├── DefaultProgressHandler.h │ ├── Exceptional.h │ ├── Exporter.cpp │ ├── FBXAnimation.cpp │ ├── FBXBinaryTokenizer.cpp │ ├── FBXCompileConfig.h │ ├── FBXConverter.cpp │ ├── FBXConverter.h │ ├── FBXDeformer.cpp │ ├── FBXDocument.cpp │ ├── FBXDocument.h │ ├── FBXDocumentUtil.cpp │ ├── FBXDocumentUtil.h │ ├── FBXImportSettings.h │ ├── FBXImporter.cpp │ ├── FBXImporter.h │ ├── FBXMaterial.cpp │ ├── FBXMeshGeometry.cpp │ ├── FBXModel.cpp │ ├── FBXNodeAttribute.cpp │ ├── FBXParser.cpp │ ├── FBXParser.h │ ├── FBXProperties.cpp │ ├── FBXProperties.h │ ├── FBXTokenizer.cpp │ ├── FBXTokenizer.h │ ├── FBXUtil.cpp │ ├── FBXUtil.h │ ├── FileLogStream.h │ ├── FileSystemFilter.h │ ├── FindDegenerates.cpp │ ├── FindDegenerates.h │ ├── FindInstancesProcess.cpp │ ├── FindInstancesProcess.h │ ├── FindInvalidDataProcess.cpp │ ├── FindInvalidDataProcess.h │ ├── FixNormalsStep.cpp │ ├── FixNormalsStep.h │ ├── GenFaceNormalsProcess.cpp │ ├── GenFaceNormalsProcess.h │ ├── GenVertexNormalsProcess.cpp │ ├── GenVertexNormalsProcess.h │ ├── GenericProperty.h │ ├── HMPFileData.h │ ├── HMPLoader.cpp │ ├── HMPLoader.h │ ├── HalfLifeFileData.h │ ├── Hash.h │ ├── IFCBoolean.cpp │ ├── IFCCurve.cpp │ ├── IFCGeometry.cpp │ ├── IFCLoader.cpp │ ├── IFCLoader.h │ ├── IFCMaterial.cpp │ ├── IFCOpenings.cpp │ ├── IFCProfile.cpp │ ├── IFCReaderGen.cpp │ ├── IFCReaderGen.h │ ├── IFCUtil.cpp │ ├── IFCUtil.h │ ├── IFF.h │ ├── IRRLoader.cpp │ ├── IRRLoader.h │ ├── IRRMeshLoader.cpp │ ├── IRRMeshLoader.h │ ├── IRRShared.cpp │ ├── IRRShared.h │ ├── Importer.cpp │ ├── Importer.h │ ├── ImporterRegistry.cpp │ ├── ImproveCacheLocality.cpp │ ├── ImproveCacheLocality.h │ ├── JoinVerticesProcess.cpp │ ├── JoinVerticesProcess.h │ ├── LWOAnimation.cpp │ ├── LWOAnimation.h │ ├── LWOBLoader.cpp │ ├── LWOFileData.h │ ├── LWOLoader.cpp │ ├── LWOLoader.h │ ├── LWOMaterial.cpp │ ├── LWSLoader.cpp │ ├── LWSLoader.h │ ├── LimitBoneWeightsProcess.cpp │ ├── LimitBoneWeightsProcess.h │ ├── LineSplitter.h │ ├── LogAux.h │ ├── MD2FileData.h │ ├── MD2Loader.cpp │ ├── MD2Loader.h │ ├── MD2NormalTable.h │ ├── MD3FileData.h │ ├── MD3Loader.cpp │ ├── MD3Loader.h │ ├── MD4FileData.h │ ├── MD5Loader.cpp │ ├── MD5Loader.h │ ├── MD5Parser.cpp │ ├── MD5Parser.h │ ├── MDCFileData.h │ ├── MDCLoader.cpp │ ├── MDCLoader.h │ ├── MDCNormalTable.h │ ├── MDLDefaultColorMap.h │ ├── MDLFileData.h │ ├── MDLLoader.cpp │ ├── MDLLoader.h │ ├── MDLMaterialLoader.cpp │ ├── MS3DLoader.cpp │ ├── MS3DLoader.h │ ├── MakeVerboseFormat.cpp │ ├── MakeVerboseFormat.h │ ├── MaterialSystem.cpp │ ├── MaterialSystem.h │ ├── MemoryIOWrapper.h │ ├── NDOLoader.cpp │ ├── NDOLoader.h │ ├── NFFLoader.cpp │ ├── NFFLoader.h │ ├── OFFLoader.cpp │ ├── OFFLoader.h │ ├── ObjExporter.cpp │ ├── ObjExporter.h │ ├── ObjFileData.h │ ├── ObjFileImporter.cpp │ ├── ObjFileImporter.h │ ├── ObjFileMtlImporter.cpp │ ├── ObjFileMtlImporter.h │ ├── ObjFileParser.cpp │ ├── ObjFileParser.h │ ├── ObjTools.h │ ├── OgreBinarySerializer.cpp │ ├── OgreBinarySerializer.h │ ├── OgreImporter.cpp │ ├── OgreImporter.h │ ├── OgreMaterial.cpp │ ├── OgreParsingUtils.h │ ├── OgreStructs.cpp │ ├── OgreStructs.h │ ├── OgreXmlSerializer.cpp │ ├── OgreXmlSerializer.h │ ├── OptimizeGraph.cpp │ ├── OptimizeGraph.h │ ├── OptimizeMeshes.cpp │ ├── OptimizeMeshes.h │ ├── ParsingUtils.h │ ├── PlyExporter.cpp │ ├── PlyExporter.h │ ├── PlyLoader.cpp │ ├── PlyLoader.h │ ├── PlyParser.cpp │ ├── PlyParser.h │ ├── PolyTools.h │ ├── PostStepRegistry.cpp │ ├── PretransformVertices.cpp │ ├── PretransformVertices.h │ ├── ProcessHelper.cpp │ ├── ProcessHelper.h │ ├── Profiler.h │ ├── Q3BSPFileData.h │ ├── Q3BSPFileImporter.cpp │ ├── Q3BSPFileImporter.h │ ├── Q3BSPFileParser.cpp │ ├── Q3BSPFileParser.h │ ├── Q3BSPZipArchive.cpp │ ├── Q3BSPZipArchive.h │ ├── Q3DLoader.cpp │ ├── Q3DLoader.h │ ├── RawLoader.cpp │ ├── RawLoader.h │ ├── RemoveComments.cpp │ ├── RemoveComments.h │ ├── RemoveRedundantMaterials.cpp │ ├── RemoveRedundantMaterials.h │ ├── RemoveVCProcess.cpp │ ├── RemoveVCProcess.h │ ├── SGSpatialSort.cpp │ ├── SGSpatialSort.h │ ├── SMDLoader.cpp │ ├── SMDLoader.h │ ├── STEPFile.h │ ├── STEPFileEncoding.cpp │ ├── STEPFileEncoding.h │ ├── STEPFileReader.cpp │ ├── STEPFileReader.h │ ├── STLExporter.cpp │ ├── STLExporter.h │ ├── STLLoader.cpp │ ├── STLLoader.h │ ├── SceneCombiner.cpp │ ├── SceneCombiner.h │ ├── ScenePreprocessor.cpp │ ├── ScenePreprocessor.h │ ├── ScenePrivate.h │ ├── SkeletonMeshBuilder.cpp │ ├── SkeletonMeshBuilder.h │ ├── SmoothingGroups.h │ ├── SmoothingGroups.inl │ ├── SortByPTypeProcess.cpp │ ├── SortByPTypeProcess.h │ ├── SpatialSort.cpp │ ├── SpatialSort.h │ ├── SplitByBoneCountProcess.cpp │ ├── SplitByBoneCountProcess.h │ ├── SplitLargeMeshes.cpp │ ├── SplitLargeMeshes.h │ ├── StandardShapes.cpp │ ├── StandardShapes.h │ ├── StdOStreamLogStream.h │ ├── StreamReader.h │ ├── StringComparison.h │ ├── Subdivision.cpp │ ├── Subdivision.h │ ├── TargetAnimation.cpp │ ├── TargetAnimation.h │ ├── TerragenLoader.cpp │ ├── TerragenLoader.h │ ├── TextureTransform.cpp │ ├── TextureTransform.h │ ├── TinyFormatter.h │ ├── TriangulateProcess.cpp │ ├── TriangulateProcess.h │ ├── UnrealLoader.cpp │ ├── UnrealLoader.h │ ├── ValidateDataStructure.cpp │ ├── ValidateDataStructure.h │ ├── Vertex.h │ ├── VertexTriangleAdjacency.cpp │ ├── VertexTriangleAdjacency.h │ ├── Win32DebugLogStream.h │ ├── XFileHelper.h │ ├── XFileImporter.cpp │ ├── XFileImporter.h │ ├── XFileParser.cpp │ ├── XFileParser.h │ ├── XGLLoader.cpp │ ├── XGLLoader.h │ ├── assbin_chunks.h │ ├── fast_atof.h │ ├── irrXMLWrapper.h │ ├── makefile.mingw │ ├── qnan.h │ └── res │ │ ├── assimp.rc │ │ └── resource.h ├── contrib │ ├── ConvertUTF │ │ ├── ConvertUTF.c │ │ ├── ConvertUTF.h │ │ └── readme.txt │ ├── clipper │ │ ├── License.txt │ │ ├── clipper.cpp │ │ └── clipper.hpp │ ├── cppunit-1.12.1 │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── CodingGuideLines.txt │ │ ├── INSTALL │ │ ├── INSTALL-WIN32.txt │ │ ├── INSTALL-unix │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── THANKS │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── config │ │ │ ├── ac_create_prefix_config_h.m4 │ │ │ ├── ac_cxx_have_sstream.m4 │ │ │ ├── ac_cxx_have_strstream.m4 │ │ │ ├── ac_cxx_namespaces.m4 │ │ │ ├── ac_cxx_rtti.m4 │ │ │ ├── ac_cxx_string_compare_string_first.m4 │ │ │ ├── ac_dll.m4 │ │ │ ├── ax_cxx_gcc_abi_demangle.m4 │ │ │ ├── ax_cxx_have_isfinite.m4 │ │ │ ├── bb_enable_doxygen.m4 │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ ├── configure │ │ ├── configure.in │ │ ├── contrib │ │ │ ├── bc5 │ │ │ │ └── bcc-makefile.zip │ │ │ ├── msvc │ │ │ │ ├── AddingUnitTestMethod.dsm │ │ │ │ ├── CppUnit.WWTpl │ │ │ │ └── readme.txt │ │ │ └── xml-xsl │ │ │ │ ├── report.xsl │ │ │ │ └── tests.xml │ │ ├── cppunit-config.1 │ │ ├── cppunit-config.in │ │ ├── cppunit.m4 │ │ ├── cppunit.pc.in │ │ ├── cppunit.spec │ │ ├── cppunit.spec.in │ │ ├── doc │ │ │ ├── Doxyfile.in │ │ │ ├── FAQ │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Money.dox │ │ │ ├── cookbook.dox │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── other_documentation.dox │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── cppunit │ │ │ │ ├── AdditionalMessage.h │ │ │ │ ├── Asserter.h │ │ │ │ ├── BriefTestProgressListener.h │ │ │ │ ├── CompilerOutputter.h │ │ │ │ ├── Exception.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Message.h │ │ │ │ ├── Outputter.h │ │ │ │ ├── Portability.h │ │ │ │ ├── Protector.h │ │ │ │ ├── SourceLine.h │ │ │ │ ├── SynchronizedObject.h │ │ │ │ ├── Test.h │ │ │ │ ├── TestAssert.h │ │ │ │ ├── TestCaller.h │ │ │ │ ├── TestCase.h │ │ │ │ ├── TestComposite.h │ │ │ │ ├── TestFailure.h │ │ │ │ ├── TestFixture.h │ │ │ │ ├── TestLeaf.h │ │ │ │ ├── TestListener.h │ │ │ │ ├── TestPath.h │ │ │ │ ├── TestResult.h │ │ │ │ ├── TestResultCollector.h │ │ │ │ ├── TestRunner.h │ │ │ │ ├── TestSuccessListener.h │ │ │ │ ├── TestSuite.h │ │ │ │ ├── TextOutputter.h │ │ │ │ ├── TextTestProgressListener.h │ │ │ │ ├── TextTestResult.h │ │ │ │ ├── TextTestRunner.h │ │ │ │ ├── XmlOutputter.h │ │ │ │ ├── XmlOutputterHook.h │ │ │ │ ├── config │ │ │ │ ├── CppUnitApi.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── SelectDllLoader.h │ │ │ │ ├── SourcePrefix.h │ │ │ │ ├── config-bcb5.h │ │ │ │ ├── config-evc4.h │ │ │ │ ├── config-mac.h │ │ │ │ └── config-msvc6.h │ │ │ │ ├── extensions │ │ │ │ ├── AutoRegisterSuite.h │ │ │ │ ├── ExceptionTestCaseDecorator.h │ │ │ │ ├── HelperMacros.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Orthodox.h │ │ │ │ ├── RepeatedTest.h │ │ │ │ ├── TestCaseDecorator.h │ │ │ │ ├── TestDecorator.h │ │ │ │ ├── TestFactory.h │ │ │ │ ├── TestFactoryRegistry.h │ │ │ │ ├── TestFixtureFactory.h │ │ │ │ ├── TestNamer.h │ │ │ │ ├── TestSetUp.h │ │ │ │ ├── TestSuiteBuilderContext.h │ │ │ │ ├── TestSuiteFactory.h │ │ │ │ └── TypeInfoHelper.h │ │ │ │ ├── plugin │ │ │ │ ├── DynamicLibraryManager.h │ │ │ │ ├── DynamicLibraryManagerException.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── PlugInManager.h │ │ │ │ ├── PlugInParameters.h │ │ │ │ ├── TestPlugIn.h │ │ │ │ └── TestPlugInDefaultImpl.h │ │ │ │ ├── portability │ │ │ │ ├── CppUnitDeque.h │ │ │ │ ├── CppUnitMap.h │ │ │ │ ├── CppUnitSet.h │ │ │ │ ├── CppUnitStack.h │ │ │ │ ├── CppUnitVector.h │ │ │ │ ├── FloatingPoint.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── Stream.h │ │ │ │ ├── tools │ │ │ │ ├── Algorithm.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── StringTools.h │ │ │ │ ├── XmlDocument.h │ │ │ │ └── XmlElement.h │ │ │ │ └── ui │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── mfc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── MfcTestRunner.h │ │ │ │ └── TestRunner.h │ │ │ │ ├── qt │ │ │ │ ├── Config.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── QtTestRunner.h │ │ │ │ └── TestRunner.h │ │ │ │ └── text │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── TestRunner.h │ │ │ │ └── TextTestRunner.h │ │ └── src │ │ │ ├── CppUnitLibraries.sln │ │ │ ├── CppUnitLibrariesVC9.sln │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── cppunit │ │ │ ├── AdditionalMessage.cpp │ │ │ ├── Asserter.cpp │ │ │ ├── BeOsDynamicLibraryManager.cpp │ │ │ ├── BriefTestProgressListener.cpp │ │ │ ├── CompilerOutputter.cpp │ │ │ ├── DefaultProtector.cpp │ │ │ ├── DefaultProtector.h │ │ │ ├── DllMain.cpp │ │ │ ├── DynamicLibraryManager.cpp │ │ │ ├── DynamicLibraryManagerException.cpp │ │ │ ├── Exception.cpp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Message.cpp │ │ │ ├── PlugInManager.cpp │ │ │ ├── PlugInParameters.cpp │ │ │ ├── Protector.cpp │ │ │ ├── ProtectorChain.cpp │ │ │ ├── ProtectorChain.h │ │ │ ├── ProtectorContext.h │ │ │ ├── RepeatedTest.cpp │ │ │ ├── ShlDynamicLibraryManager.cpp │ │ │ ├── SourceLine.cpp │ │ │ ├── StringTools.cpp │ │ │ ├── SynchronizedObject.cpp │ │ │ ├── Test.cpp │ │ │ ├── TestAssert.cpp │ │ │ ├── TestCase.cpp │ │ │ ├── TestCaseDecorator.cpp │ │ │ ├── TestComposite.cpp │ │ │ ├── TestDecorator.cpp │ │ │ ├── TestFactoryRegistry.cpp │ │ │ ├── TestFailure.cpp │ │ │ ├── TestLeaf.cpp │ │ │ ├── TestNamer.cpp │ │ │ ├── TestPath.cpp │ │ │ ├── TestPlugInDefaultImpl.cpp │ │ │ ├── TestResult.cpp │ │ │ ├── TestResultCollector.cpp │ │ │ ├── TestRunner.cpp │ │ │ ├── TestSetUp.cpp │ │ │ ├── TestSuccessListener.cpp │ │ │ ├── TestSuite.cpp │ │ │ ├── TestSuiteBuilderContext.cpp │ │ │ ├── TextOutputter.cpp │ │ │ ├── TextTestProgressListener.cpp │ │ │ ├── TextTestResult.cpp │ │ │ ├── TextTestRunner.cpp │ │ │ ├── TypeInfoHelper.cpp │ │ │ ├── UnixDynamicLibraryManager.cpp │ │ │ ├── Win32DynamicLibraryManager.cpp │ │ │ ├── XmlDocument.cpp │ │ │ ├── XmlElement.cpp │ │ │ ├── XmlOutputter.cpp │ │ │ ├── XmlOutputterHook.cpp │ │ │ ├── cppunit.dsp │ │ │ ├── cppunit.vcproj │ │ │ ├── cppunit_dll.dsp │ │ │ ├── cppunit_dll.vcproj │ │ │ └── cppunitvc9.vcproj │ ├── cppunit_note.txt │ ├── irrXML │ │ ├── CXMLReaderImpl.h │ │ ├── heapsort.h │ │ ├── irrArray.h │ │ ├── irrString.h │ │ ├── irrTypes.h │ │ ├── irrXML.cpp │ │ └── irrXML.h │ ├── irrXML_note.txt │ ├── poly2tri │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README │ │ └── poly2tri │ │ │ ├── common │ │ │ ├── shapes.cc │ │ │ ├── shapes.h │ │ │ └── utils.h │ │ │ ├── poly2tri.h │ │ │ └── sweep │ │ │ ├── advancing_front.cc │ │ │ ├── advancing_front.h │ │ │ ├── cdt.cc │ │ │ ├── cdt.h │ │ │ ├── sweep.cc │ │ │ ├── sweep.h │ │ │ ├── sweep_context.cc │ │ │ └── sweep_context.h │ ├── poly2tri_patch.txt │ ├── unzip │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── unzip.c │ │ └── unzip.h │ ├── zlib │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── win32 │ │ │ ├── DLL_FAQ.txt │ │ │ ├── Makefile.bor │ │ │ ├── Makefile.gcc │ │ │ ├── Makefile.msc │ │ │ ├── README-WIN32.txt │ │ │ ├── VisualC.txt │ │ │ ├── zlib.def │ │ │ └── zlib1.rc │ │ ├── zconf.h.cmakein │ │ ├── zconf.h.included │ │ ├── zconf.in.h │ │ ├── zlib.h │ │ ├── zlib.pc.cmakein │ │ ├── zutil.c │ │ └── zutil.h │ └── zlib_note.txt ├── include │ └── assimp │ │ ├── Compiler │ │ ├── poppack1.h │ │ ├── pstdint.h │ │ └── pushpack1.h │ │ ├── DefaultLogger.hpp │ │ ├── Exporter.hpp │ │ ├── IOStream.hpp │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── NullLogger.hpp │ │ ├── ProgressHandler.hpp │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── config.h │ │ ├── defs.h │ │ ├── importerdesc.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── metadata.h │ │ ├── postprocess.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h ├── revision.h.in └── tools │ ├── assimp_cmd │ ├── CMakeLists.txt │ ├── CompareDump.cpp │ ├── Export.cpp │ ├── ImageExtractor.cpp │ ├── Info.cpp │ ├── Main.cpp │ ├── Main.h │ ├── WriteDumb.cpp │ ├── assimp_cmd.rc │ ├── generic_inserter.hpp │ └── resource.h │ ├── assimp_view │ ├── AnimEvaluator.cpp │ ├── AnimEvaluator.h │ ├── AssetHelper.h │ ├── Background.cpp │ ├── Background.h │ ├── CMakeLists.txt │ ├── Camera.h │ ├── Display.cpp │ ├── Display.h │ ├── HUD.png │ ├── HUDMask.png │ ├── HelpDialog.cpp │ ├── Input.cpp │ ├── LogDisplay.cpp │ ├── LogDisplay.h │ ├── LogWindow.cpp │ ├── LogWindow.h │ ├── Material.cpp │ ├── MaterialManager.h │ ├── MeshRenderer.cpp │ ├── MeshRenderer.h │ ├── MessageProc.cpp │ ├── NOTE@help.rtf.txt │ ├── Normals.cpp │ ├── RenderOptions.h │ ├── SceneAnimator.cpp │ ├── SceneAnimator.h │ ├── Shaders.cpp │ ├── Shaders.h │ ├── assimp_view.cpp │ ├── assimp_view.h │ ├── assimp_view.rc │ ├── banner.bmp │ ├── banner_pure.bmp │ ├── base.PNG │ ├── base_anim.bmp │ ├── base_display.bmp │ ├── base_inter.bmp │ ├── base_rendering.bmp │ ├── base_stats.bmp │ ├── fx.bmp │ ├── help.rtf │ ├── n.bmp │ ├── resource.h │ ├── root.bmp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── test.xcf │ ├── text1.bin │ ├── tx.bmp │ └── txi.bmp │ └── shared │ ├── assimp_tools_icon.ico │ ├── assimp_tools_icon.png │ ├── assimp_tools_icon.svg │ └── default_icon.xcf ├── glad ├── CMakeLists.txt ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h └── src │ └── glad.c ├── glfw-3.1.1 ├── CMake │ ├── AppleInfo.plist │ ├── amd64-mingw32msvc.cmake │ ├── i586-mingw32msvc.cmake │ ├── i686-pc-mingw32.cmake │ ├── i686-w64-mingw32.cmake │ ├── modules │ │ ├── FindEGL.cmake │ │ ├── FindGLESv1.cmake │ │ ├── FindGLESv2.cmake │ │ ├── FindMir.cmake │ │ ├── FindWayland.cmake │ │ └── FindXKBCommon.cmake │ └── x86_64-w64-mingw32.cmake ├── CMakeLists.txt ├── COPYING.txt ├── README.md ├── cmake_uninstall.cmake.in ├── deps │ ├── EGL │ │ └── eglext.h │ ├── GL │ │ ├── glext.h │ │ ├── glxext.h │ │ └── wglext.h │ ├── KHR │ │ └── khrplatform.h │ ├── getopt.c │ ├── getopt.h │ ├── glad.c │ ├── glad │ │ └── glad.h │ ├── tinycthread.c │ └── tinycthread.h ├── include │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h └── src │ ├── CMakeLists.txt │ ├── cocoa_init.m │ ├── cocoa_monitor.m │ ├── cocoa_platform.h │ ├── cocoa_window.m │ ├── context.c │ ├── egl_context.c │ ├── egl_context.h │ ├── glfw3.pc.in │ ├── glfw3Config.cmake.in │ ├── glfw_config.h.in │ ├── glx_context.c │ ├── glx_context.h │ ├── init.c │ ├── input.c │ ├── internal.h │ ├── iokit_joystick.h │ ├── iokit_joystick.m │ ├── linux_joystick.c │ ├── linux_joystick.h │ ├── mach_time.c │ ├── mir_init.c │ ├── mir_monitor.c │ ├── mir_platform.h │ ├── mir_window.c │ ├── monitor.c │ ├── nsgl_context.h │ ├── nsgl_context.m │ ├── posix_time.c │ ├── posix_time.h │ ├── posix_tls.c │ ├── posix_tls.h │ ├── wgl_context.c │ ├── wgl_context.h │ ├── win32_init.c │ ├── win32_monitor.c │ ├── win32_platform.h │ ├── win32_time.c │ ├── win32_tls.c │ ├── win32_tls.h │ ├── win32_window.c │ ├── window.c │ ├── winmm_joystick.c │ ├── winmm_joystick.h │ ├── wl_init.c │ ├── wl_monitor.c │ ├── wl_platform.h │ ├── wl_window.c │ ├── x11_init.c │ ├── x11_monitor.c │ ├── x11_platform.h │ ├── x11_window.c │ ├── xkb_unicode.c │ └── xkb_unicode.h ├── glm-0.9.5.4 ├── CMakeLists.txt ├── CTestConfig.cmake ├── cmake │ └── GNUInstallDirs.cmake ├── copying.txt ├── doc │ ├── api │ │ ├── a00002.html │ │ ├── a00004_source.html │ │ ├── a00005_source.html │ │ ├── a00006_source.html │ │ ├── a00007.html │ │ ├── a00007_source.html │ │ ├── a00008_source.html │ │ ├── a00009_source.html │ │ ├── a00010_source.html │ │ ├── a00011.html │ │ ├── a00011_source.html │ │ ├── a00012.html │ │ ├── a00012_source.html │ │ ├── a00013_source.html │ │ ├── a00014.html │ │ ├── a00014_source.html │ │ ├── a00015.html │ │ ├── a00015_source.html │ │ ├── a00016.html │ │ ├── a00016_source.html │ │ ├── a00017.html │ │ ├── a00017_source.html │ │ ├── a00018.html │ │ ├── a00018_source.html │ │ ├── a00019.html │ │ ├── a00019_source.html │ │ ├── a00020_source.html │ │ ├── a00021.html │ │ ├── a00021_source.html │ │ ├── a00022.html │ │ ├── a00022_source.html │ │ ├── a00023_source.html │ │ ├── a00024.html │ │ ├── a00024_source.html │ │ ├── a00025.html │ │ ├── a00025_source.html │ │ ├── a00026_source.html │ │ ├── a00027.html │ │ ├── a00027_source.html │ │ ├── a00028.html │ │ ├── a00028_source.html │ │ ├── a00029.html │ │ ├── a00029_source.html │ │ ├── a00030.html │ │ ├── a00030_source.html │ │ ├── a00031.html │ │ ├── a00031_source.html │ │ ├── a00032_source.html │ │ ├── a00033_source.html │ │ ├── a00034_source.html │ │ ├── a00035_source.html │ │ ├── a00036_source.html │ │ ├── a00037_source.html │ │ ├── a00038_source.html │ │ ├── a00039_source.html │ │ ├── a00040_source.html │ │ ├── a00041.html │ │ ├── a00041_source.html │ │ ├── a00042.html │ │ ├── a00042_source.html │ │ ├── a00043.html │ │ ├── a00043_source.html │ │ ├── a00044.html │ │ ├── a00044_source.html │ │ ├── a00045.html │ │ ├── a00045_source.html │ │ ├── a00046_source.html │ │ ├── a00047.html │ │ ├── a00047_source.html │ │ ├── a00048_source.html │ │ ├── a00049.html │ │ ├── a00049_source.html │ │ ├── a00050.html │ │ ├── a00050_source.html │ │ ├── a00051.html │ │ ├── a00051_source.html │ │ ├── a00052_source.html │ │ ├── a00053_source.html │ │ ├── a00054_source.html │ │ ├── a00055_source.html │ │ ├── a00056_source.html │ │ ├── a00057_source.html │ │ ├── a00058_source.html │ │ ├── a00059.html │ │ ├── a00059_source.html │ │ ├── a00060.html │ │ ├── a00060_source.html │ │ ├── a00061_source.html │ │ ├── a00062.html │ │ ├── a00062_source.html │ │ ├── a00063.html │ │ ├── a00063_source.html │ │ ├── a00064.html │ │ ├── a00064_source.html │ │ ├── a00065.html │ │ ├── a00065_source.html │ │ ├── a00066.html │ │ ├── a00066_source.html │ │ ├── a00067.html │ │ ├── a00067_source.html │ │ ├── a00068.html │ │ ├── a00068_source.html │ │ ├── a00069_source.html │ │ ├── a00070.html │ │ ├── a00070_source.html │ │ ├── a00071.html │ │ ├── a00071_source.html │ │ ├── a00072.html │ │ ├── a00072_source.html │ │ ├── a00073.html │ │ ├── a00073_source.html │ │ ├── a00074.html │ │ ├── a00074_source.html │ │ ├── a00075.html │ │ ├── a00075_source.html │ │ ├── a00076.html │ │ ├── a00076_source.html │ │ ├── a00077.html │ │ ├── a00077_source.html │ │ ├── a00078.html │ │ ├── a00078_source.html │ │ ├── a00079.html │ │ ├── a00079_source.html │ │ ├── a00080.html │ │ ├── a00080_source.html │ │ ├── a00081.html │ │ ├── a00081_source.html │ │ ├── a00082.html │ │ ├── a00082_source.html │ │ ├── a00083.html │ │ ├── a00083_source.html │ │ ├── a00084_source.html │ │ ├── a00085.html │ │ ├── a00085_source.html │ │ ├── a00086.html │ │ ├── a00086_source.html │ │ ├── a00087.html │ │ ├── a00087_source.html │ │ ├── a00088.html │ │ ├── a00088_source.html │ │ ├── a00089.html │ │ ├── a00089_source.html │ │ ├── a00090.html │ │ ├── a00090_source.html │ │ ├── a00091.html │ │ ├── a00091_source.html │ │ ├── a00092.html │ │ ├── a00092_source.html │ │ ├── a00093_source.html │ │ ├── a00094.html │ │ ├── a00094_source.html │ │ ├── a00095.html │ │ ├── a00095_source.html │ │ ├── a00096_source.html │ │ ├── a00097.html │ │ ├── a00097_source.html │ │ ├── a00098.html │ │ ├── a00098_source.html │ │ ├── a00099.html │ │ ├── a00099_source.html │ │ ├── a00100.html │ │ ├── a00100_source.html │ │ ├── a00101_source.html │ │ ├── a00102.html │ │ ├── a00102_source.html │ │ ├── a00103.html │ │ ├── a00103_source.html │ │ ├── a00104_source.html │ │ ├── a00105.html │ │ ├── a00105_source.html │ │ ├── a00106.html │ │ ├── a00106_source.html │ │ ├── a00107.html │ │ ├── a00107_source.html │ │ ├── a00108_source.html │ │ ├── a00109_source.html │ │ ├── a00110.html │ │ ├── a00110_source.html │ │ ├── a00111.html │ │ ├── a00111_source.html │ │ ├── a00112.html │ │ ├── a00112_source.html │ │ ├── a00113.html │ │ ├── a00113_source.html │ │ ├── a00114.html │ │ ├── a00114_source.html │ │ ├── a00115.html │ │ ├── a00115_source.html │ │ ├── a00116.html │ │ ├── a00116_source.html │ │ ├── a00117.html │ │ ├── a00117_source.html │ │ ├── a00118_source.html │ │ ├── a00119_source.html │ │ ├── a00120_source.html │ │ ├── a00121_source.html │ │ ├── a00122_source.html │ │ ├── a00123_source.html │ │ ├── a00124_source.html │ │ ├── a00125_source.html │ │ ├── a00126_source.html │ │ ├── a00127_source.html │ │ ├── a00128_source.html │ │ ├── a00129_source.html │ │ ├── a00130_source.html │ │ ├── a00131_source.html │ │ ├── a00132.html │ │ ├── a00132_source.html │ │ ├── a00133.html │ │ ├── a00133_source.html │ │ ├── a00134_source.html │ │ ├── a00135_source.html │ │ ├── a00136_source.html │ │ ├── a00137_source.html │ │ ├── a00138_source.html │ │ ├── a00139.html │ │ ├── a00139_source.html │ │ ├── a00140_source.html │ │ ├── a00141_source.html │ │ ├── a00142.html │ │ ├── a00142_source.html │ │ ├── a00143.html │ │ ├── a00143_source.html │ │ ├── a00144.html │ │ ├── a00144_source.html │ │ ├── a00145.html │ │ ├── a00145_source.html │ │ ├── a00146.html │ │ ├── a00146_source.html │ │ ├── a00147.html │ │ ├── a00147_source.html │ │ ├── a00148.html │ │ ├── a00148_source.html │ │ ├── a00149.html │ │ ├── a00149_source.html │ │ ├── a00150.html │ │ ├── a00150_source.html │ │ ├── a00151.html │ │ ├── a00155.html │ │ ├── a00156.html │ │ ├── a00157.html │ │ ├── a00158.html │ │ ├── a00159.html │ │ ├── a00160.html │ │ ├── a00161.html │ │ ├── a00162.html │ │ ├── a00163.html │ │ ├── a00164.html │ │ ├── a00165.html │ │ ├── a00166.html │ │ ├── a00167.html │ │ ├── a00168.html │ │ ├── a00169.html │ │ ├── a00170.html │ │ ├── a00171.html │ │ ├── a00172.html │ │ ├── a00173.html │ │ ├── a00174.html │ │ ├── a00175.html │ │ ├── a00176.html │ │ ├── a00177.html │ │ ├── a00178.html │ │ ├── a00179.html │ │ ├── a00180.html │ │ ├── a00181.html │ │ ├── a00182.html │ │ ├── a00183.html │ │ ├── a00184.html │ │ ├── a00185.html │ │ ├── a00186.html │ │ ├── a00187.html │ │ ├── a00188.html │ │ ├── a00189.html │ │ ├── a00190.html │ │ ├── a00191.html │ │ ├── a00192.html │ │ ├── a00193.html │ │ ├── a00194.html │ │ ├── a00195.html │ │ ├── a00196.html │ │ ├── a00197.html │ │ ├── a00198.html │ │ ├── a00199.html │ │ ├── a00200.html │ │ ├── a00201.html │ │ ├── a00202.html │ │ ├── a00203.html │ │ ├── a00204.html │ │ ├── a00205.html │ │ ├── a00206.html │ │ ├── a00207.html │ │ ├── a00208.html │ │ ├── a00209.html │ │ ├── a00210.html │ │ ├── a00211.html │ │ ├── a00212.html │ │ ├── a00213.html │ │ ├── a00214.html │ │ ├── a00215.html │ │ ├── a00216.html │ │ ├── a00217.html │ │ ├── a00218.html │ │ ├── a00219.html │ │ ├── a00220.html │ │ ├── a00221.html │ │ ├── a00222.html │ │ ├── a00223.html │ │ ├── a00224.html │ │ ├── a00225.html │ │ ├── a00226.html │ │ ├── a00227.html │ │ ├── a00228.html │ │ ├── a00229.html │ │ ├── a00230.html │ │ ├── a00231.html │ │ ├── a00232.html │ │ ├── a00233.html │ │ ├── a00234.html │ │ ├── a00235.html │ │ ├── a00236.html │ │ ├── a00237.html │ │ ├── a00238.html │ │ ├── a00240.html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── dir_04e4a28b8d58785d7769817294d623f5.html │ │ ├── dir_4d1ca7e3aefdd5b86b5dba8da1c3d503.html │ │ ├── dir_6e418c18ca640a0404613de005739e2e.html │ │ ├── dir_89daaa151958d75313fcd89dd5f4bdb8.html │ │ ├── dir_8ceffd4ee35c3518d4e8bdc7e638efe8.html │ │ ├── dir_968fb7988749a6351e7b3d0c1783dec4.html │ │ ├── dir_a8d99eddac27b2368ab5252ce80ded11.html │ │ ├── dir_e3ecd7863bd215c92a17f47e2ae3be43.html │ │ ├── dir_e50778361fd4ab4de52181ed9eb2b726.html │ │ ├── dir_edf753475b928be648c1cf1c6443cf63.html │ │ ├── dir_f7324829a002c536307b42a892c06451.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── namespacemembers.html │ │ ├── namespacemembers_0x62.html │ │ ├── namespacemembers_0x63.html │ │ ├── namespacemembers_0x64.html │ │ ├── namespacemembers_0x65.html │ │ ├── namespacemembers_0x66.html │ │ ├── namespacemembers_0x67.html │ │ ├── namespacemembers_0x68.html │ │ ├── namespacemembers_0x69.html │ │ ├── namespacemembers_0x6c.html │ │ ├── namespacemembers_0x6d.html │ │ ├── namespacemembers_0x6e.html │ │ ├── namespacemembers_0x6f.html │ │ ├── namespacemembers_0x70.html │ │ ├── namespacemembers_0x71.html │ │ ├── namespacemembers_0x72.html │ │ ├── namespacemembers_0x73.html │ │ ├── namespacemembers_0x74.html │ │ ├── namespacemembers_0x75.html │ │ ├── namespacemembers_0x76.html │ │ ├── namespacemembers_0x77.html │ │ ├── namespacemembers_0x79.html │ │ ├── namespacemembers_0x7a.html │ │ ├── namespacemembers_func.html │ │ ├── namespacemembers_func_0x62.html │ │ ├── namespacemembers_func_0x63.html │ │ ├── namespacemembers_func_0x64.html │ │ ├── namespacemembers_func_0x65.html │ │ ├── namespacemembers_func_0x66.html │ │ ├── namespacemembers_func_0x67.html │ │ ├── namespacemembers_func_0x68.html │ │ ├── namespacemembers_func_0x69.html │ │ ├── namespacemembers_func_0x6c.html │ │ ├── namespacemembers_func_0x6d.html │ │ ├── namespacemembers_func_0x6e.html │ │ ├── namespacemembers_func_0x6f.html │ │ ├── namespacemembers_func_0x70.html │ │ ├── namespacemembers_func_0x71.html │ │ ├── namespacemembers_func_0x72.html │ │ ├── namespacemembers_func_0x73.html │ │ ├── namespacemembers_func_0x74.html │ │ ├── namespacemembers_func_0x75.html │ │ ├── namespacemembers_func_0x76.html │ │ ├── namespacemembers_func_0x79.html │ │ ├── namespacemembers_func_0x7a.html │ │ ├── namespacemembers_type.html │ │ ├── namespacemembers_type_0x64.html │ │ ├── namespacemembers_type_0x66.html │ │ ├── namespacemembers_type_0x68.html │ │ ├── namespacemembers_type_0x69.html │ │ ├── namespacemembers_type_0x6c.html │ │ ├── namespacemembers_type_0x6d.html │ │ ├── namespacemembers_type_0x71.html │ │ ├── namespacemembers_type_0x73.html │ │ ├── namespacemembers_type_0x75.html │ │ ├── namespacemembers_type_0x76.html │ │ ├── namespacemembers_type_0x77.html │ │ ├── namespaces.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── pages.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css │ ├── glm.docx │ ├── glm.pdf │ ├── logo.png │ ├── man.doxy │ ├── pages.doxy │ ├── theme │ │ ├── doxygen.css │ │ └── tabs.css │ └── ~$glm.docx ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _literals.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_noise.hpp │ │ ├── func_noise.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── hint.hpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── precision.inl │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ └── type_vec4.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ └── ulp.inl │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── constants.hpp │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── epsilon.hpp │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extented_min_max.hpp │ │ ├── extented_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── inertia.hpp │ │ ├── inertia.inl │ │ ├── int_10_10_10_2.hpp │ │ ├── int_10_10_10_2.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── multiple.hpp │ │ ├── multiple.inl │ │ ├── noise.hpp │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── reciprocal.hpp │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── ulp.hpp │ │ ├── unsigned_int.hpp │ │ ├── unsigned_int.inl │ │ ├── vec1.hpp │ │ ├── vec1.inl │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── readme.txt ├── test │ ├── CMakeLists.txt │ ├── bug │ │ └── CMakeLists.txt │ ├── core │ │ ├── CMakeLists.txt │ │ ├── core_func_common.cpp │ │ ├── core_func_exponential.cpp │ │ ├── core_func_geometric.cpp │ │ ├── core_func_integer.cpp │ │ ├── core_func_matrix.cpp │ │ ├── core_func_noise.cpp │ │ ├── core_func_packing.cpp │ │ ├── core_func_swizzle.cpp │ │ ├── core_func_trigonometric.cpp │ │ ├── core_func_vector_relational.cpp │ │ ├── core_setup_message.cpp │ │ ├── core_setup_precision.cpp │ │ ├── core_type_cast.cpp │ │ ├── core_type_float.cpp │ │ ├── core_type_int.cpp │ │ ├── core_type_length.cpp │ │ ├── core_type_mat2x2.cpp │ │ ├── core_type_mat2x3.cpp │ │ ├── core_type_mat2x4.cpp │ │ ├── core_type_mat3x2.cpp │ │ ├── core_type_mat3x3.cpp │ │ ├── core_type_mat3x4.cpp │ │ ├── core_type_mat4x2.cpp │ │ ├── core_type_mat4x3.cpp │ │ ├── core_type_mat4x4.cpp │ │ ├── core_type_vec1.cpp │ │ ├── core_type_vec2.cpp │ │ ├── core_type_vec3.cpp │ │ └── core_type_vec4.cpp │ ├── external │ │ └── gli │ │ │ ├── CMakeLists.txt │ │ │ ├── core │ │ │ ├── dummy.cpp │ │ │ ├── generate_mipmaps.hpp │ │ │ ├── generate_mipmaps.inl │ │ │ ├── image2d.hpp │ │ │ ├── image2d.inl │ │ │ ├── operation.hpp │ │ │ ├── operation.inl │ │ │ ├── operator.hpp │ │ │ ├── operator.inl │ │ │ ├── shared_array.hpp │ │ │ ├── shared_array.inl │ │ │ ├── shared_ptr.hpp │ │ │ ├── shared_ptr.inl │ │ │ ├── size.hpp │ │ │ ├── size.inl │ │ │ ├── texture2d.hpp │ │ │ ├── texture2d.inl │ │ │ ├── texture2d_array.hpp │ │ │ ├── texture2d_array.inl │ │ │ ├── texture_cube.hpp │ │ │ ├── texture_cube.inl │ │ │ ├── texture_cube_array.hpp │ │ │ └── texture_cube_array.inl │ │ │ ├── gli.hpp │ │ │ └── gtx │ │ │ ├── compression.hpp │ │ │ ├── compression.inl │ │ │ ├── fetch.hpp │ │ │ ├── fetch.inl │ │ │ ├── gl_texture2d.hpp │ │ │ ├── gl_texture2d.inl │ │ │ ├── gradient.hpp │ │ │ ├── gradient.inl │ │ │ ├── loader.hpp │ │ │ ├── loader.inl │ │ │ ├── loader_dds10.hpp │ │ │ ├── loader_dds10.inl │ │ │ ├── loader_dds9.hpp │ │ │ ├── loader_dds9.inl │ │ │ ├── loader_tga.hpp │ │ │ ├── loader_tga.inl │ │ │ ├── wavelet.hpp │ │ │ └── wavelet.inl │ ├── glm.cppcheck │ ├── gtc │ │ ├── CMakeLists.txt │ │ ├── gtc_constants.cpp │ │ ├── gtc_epsilon.cpp │ │ ├── gtc_matrix_access.cpp │ │ ├── gtc_matrix_integer.cpp │ │ ├── gtc_matrix_inverse.cpp │ │ ├── gtc_matrix_transform.cpp │ │ ├── gtc_noise.cpp │ │ ├── gtc_packing.cpp │ │ ├── gtc_quaternion.cpp │ │ ├── gtc_random.cpp │ │ ├── gtc_reciprocal.cpp │ │ ├── gtc_type_precision.cpp │ │ ├── gtc_type_ptr.cpp │ │ └── gtc_ulp.cpp │ └── gtx │ │ ├── CMakeLists.txt │ │ ├── gtx_associated_min_max.cpp │ │ ├── gtx_bit.cpp │ │ ├── gtx_closest_point.cpp │ │ ├── gtx_color_space.cpp │ │ ├── gtx_color_space_YCoCg.cpp │ │ ├── gtx_compatibility.cpp │ │ ├── gtx_component_wise.cpp │ │ ├── gtx_dual_quaternion.cpp │ │ ├── gtx_euler_angle.cpp │ │ ├── gtx_extend.cpp │ │ ├── gtx_extented_min_max.cpp │ │ ├── gtx_fast_exponential.cpp │ │ ├── gtx_fast_square_root.cpp │ │ ├── gtx_fast_trigonometry.cpp │ │ ├── gtx_gradient_paint.cpp │ │ ├── gtx_handed_coordinate_space.cpp │ │ ├── gtx_inertia.cpp │ │ ├── gtx_int_10_10_10_2.cpp │ │ ├── gtx_integer.cpp │ │ ├── gtx_intersect.cpp │ │ ├── gtx_io.cpp │ │ ├── gtx_log_base.cpp │ │ ├── gtx_matrix_cross_product.cpp │ │ ├── gtx_matrix_interpolation.cpp │ │ ├── gtx_matrix_major_storage.cpp │ │ ├── gtx_matrix_operation.cpp │ │ ├── gtx_matrix_query.cpp │ │ ├── gtx_matrix_transform_2d.cpp │ │ ├── gtx_mixed_product.cpp │ │ ├── gtx_multiple.cpp │ │ ├── gtx_norm.cpp │ │ ├── gtx_normal.cpp │ │ ├── gtx_normalize_dot.cpp │ │ ├── gtx_number_precision.cpp │ │ ├── gtx_optimum_pow.cpp │ │ ├── gtx_orthonormalize.cpp │ │ ├── gtx_perpendicular.cpp │ │ ├── gtx_polar_coordinates.cpp │ │ ├── gtx_projection.cpp │ │ ├── gtx_quaternion.cpp │ │ ├── gtx_random.cpp │ │ ├── gtx_rotate_normalized_axis.cpp │ │ ├── gtx_rotate_vector.cpp │ │ ├── gtx_scalar_relational.cpp │ │ ├── gtx_simd_mat4.cpp │ │ ├── gtx_simd_vec4.cpp │ │ ├── gtx_spline.cpp │ │ ├── gtx_string_cast.cpp │ │ ├── gtx_vector_angle.cpp │ │ └── gtx_vector_query.cpp └── util │ ├── CMakeLists.txt │ ├── FindGLM.cmake │ ├── autoexp.txt │ ├── autoexp.vc2010.dat │ ├── glm.natvis │ └── usertype.dat └── soil2-20141119 ├── .hg_archival.txt ├── .hgignore ├── CMakeLists.txt ├── README.md ├── bin ├── field_128_cube.dds ├── img_mars.jpg ├── img_test.bmp ├── img_test.dds ├── img_test.png ├── img_test.tga ├── img_test_indexed.tga ├── lenna1.jpg ├── lenna2.jpg ├── lenna3.jpg ├── test.pkm ├── test_image_pvrtc2bpp.pvr ├── test_image_pvrtc4bpp.pvr ├── test_image_rgb888.pvr ├── test_image_rgba8888.pvr └── test_rect.png ├── premake4.lua └── src ├── SOIL2 ├── SOIL2.c ├── SOIL2.h ├── etc1_utils.c ├── etc1_utils.h ├── image_DXT.c ├── image_DXT.h ├── image_helper.c ├── image_helper.h ├── pkm_helper.h ├── pvr_helper.h ├── stb_image.c ├── stb_image.h ├── stb_image_write.c ├── stb_image_write.h ├── stbi_DDS.h ├── stbi_DDS_c.h ├── stbi_ext.h ├── stbi_ext_c.h ├── stbi_pkm.h ├── stbi_pkm_c.h ├── stbi_pvr.h └── stbi_pvr_c.h ├── perf_test └── test_perf_SOIL2.cpp └── test └── test_SOIL2.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/README.md -------------------------------------------------------------------------------- /game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/CMakeLists.txt -------------------------------------------------------------------------------- /game/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/db.h -------------------------------------------------------------------------------- /game/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/game.cpp -------------------------------------------------------------------------------- /game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/game.h -------------------------------------------------------------------------------- /game/game_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/game_db.h -------------------------------------------------------------------------------- /game/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/main.cpp -------------------------------------------------------------------------------- /game/particles_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/particles_3d.h -------------------------------------------------------------------------------- /game/render_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/render_3d.cpp -------------------------------------------------------------------------------- /game/render_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/game/render_3d.h -------------------------------------------------------------------------------- /include/glpp/angle_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/angle_ext.h -------------------------------------------------------------------------------- /include/glpp/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/assets.h -------------------------------------------------------------------------------- /include/glpp/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gl2.h -------------------------------------------------------------------------------- /include/glpp/gl2/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gl2/commands.h -------------------------------------------------------------------------------- /include/glpp/gl2/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gl2/enums.h -------------------------------------------------------------------------------- /include/glpp/gl2/extensions_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gl2/extensions_enums.h -------------------------------------------------------------------------------- /include/glpp/gl2/osx/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gl2/osx/extensions.h -------------------------------------------------------------------------------- /include/glpp/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gles2.h -------------------------------------------------------------------------------- /include/glpp/gles2/angle/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gles2/angle/extensions.h -------------------------------------------------------------------------------- /include/glpp/gles2/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gles2/commands.h -------------------------------------------------------------------------------- /include/glpp/gles2/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gles2/enums.h -------------------------------------------------------------------------------- /include/glpp/gles2/extensions_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/gles2/extensions_enums.h -------------------------------------------------------------------------------- /include/glpp/glpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/glpp.h -------------------------------------------------------------------------------- /include/glpp/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/imconfig.h -------------------------------------------------------------------------------- /include/glpp/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/imgui.h -------------------------------------------------------------------------------- /include/glpp/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/input.h -------------------------------------------------------------------------------- /include/glpp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/scene.h -------------------------------------------------------------------------------- /include/glpp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/types.h -------------------------------------------------------------------------------- /include/glpp/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/ui.h -------------------------------------------------------------------------------- /include/glpp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/include/glpp/utils.h -------------------------------------------------------------------------------- /res/bg_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/bg_green.png -------------------------------------------------------------------------------- /res/blank-1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/blank-1x1.png -------------------------------------------------------------------------------- /res/boxes-anim.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/boxes-anim.blend -------------------------------------------------------------------------------- /res/boxes-anim.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/boxes-anim.fbx -------------------------------------------------------------------------------- /res/campfire.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/campfire.blend -------------------------------------------------------------------------------- /res/campfire.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/campfire.fbx -------------------------------------------------------------------------------- /res/dude-anim-stand.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/dude-anim-stand.blend -------------------------------------------------------------------------------- /res/dude-anim-walk.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/dude-anim-walk.blend -------------------------------------------------------------------------------- /res/dude-anim.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/dude-anim.blend -------------------------------------------------------------------------------- /res/dude-anim.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/dude-anim.fbx -------------------------------------------------------------------------------- /res/dude-walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/dude-walk.png -------------------------------------------------------------------------------- /res/ground-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/ground-64x64.png -------------------------------------------------------------------------------- /res/ground-dark-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/ground-dark-64x64.png -------------------------------------------------------------------------------- /res/landscape.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/landscape.blend -------------------------------------------------------------------------------- /res/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/rain.png -------------------------------------------------------------------------------- /res/shaders/2d.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/2d.frag -------------------------------------------------------------------------------- /res/shaders/2d.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/2d.vert -------------------------------------------------------------------------------- /res/shaders/3d.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d.frag -------------------------------------------------------------------------------- /res/shaders/3d.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d.vert -------------------------------------------------------------------------------- /res/shaders/3d_particle.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d_particle.frag -------------------------------------------------------------------------------- /res/shaders/3d_particle.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d_particle.vert -------------------------------------------------------------------------------- /res/shaders/3d_shadow_dir.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d_shadow_dir.frag -------------------------------------------------------------------------------- /res/shaders/3d_shadow_dir.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d_shadow_dir.vert -------------------------------------------------------------------------------- /res/shaders/3d_shadow_pos.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d_shadow_pos.frag -------------------------------------------------------------------------------- /res/shaders/3d_shadow_pos.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/3d_shadow_pos.vert -------------------------------------------------------------------------------- /res/shaders/post.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/post.frag -------------------------------------------------------------------------------- /res/shaders/post.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/post.vert -------------------------------------------------------------------------------- /res/shaders/prime.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/prime.frag -------------------------------------------------------------------------------- /res/shaders/prime.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/prime.vert -------------------------------------------------------------------------------- /res/shaders/sprite.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/sprite.frag -------------------------------------------------------------------------------- /res/shaders/sprite.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/sprite.vert -------------------------------------------------------------------------------- /res/shaders/test2d.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/test2d.frag -------------------------------------------------------------------------------- /res/shaders/test2d.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/test2d.vert -------------------------------------------------------------------------------- /res/shaders/ui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/ui.frag -------------------------------------------------------------------------------- /res/shaders/ui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/shaders/ui.vert -------------------------------------------------------------------------------- /res/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/sprites.png -------------------------------------------------------------------------------- /res/test-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/test-100x100.png -------------------------------------------------------------------------------- /res/trees.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/trees.blend -------------------------------------------------------------------------------- /res/trees.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/trees.fbx -------------------------------------------------------------------------------- /res/weapons.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/weapons.blend -------------------------------------------------------------------------------- /res/weapons.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/res/weapons.fbx -------------------------------------------------------------------------------- /src/gl2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gl2/CMakeLists.txt -------------------------------------------------------------------------------- /src/gl2/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gl2/commands.cpp -------------------------------------------------------------------------------- /src/gl2/gl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gl2/gl2.cpp -------------------------------------------------------------------------------- /src/gl2/osx/extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gl2/osx/extensions.cpp -------------------------------------------------------------------------------- /src/gles2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gles2/CMakeLists.txt -------------------------------------------------------------------------------- /src/gles2/angle/extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gles2/angle/extensions.cpp -------------------------------------------------------------------------------- /src/gles2/angle_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gles2/angle_ext.cpp -------------------------------------------------------------------------------- /src/gles2/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gles2/commands.cpp -------------------------------------------------------------------------------- /src/gles2/gles2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/gles2/gles2.cpp -------------------------------------------------------------------------------- /src/glew/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glew/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /src/glew/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glew/include/glad/glad.h -------------------------------------------------------------------------------- /src/glew/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glew/src/glad.c -------------------------------------------------------------------------------- /src/glpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/glpp/assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/assets.cpp -------------------------------------------------------------------------------- /src/glpp/detail/ai_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/ai_helpers.cpp -------------------------------------------------------------------------------- /src/glpp/detail/ai_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/ai_helpers.h -------------------------------------------------------------------------------- /src/glpp/detail/ai_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/ai_structures.cpp -------------------------------------------------------------------------------- /src/glpp/detail/ai_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/ai_structures.h -------------------------------------------------------------------------------- /src/glpp/detail/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/glpp/detail/imgui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/imgui/stb_rect_pack.h -------------------------------------------------------------------------------- /src/glpp/detail/imgui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/imgui/stb_textedit.h -------------------------------------------------------------------------------- /src/glpp/detail/imgui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/imgui/stb_truetype.h -------------------------------------------------------------------------------- /src/glpp/detail/stb/stb_easy_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/detail/stb/stb_easy_font.h -------------------------------------------------------------------------------- /src/glpp/glpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/glpp.cpp -------------------------------------------------------------------------------- /src/glpp/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/input.cpp -------------------------------------------------------------------------------- /src/glpp/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/scene.cpp -------------------------------------------------------------------------------- /src/glpp/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/ui.cpp -------------------------------------------------------------------------------- /src/glpp/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/src/glpp/utils.cpp -------------------------------------------------------------------------------- /testbed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/CMakeLists.txt -------------------------------------------------------------------------------- /testbed/buffer_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/buffer_demo.cpp -------------------------------------------------------------------------------- /testbed/instanced_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/instanced_demo.cpp -------------------------------------------------------------------------------- /testbed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/main.cpp -------------------------------------------------------------------------------- /testbed/text_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/text_demo.cpp -------------------------------------------------------------------------------- /testbed/texture_batches_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/texture_batches_demo.cpp -------------------------------------------------------------------------------- /testbed/triangle_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/triangle_demo.cpp -------------------------------------------------------------------------------- /testbed/ui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/testbed/ui_demo.cpp -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/angle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/angle/bin/Debug/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/bin/Debug/d3dcompiler_47.dll -------------------------------------------------------------------------------- /thirdparty/angle/bin/Debug/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/bin/Debug/libEGL.dll -------------------------------------------------------------------------------- /thirdparty/angle/bin/Debug/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/bin/Debug/libGLESv2.dll -------------------------------------------------------------------------------- /thirdparty/angle/bin/Release/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/bin/Release/d3dcompiler_47.dll -------------------------------------------------------------------------------- /thirdparty/angle/bin/Release/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/bin/Release/libEGL.dll -------------------------------------------------------------------------------- /thirdparty/angle/bin/Release/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/bin/Release/libGLESv2.dll -------------------------------------------------------------------------------- /thirdparty/angle/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/EGL/egl.h -------------------------------------------------------------------------------- /thirdparty/angle/include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/EGL/eglext.h -------------------------------------------------------------------------------- /thirdparty/angle/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLES2/gl2.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLES2/gl2ext.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLES2/gl2platform.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLES3/gl3.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLES3/gl3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLES3/gl3ext.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLES3/gl3platform.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLSLANG/ShaderLang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLSLANG/ShaderLang.h -------------------------------------------------------------------------------- /thirdparty/angle/include/GLSLANG/ShaderVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/GLSLANG/ShaderVars.h -------------------------------------------------------------------------------- /thirdparty/angle/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /thirdparty/angle/include/angle_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/angle_gl.h -------------------------------------------------------------------------------- /thirdparty/angle/include/angle_windowsstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/angle_windowsstore.h -------------------------------------------------------------------------------- /thirdparty/angle/include/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/export.h -------------------------------------------------------------------------------- /thirdparty/angle/include/platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/include/platform/Platform.h -------------------------------------------------------------------------------- /thirdparty/angle/lib/Debug/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/lib/Debug/libEGL.lib -------------------------------------------------------------------------------- /thirdparty/angle/lib/Debug/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/lib/Debug/libGLESv2.lib -------------------------------------------------------------------------------- /thirdparty/angle/lib/Release/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/lib/Release/libEGL.lib -------------------------------------------------------------------------------- /thirdparty/angle/lib/Release/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/angle/lib/Release/libGLESv2.lib -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/AssimpConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/AssimpConfig.cmake.in -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/CHANGES -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/CREDITS -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/INSTALL -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/LICENSE -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/README: -------------------------------------------------------------------------------- 1 | See Readme.md 2 | -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/Readme.md -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/assimp-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/assimp-config.cmake.in -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/assimp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/assimp.pc.in -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/3DSConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/3DSConverter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/3DSHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/3DSHelper.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/3DSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/3DSLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/3DSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/3DSLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ACLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ACLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ACLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ACLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ASELoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ASELoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ASELoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ASELoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ASEParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ASEParser.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ASEParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ASEParser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Assimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Assimp.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/AssimpCExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/AssimpCExport.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/AssimpPCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/AssimpPCH.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/AssimpPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/AssimpPCH.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/B3DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/B3DImporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/B3DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/B3DImporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BVHLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BVHLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BVHLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BVHLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BaseImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BaseImporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BaseImporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BaseProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BaseProcess.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BaseProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BaseProcess.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Bitmap.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Bitmap.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderBMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderBMesh.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderBMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderBMesh.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderDNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderDNA.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderDNA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderDNA.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderDNA.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderDNA.inl -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderModifier.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderScene.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderScene.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlenderSceneGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlenderSceneGen.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/BlobIOSystem.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ByteSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ByteSwap.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/COBLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/COBLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/COBLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/COBLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/COBScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/COBScene.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/CSMLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/CSMLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/CSMLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/CSMLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ColladaExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ColladaExporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ColladaHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ColladaHelper.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ColladaLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ColladaLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ColladaLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ColladaLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ColladaParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ColladaParser.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ColladaParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ColladaParser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DXFHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DXFHelper.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DXFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DXFLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DXFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DXFLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DeboneProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DeboneProcess.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DeboneProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DeboneProcess.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DefaultIOStream.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DefaultIOSystem.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/DefaultLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/DefaultLogger.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Exceptional.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Exporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXAnimation.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXCompileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXCompileConfig.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXConverter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXConverter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXDeformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXDeformer.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXDocument.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXDocument.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXDocumentUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXDocumentUtil.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXImporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXImporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXMaterial.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXModel.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXParser.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXParser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXProperties.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXProperties.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXTokenizer.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXTokenizer.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXUtil.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FBXUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FBXUtil.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FileLogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FileLogStream.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FileSystemFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FileSystemFilter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FindDegenerates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FindDegenerates.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FixNormalsStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FixNormalsStep.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/FixNormalsStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/FixNormalsStep.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/GenericProperty.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/HMPFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/HMPFileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/HMPLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/HMPLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/HMPLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/HMPLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/HalfLifeFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/HalfLifeFileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Hash.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCBoolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCBoolean.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCCurve.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCGeometry.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCMaterial.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCOpenings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCOpenings.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCProfile.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCReaderGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCReaderGen.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCReaderGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCReaderGen.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCUtil.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFCUtil.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IFF.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IRRLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IRRLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IRRLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IRRLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IRRMeshLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IRRMeshLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IRRMeshLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IRRMeshLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IRRShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IRRShared.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/IRRShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/IRRShared.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Importer.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Importer.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWOAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWOAnimation.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWOAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWOAnimation.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWOBLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWOBLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWOFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWOFileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWOLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWOLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWOMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWOMaterial.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWSLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LWSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LWSLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LineSplitter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/LogAux.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD2FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD2FileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD2Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD2Loader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD2Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD2Loader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD2NormalTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD2NormalTable.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD3FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD3FileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD3Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD3Loader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD3Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD3Loader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD4FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD4FileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD5Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD5Loader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD5Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD5Loader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD5Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD5Parser.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MD5Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MD5Parser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MDCFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MDCFileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MDCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MDCLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MDCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MDCLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MDCNormalTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MDCNormalTable.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MDLFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MDLFileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MDLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MDLLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MDLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MDLLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MS3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MS3DLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MS3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MS3DLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MaterialSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MaterialSystem.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MaterialSystem.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/MemoryIOWrapper.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/NDOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/NDOLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/NDOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/NDOLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/NFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/NFFLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/NFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/NFFLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OFFLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OFFLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ObjExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ObjExporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ObjExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ObjExporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ObjFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ObjFileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ObjFileImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ObjFileImporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ObjFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ObjFileParser.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ObjFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ObjFileParser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ObjTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ObjTools.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OgreImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OgreImporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OgreImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OgreImporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OgreMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OgreMaterial.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OgreParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OgreParsingUtils.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OgreStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OgreStructs.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OgreStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OgreStructs.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OptimizeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OptimizeGraph.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OptimizeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OptimizeGraph.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OptimizeMeshes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OptimizeMeshes.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/OptimizeMeshes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/OptimizeMeshes.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ParsingUtils.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/PlyExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/PlyExporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/PlyExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/PlyExporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/PlyLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/PlyLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/PlyLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/PlyLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/PlyParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/PlyParser.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/PlyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/PlyParser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/PolyTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/PolyTools.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ProcessHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ProcessHelper.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ProcessHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ProcessHelper.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Profiler.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Q3BSPFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Q3BSPFileData.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Q3BSPFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Q3BSPFileParser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Q3BSPZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Q3BSPZipArchive.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Q3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Q3DLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Q3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Q3DLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/RawLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/RawLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/RawLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/RawLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/RemoveComments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/RemoveComments.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/RemoveComments.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/RemoveVCProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/RemoveVCProcess.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SGSpatialSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SGSpatialSort.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SGSpatialSort.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SMDLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SMDLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SMDLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SMDLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STEPFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STEPFile.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STEPFileEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STEPFileEncoding.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STEPFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STEPFileReader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STEPFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STEPFileReader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STLExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STLExporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STLExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STLExporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STLLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/STLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/STLLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SceneCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SceneCombiner.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SceneCombiner.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/ScenePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/ScenePrivate.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SmoothingGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SmoothingGroups.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SpatialSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SpatialSort.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SpatialSort.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/SplitLargeMeshes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/SplitLargeMeshes.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/StandardShapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/StandardShapes.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/StandardShapes.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/StreamReader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/StringComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/StringComparison.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Subdivision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Subdivision.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Subdivision.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/TargetAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/TargetAnimation.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/TerragenLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/TerragenLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/TerragenLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/TerragenLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/TextureTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/TextureTransform.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/TinyFormatter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/UnrealLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/UnrealLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/UnrealLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/UnrealLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/Vertex.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/XFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/XFileHelper.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/XFileImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/XFileImporter.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/XFileImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/XFileImporter.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/XFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/XFileParser.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/XFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/XFileParser.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/XGLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/XGLLoader.cpp -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/XGLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/XGLLoader.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/assbin_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/assbin_chunks.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/fast_atof.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/irrXMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/irrXMLWrapper.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/makefile.mingw -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/qnan.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/res/assimp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/res/assimp.rc -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/code/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/code/res/resource.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/cppunit-1.12.1/include/cppunit/ui/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = text mfc qt 2 | -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/irrXML/irrXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/irrXML/irrXML.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/irrXML_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/irrXML_note.txt -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/poly2tri/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/poly2tri/README -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/unzip/crypt.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/unzip/ioapi.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/unzip/ioapi.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/unzip/unzip.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/unzip/unzip.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/README -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/adler32.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/compress.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/crc32.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/crc32.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/deflate.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/deflate.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/gzclose.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/gzguts.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/gzlib.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/gzread.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/gzwrite.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/infback.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/trees.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/trees.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/zlib.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/zutil.c -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib/zutil.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/contrib/zlib_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/contrib/zlib_note.txt -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/include/assimp/anim.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/include/assimp/defs.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/include/assimp/mesh.h -------------------------------------------------------------------------------- /thirdparty/assimp-3.1.1/revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/assimp-3.1.1/revision.h.in -------------------------------------------------------------------------------- /thirdparty/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glad/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /thirdparty/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glad/include/glad/glad.h -------------------------------------------------------------------------------- /thirdparty/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glad/src/glad.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/CMake/AppleInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/CMake/AppleInfo.plist -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/COPYING.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/README.md -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/EGL/eglext.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/GL/glext.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/GL/glxext.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/GL/wglext.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/KHR/khrplatform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/getopt.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/getopt.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/glad.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/glad/glad.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/tinycthread.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/deps/tinycthread.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/cocoa_init.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/cocoa_monitor.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/cocoa_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/cocoa_window.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/egl_context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/egl_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/glfw3.pc.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/glfw_config.h.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/glx_context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/glx_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/input.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/internal.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/iokit_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/iokit_joystick.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/iokit_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/iokit_joystick.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/linux_joystick.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/linux_joystick.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/mach_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/mach_time.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/mir_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/mir_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/mir_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/mir_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/mir_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/mir_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/mir_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/mir_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/nsgl_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/nsgl_context.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/posix_time.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/posix_time.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/posix_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/posix_tls.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/posix_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/posix_tls.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/wgl_context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/wgl_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/win32_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/win32_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/win32_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/win32_time.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/win32_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/win32_tls.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/win32_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/win32_tls.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/win32_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/winmm_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/winmm_joystick.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/winmm_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/winmm_joystick.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/wl_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/wl_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/wl_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/wl_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/x11_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/x11_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/x11_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/x11_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/xkb_unicode.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.1.1/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glfw-3.1.1/src/xkb_unicode.h -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/CTestConfig.cmake -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/copying.txt -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00002.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00007.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00011.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00012.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00014.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00015.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00016.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00017.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00018.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00019.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00021.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00022.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00024.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00025.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00027.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00028.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00029.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00030.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00031.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00041.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00041.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00042.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00042.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00043.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00043.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00044.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00044.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00045.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00045.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00047.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00047.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00049.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00049.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00050.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00050.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00051.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00051.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00059.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00059.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00060.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00060.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00062.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00062.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00063.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00063.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00064.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00064.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00065.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00065.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00066.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00066.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00067.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00067.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00068.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00068.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00070.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00070.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00071.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00071.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00072.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00072.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00073.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00073.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00074.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00074.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00075.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00075.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00076.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00076.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00077.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00077.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00078.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00078.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00079.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00079.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00080.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00080.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00081.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00081.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00082.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00082.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00083.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00083.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00085.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00085.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00086.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00086.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00087.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00087.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00088.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00088.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00089.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00089.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00090.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00090.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00091.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00091.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00092.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00092.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00094.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00094.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00095.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00095.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00097.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00097.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00098.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00098.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00099.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00099.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00100.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00102.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00102.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00103.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00103.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00105.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00105.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00106.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00106.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00107.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00107.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00110.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00111.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00112.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00112.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00113.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00114.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00114.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00115.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00115.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00116.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00116.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00117.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00117.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00132.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00133.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00139.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00139.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00142.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00142.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00143.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00143.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00144.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00144.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00145.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00145.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00146.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00146.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00147.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00147.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00148.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00148.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00149.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00149.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00150.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00151.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00151.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00155.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00155.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00156.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00156.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00157.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00157.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00158.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00158.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00159.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00159.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00160.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00161.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00162.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00163.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00164.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00164.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00165.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00165.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00166.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00166.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00167.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00167.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00168.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00168.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00169.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00169.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00170.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00171.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00172.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00173.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00173.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00174.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00174.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00175.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00175.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00176.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00176.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00177.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00177.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00178.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00178.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00179.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00179.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00180.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00180.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00181.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00181.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00182.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00182.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00183.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00183.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00184.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00184.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00185.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00185.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00186.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00186.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00187.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00187.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00188.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00188.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00189.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00189.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00190.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00190.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00191.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00191.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00192.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00192.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00193.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00193.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00194.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00194.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00195.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00195.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00196.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00196.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00197.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00197.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00198.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00198.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00199.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00199.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00200.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00201.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00202.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00203.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00204.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00204.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00205.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00205.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00206.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00206.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00207.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00207.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00208.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00208.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00209.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00209.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00210.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00211.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00212.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00213.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00214.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00215.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00215.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00216.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00216.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00217.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00217.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00218.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00218.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00219.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00219.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00220.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00221.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00222.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00223.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00224.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00224.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00225.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00225.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00226.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00226.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00227.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00227.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00228.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00228.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00229.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00229.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00230.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00230.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00231.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00231.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00232.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00232.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00233.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00233.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00234.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00234.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00235.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00235.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00236.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00236.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00237.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00237.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00238.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00238.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/a00240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/a00240.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/bc_s.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/bdwn.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/closed.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/doxygen.css -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/doxygen.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/dynsections.js -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/files.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2blank.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2cl.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2doc.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2link.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2mnode.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2mo.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2node.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2ns.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/ftv2pnode.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/index.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/jquery.js -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/modules.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/nav_f.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/nav_g.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/nav_h.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/open.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/pages.html -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/sync_off.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/sync_on.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/tab_a.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/tab_b.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/tab_h.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/tab_s.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/api/tabs.css -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/glm.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/glm.docx -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/glm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/glm.pdf -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/logo.png -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/man.doxy -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/pages.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/pages.doxy -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/theme/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/theme/doxygen.css -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/theme/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/theme/tabs.css -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/doc/~$glm.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/doc/~$glm.docx -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/common.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/detail/glm.cpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/detail/hint.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/detail/setup.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/exponential.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/ext.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/fwd.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/geometric.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/glm.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/constants.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/noise.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/packing.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/random.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/random.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/bit.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/extend.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/integer.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/io.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/io.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/norm.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/normal.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/projection.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/random.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/spline.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/transform.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/integer.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat2x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat2x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat2x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat3x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat3x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat3x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat4x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat4x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/mat4x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/matrix.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/packing.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/trigonometric.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/vec2.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/vec3.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/glm/vec4.hpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/readme.txt -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/test/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/external/gli/core/dummy.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/test/glm.cppcheck -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/gtx/gtx_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/test/gtx/gtx_bit.cpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/util/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/util/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/util/FindGLM.cmake -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/util/autoexp.txt -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/util/glm.natvis -------------------------------------------------------------------------------- /thirdparty/glm-0.9.5.4/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/glm-0.9.5.4/util/usertype.dat -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/.hg_archival.txt -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/.hgignore -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/README.md -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/img_mars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/img_mars.jpg -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/img_test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/img_test.bmp -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/img_test.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/img_test.dds -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/img_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/img_test.png -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/img_test.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/img_test.tga -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/lenna1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/lenna1.jpg -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/lenna2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/lenna2.jpg -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/lenna3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/lenna3.jpg -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/test.pkm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/test.pkm -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/bin/test_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/bin/test_rect.png -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/premake4.lua -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/src/SOIL2/SOIL2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/src/SOIL2/SOIL2.c -------------------------------------------------------------------------------- /thirdparty/soil2-20141119/src/SOIL2/SOIL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshbot/glpp/HEAD/thirdparty/soil2-20141119/src/SOIL2/SOIL2.h --------------------------------------------------------------------------------