├── CMakeLists.txt ├── Glitter ├── Headers │ ├── ambientocclusionbuffer.hpp │ ├── blurbuffer.hpp │ ├── camera.hpp │ ├── environmentmap.hpp │ ├── filesystem.hpp │ ├── gbuffer.hpp │ ├── glitter.hpp │ ├── light.hpp │ ├── mesh.hpp │ ├── model.hpp │ ├── radiositybuffer.hpp │ └── shader.hpp ├── Resources │ ├── crytek_sponza │ │ ├── banner.mtl │ │ ├── banner.obj │ │ ├── copyright.txt │ │ ├── screenshot.jpg │ │ ├── sponza - Copy.mtl │ │ ├── sponza.mtl │ │ ├── sponza.obj │ │ └── textures │ │ │ ├── .DS_Store │ │ │ ├── background.png │ │ │ ├── background_bump.png │ │ │ ├── chain_texture.png │ │ │ ├── chain_texture_bump.png │ │ │ ├── chain_texture_mask.png │ │ │ ├── lion.png │ │ │ ├── lion2_bump.png │ │ │ ├── lion_bump.png │ │ │ ├── spnza_bricks_a_bump.png │ │ │ ├── spnza_bricks_a_diff.png │ │ │ ├── spnza_bricks_a_spec.png │ │ │ ├── sponza_arch_bump.png │ │ │ ├── sponza_arch_diff.png │ │ │ ├── sponza_arch_spec.png │ │ │ ├── sponza_ceiling_a_diff.png │ │ │ ├── sponza_ceiling_a_spec.png │ │ │ ├── sponza_column_a_bump.png │ │ │ ├── sponza_column_a_diff.png │ │ │ ├── sponza_column_a_spec.png │ │ │ ├── sponza_column_b_bump.png │ │ │ ├── sponza_column_b_diff.png │ │ │ ├── sponza_column_b_spec.png │ │ │ ├── sponza_column_c_bump.png │ │ │ ├── sponza_column_c_diff.png │ │ │ ├── sponza_column_c_spec.png │ │ │ ├── sponza_curtain_blue_diff.png │ │ │ ├── sponza_curtain_diff.png │ │ │ ├── sponza_curtain_green_diff.png │ │ │ ├── sponza_details_diff.png │ │ │ ├── sponza_details_spec.png │ │ │ ├── sponza_fabric_blue_diff.png │ │ │ ├── sponza_fabric_diff.png │ │ │ ├── sponza_fabric_green_diff.png │ │ │ ├── sponza_fabric_purple.png │ │ │ ├── sponza_fabric_spec.png │ │ │ ├── sponza_flagpole_diff.png │ │ │ ├── sponza_flagpole_spec.png │ │ │ ├── sponza_floor_a_diff.png │ │ │ ├── sponza_floor_a_spec.png │ │ │ ├── sponza_roof_diff.png │ │ │ ├── sponza_thorn_bump.png │ │ │ ├── sponza_thorn_diff.png │ │ │ ├── sponza_thorn_mask.png │ │ │ ├── sponza_thorn_spec.png │ │ │ ├── vase_bump.png │ │ │ ├── vase_dif.png │ │ │ ├── vase_hanging.png │ │ │ ├── vase_plant.png │ │ │ ├── vase_plant_mask.png │ │ │ ├── vase_plant_spec.png │ │ │ ├── vase_round.png │ │ │ ├── vase_round_bump.png │ │ │ └── vase_round_spec.png │ └── environment │ │ └── Yokohama2 │ │ ├── negx.jpg │ │ ├── negy.jpg │ │ ├── negz.jpg │ │ ├── posx.jpg │ │ ├── posy.jpg │ │ ├── posz.jpg │ │ └── readme.txt ├── Shaders │ ├── blur.frag.glsl │ ├── blurRadiosity.frag.glsl │ ├── combine.frag.glsl │ ├── depthMap.frag.glsl │ ├── depthMap.geom.glsl │ ├── depthMap.vert.glsl │ ├── envMap.frag.glsl │ ├── envMap.vert.glsl │ ├── geometry.frag.glsl │ ├── geometry.geom.glsl │ ├── geometry.vert.glsl │ ├── lightSource.frag.glsl │ ├── lighting.frag.glsl │ ├── lighting.geom.glsl │ ├── lighting.vert.glsl │ ├── radiosity.frag.glsl │ ├── ssao.frag.glsl │ └── ssao.vert.glsl ├── Sources │ └── main.cpp └── Vendor │ ├── assimp │ ├── .coveralls.yml │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.sh │ ├── .travis.yml │ ├── AssimpBuildTreeSettings.cmake.in │ ├── AssimpConfig.cmake.in │ ├── AssimpConfigVersion.cmake.in │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CREDITS │ ├── CodeConventions.md │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── Readme.md │ ├── appveyor.yml │ ├── assimp-config-version.cmake.in │ ├── assimp-config.cmake.in │ ├── assimp.pc.in │ ├── cmake-modules │ │ ├── Coveralls.cmake │ │ ├── CoverallsClear.cmake │ │ ├── CoverallsGenerateGcov.cmake │ │ ├── DebSourcePPA.cmake │ │ ├── FindDirectX.cmake │ │ ├── FindPkgMacros.cmake │ │ ├── FindRT.cmake │ │ ├── FindZLIB.cmake │ │ ├── Findassimp.cmake │ │ ├── MinGW_x86_64.cmake │ │ ├── PrecompiledHeader.cmake │ │ └── cmake_uninstall.cmake.in │ ├── code │ │ ├── .editorconfig │ │ ├── 3DSConverter.cpp │ │ ├── 3DSExporter.cpp │ │ ├── 3DSExporter.h │ │ ├── 3DSHelper.h │ │ ├── 3DSLoader.cpp │ │ ├── 3DSLoader.h │ │ ├── ACLoader.cpp │ │ ├── ACLoader.h │ │ ├── AMFImporter.cpp │ │ ├── AMFImporter.hpp │ │ ├── AMFImporter_Geometry.cpp │ │ ├── AMFImporter_Macro.hpp │ │ ├── AMFImporter_Material.cpp │ │ ├── AMFImporter_Node.hpp │ │ ├── AMFImporter_Postprocess.cpp │ │ ├── ASELoader.cpp │ │ ├── ASELoader.h │ │ ├── ASEParser.cpp │ │ ├── ASEParser.h │ │ ├── AssbinExporter.cpp │ │ ├── AssbinExporter.h │ │ ├── AssbinLoader.cpp │ │ ├── AssbinLoader.h │ │ ├── Assimp.cpp │ │ ├── AssimpCExport.cpp │ │ ├── AssxmlExporter.cpp │ │ ├── AssxmlExporter.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 │ │ ├── ByteSwapper.h │ │ ├── C4DImporter.cpp │ │ ├── C4DImporter.h │ │ ├── CInterfaceIOWrapper.cpp │ │ ├── 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 │ │ ├── CreateAnimMesh.cpp │ │ ├── CreateAnimMesh.h │ │ ├── D3MFImporter.cpp │ │ ├── D3MFImporter.h │ │ ├── D3MFOpcPackage.cpp │ │ ├── D3MFOpcPackage.h │ │ ├── DXFHelper.h │ │ ├── DXFLoader.cpp │ │ ├── DXFLoader.h │ │ ├── DeboneProcess.cpp │ │ ├── DeboneProcess.h │ │ ├── DefaultIOStream.cpp │ │ ├── DefaultIOStream.h │ │ ├── DefaultIOSystem.cpp │ │ ├── DefaultIOSystem.h │ │ ├── DefaultLogger.cpp │ │ ├── DefaultProgressHandler.h │ │ ├── Defines.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 │ │ ├── FBXMeshGeometry.h │ │ ├── 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.h │ │ ├── IFCReaderGen1.cpp │ │ ├── IFCReaderGen2.cpp │ │ ├── IFCUtil.cpp │ │ ├── IFCUtil.h │ │ ├── IFF.h │ │ ├── IOStreamBuffer.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 │ │ ├── Macros.h │ │ ├── MakeVerboseFormat.cpp │ │ ├── MakeVerboseFormat.h │ │ ├── MaterialSystem.cpp │ │ ├── MaterialSystem.h │ │ ├── MathFunctions.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 │ │ ├── OpenGEXExporter.cpp │ │ ├── OpenGEXExporter.h │ │ ├── OpenGEXImporter.cpp │ │ ├── OpenGEXImporter.h │ │ ├── OpenGEXStructs.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 │ │ ├── SIBImporter.cpp │ │ ├── SIBImporter.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 │ │ ├── StepExporter.cpp │ │ ├── StepExporter.h │ │ ├── StreamReader.h │ │ ├── StreamWriter.h │ │ ├── StringComparison.h │ │ ├── StringUtils.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 │ │ ├── Version.cpp │ │ ├── Vertex.h │ │ ├── VertexTriangleAdjacency.cpp │ │ ├── VertexTriangleAdjacency.h │ │ ├── Win32DebugLogStream.h │ │ ├── X3DExporter.cpp │ │ ├── X3DExporter.hpp │ │ ├── X3DImporter.cpp │ │ ├── X3DImporter.hpp │ │ ├── X3DImporter_Geometry2D.cpp │ │ ├── X3DImporter_Geometry3D.cpp │ │ ├── X3DImporter_Group.cpp │ │ ├── X3DImporter_Light.cpp │ │ ├── X3DImporter_Macro.hpp │ │ ├── X3DImporter_Metadata.cpp │ │ ├── X3DImporter_Networking.cpp │ │ ├── X3DImporter_Node.hpp │ │ ├── X3DImporter_Postprocess.cpp │ │ ├── X3DImporter_Rendering.cpp │ │ ├── X3DImporter_Shape.cpp │ │ ├── X3DImporter_Texturing.cpp │ │ ├── XFileExporter.cpp │ │ ├── XFileExporter.h │ │ ├── XFileHelper.h │ │ ├── XFileImporter.cpp │ │ ├── XFileImporter.h │ │ ├── XFileParser.cpp │ │ ├── XFileParser.h │ │ ├── XGLLoader.cpp │ │ ├── XGLLoader.h │ │ ├── XMLTools.h │ │ ├── assbin_chunks.h │ │ ├── fast_atof.h │ │ ├── glTFAsset.h │ │ ├── glTFAsset.inl │ │ ├── glTFAssetWriter.h │ │ ├── glTFAssetWriter.inl │ │ ├── glTFExporter.cpp │ │ ├── glTFExporter.h │ │ ├── glTFImporter.cpp │ │ ├── glTFImporter.h │ │ ├── irrXMLWrapper.h │ │ ├── makefile.mingw │ │ ├── qnan.h │ │ ├── res │ │ │ ├── assimp.rc │ │ │ └── resource.h │ │ └── scene.cpp │ ├── contrib │ │ ├── ConvertUTF │ │ │ ├── ConvertUTF.c │ │ │ ├── ConvertUTF.h │ │ │ └── readme.txt │ │ ├── Open3DGC │ │ │ ├── o3dgcAdjacencyInfo.h │ │ │ ├── o3dgcArithmeticCodec.cpp │ │ │ ├── o3dgcArithmeticCodec.h │ │ │ ├── o3dgcBinaryStream.h │ │ │ ├── o3dgcCommon.h │ │ │ ├── o3dgcDVEncodeParams.h │ │ │ ├── o3dgcDynamicVector.h │ │ │ ├── o3dgcDynamicVectorDecoder.cpp │ │ │ ├── o3dgcDynamicVectorDecoder.h │ │ │ ├── o3dgcDynamicVectorEncoder.cpp │ │ │ ├── o3dgcDynamicVectorEncoder.h │ │ │ ├── o3dgcFIFO.h │ │ │ ├── o3dgcIndexedFaceSet.h │ │ │ ├── o3dgcIndexedFaceSet.inl │ │ │ ├── o3dgcSC3DMCDecoder.h │ │ │ ├── o3dgcSC3DMCDecoder.inl │ │ │ ├── o3dgcSC3DMCEncodeParams.h │ │ │ ├── o3dgcSC3DMCEncoder.h │ │ │ ├── o3dgcSC3DMCEncoder.inl │ │ │ ├── o3dgcTimer.h │ │ │ ├── o3dgcTools.cpp │ │ │ ├── o3dgcTriangleFans.cpp │ │ │ ├── o3dgcTriangleFans.h │ │ │ ├── o3dgcTriangleListDecoder.h │ │ │ ├── o3dgcTriangleListDecoder.inl │ │ │ ├── o3dgcTriangleListEncoder.h │ │ │ ├── o3dgcTriangleListEncoder.inl │ │ │ ├── o3dgcVector.h │ │ │ └── o3dgcVector.inl │ │ ├── clipper │ │ │ ├── License.txt │ │ │ ├── clipper.cpp │ │ │ └── clipper.hpp │ │ ├── gtest │ │ │ ├── .gitignore │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-aux │ │ │ │ └── .keep │ │ │ ├── cmake │ │ │ │ └── internal_utils.cmake │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── AdvancedGuide.md │ │ │ │ ├── DevGuide.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── Primer.md │ │ │ │ ├── PumpManual.md │ │ │ │ ├── Samples.md │ │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ │ ├── V1_5_Documentation.md │ │ │ │ ├── V1_5_FAQ.md │ │ │ │ ├── V1_5_Primer.md │ │ │ │ ├── V1_5_PumpManual.md │ │ │ │ ├── V1_5_XcodeGuide.md │ │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ │ ├── V1_6_Documentation.md │ │ │ │ ├── V1_6_FAQ.md │ │ │ │ ├── V1_6_Primer.md │ │ │ │ ├── V1_6_PumpManual.md │ │ │ │ ├── V1_6_Samples.md │ │ │ │ ├── V1_6_XcodeGuide.md │ │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ │ ├── V1_7_Documentation.md │ │ │ │ ├── V1_7_FAQ.md │ │ │ │ ├── V1_7_Primer.md │ │ │ │ ├── V1_7_PumpManual.md │ │ │ │ ├── V1_7_Samples.md │ │ │ │ ├── V1_7_XcodeGuide.md │ │ │ │ └── XcodeGuide.md │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── gtest.m4 │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ ├── scripts │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ ├── release_docs.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ ├── test │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ ├── gtest-message_test.cc │ │ │ │ ├── gtest-options_test.cc │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-port_test.cc │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ ├── gtest_color_test.py │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_output_test.py │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── irrXML │ │ │ ├── CXMLReaderImpl.h │ │ │ ├── heapsort.h │ │ │ ├── irrArray.h │ │ │ ├── irrString.h │ │ │ ├── irrTypes.h │ │ │ ├── irrXML.cpp │ │ │ └── irrXML.h │ │ ├── irrXML_note.txt │ │ ├── openddlparser │ │ │ ├── CMakeLists.txt │ │ │ ├── CREDITS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── code │ │ │ │ ├── DDLNode.cpp │ │ │ │ ├── OpenDDLCommon.cpp │ │ │ │ ├── OpenDDLExport.cpp │ │ │ │ ├── OpenDDLParser.cpp │ │ │ │ └── Value.cpp │ │ │ └── include │ │ │ │ └── openddlparser │ │ │ │ ├── DDLNode.h │ │ │ │ ├── OpenDDLCommon.h │ │ │ │ ├── OpenDDLExport.h │ │ │ │ ├── OpenDDLParser.h │ │ │ │ ├── OpenDDLParserUtils.h │ │ │ │ └── Value.h │ │ ├── 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 │ │ ├── rapidjson │ │ │ ├── include │ │ │ │ └── rapidjson │ │ │ │ │ ├── allocators.h │ │ │ │ │ ├── document.h │ │ │ │ │ ├── encodedstream.h │ │ │ │ │ ├── encodings.h │ │ │ │ │ ├── error │ │ │ │ │ ├── en.h │ │ │ │ │ └── error.h │ │ │ │ │ ├── filereadstream.h │ │ │ │ │ ├── filewritestream.h │ │ │ │ │ ├── internal │ │ │ │ │ ├── biginteger.h │ │ │ │ │ ├── diyfp.h │ │ │ │ │ ├── dtoa.h │ │ │ │ │ ├── ieee754.h │ │ │ │ │ ├── itoa.h │ │ │ │ │ ├── meta.h │ │ │ │ │ ├── pow10.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── strfunc.h │ │ │ │ │ ├── strtod.h │ │ │ │ │ └── swap.h │ │ │ │ │ ├── memorybuffer.h │ │ │ │ │ ├── memorystream.h │ │ │ │ │ ├── msinttypes │ │ │ │ │ ├── inttypes.h │ │ │ │ │ └── stdint.h │ │ │ │ │ ├── pointer.h │ │ │ │ │ ├── prettywriter.h │ │ │ │ │ ├── rapidjson.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── stringbuffer.h │ │ │ │ │ └── writer.h │ │ │ ├── license.txt │ │ │ └── readme.md │ │ ├── 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 │ ├── doc │ │ ├── AssimpCmdDoc_Html │ │ │ ├── AssimpCmdDoc.chm │ │ │ └── dragonsplash.png │ │ ├── AssimpDoc_Html │ │ │ ├── AnimationOverview.png │ │ │ ├── AnimationOverview.svg │ │ │ ├── AssimpDoc.chm │ │ │ └── dragonsplash.png │ │ ├── Doxyfile │ │ ├── Doxyfile_Cmd │ │ ├── Preamble.txt │ │ ├── architecture │ │ │ ├── Assimp_Arch_Import.class.violet.html │ │ │ └── assimp.object.violet.html │ │ ├── datastructure.xml │ │ ├── dox.h │ │ └── dox_cmd.h │ ├── include │ │ └── assimp │ │ │ ├── .editorconfig │ │ │ ├── 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.in │ │ │ ├── defs.h │ │ │ ├── importerdesc.h │ │ │ ├── light.h │ │ │ ├── material.h │ │ │ ├── material.inl │ │ │ ├── matrix3x3.h │ │ │ ├── matrix3x3.inl │ │ │ ├── matrix4x4.h │ │ │ ├── matrix4x4.inl │ │ │ ├── mesh.h │ │ │ ├── metadata.h │ │ │ ├── port │ │ │ └── AndroidJNI │ │ │ │ └── AndroidJNIIOSystem.h │ │ │ ├── postprocess.h │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── scene.h │ │ │ ├── texture.h │ │ │ ├── types.h │ │ │ ├── vector2.h │ │ │ ├── vector2.inl │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ └── version.h │ ├── packaging │ │ ├── windows-innosetup │ │ │ ├── LICENSE.rtf │ │ │ ├── WEB │ │ │ ├── howto-build-setup.txt │ │ │ ├── readme_installer.txt │ │ │ ├── readme_installer_vieweronly.txt │ │ │ ├── script.iss │ │ │ └── script_vieweronly.iss │ │ └── windows-mkzip │ │ │ ├── bin_readme.txt │ │ │ ├── mkfinal.bat │ │ │ └── mkrev.bat │ ├── port │ │ ├── AndroidJNI │ │ │ ├── AndroidJNIIOSystem.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── README.md │ │ ├── AssimpDelphi │ │ │ ├── Readme.txt │ │ │ ├── aiColor4D.pas │ │ │ ├── aiMaterial.pas │ │ │ ├── aiMatrix3x3.pas │ │ │ ├── aiMatrix4x4.pas │ │ │ ├── aiMesh.pas │ │ │ ├── aiQuaternion.pas │ │ │ ├── aiScene.pas │ │ │ ├── aiTexture.pas │ │ │ ├── aiTypes.pas │ │ │ ├── aiVector2D.pas │ │ │ ├── aiVector3D.pas │ │ │ └── assimp.pas │ │ ├── AssimpNET │ │ │ └── Readme.md │ │ ├── AssimpPascal │ │ │ └── Readme.md │ │ ├── PyAssimp │ │ │ ├── 3d_viewer_screenshot.png │ │ │ ├── README.md │ │ │ ├── gen │ │ │ │ └── structsgen.py │ │ │ ├── pyassimp │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── errors.py │ │ │ │ ├── formats.py │ │ │ │ ├── helper.py │ │ │ │ ├── postprocess.py │ │ │ │ └── structs.py │ │ │ ├── scripts │ │ │ │ ├── 3d_viewer.py │ │ │ │ ├── README.md │ │ │ │ ├── fixed_pipeline_3d_viewer.py │ │ │ │ ├── quicktest.py │ │ │ │ ├── sample.py │ │ │ │ └── transformations.py │ │ │ └── setup.py │ │ ├── dAssimp │ │ │ ├── README │ │ │ └── assimp │ │ │ │ ├── animation.d │ │ │ │ ├── api.d │ │ │ │ ├── assimp.d │ │ │ │ ├── camera.d │ │ │ │ ├── config.d │ │ │ │ ├── fileIO.d │ │ │ │ ├── light.d │ │ │ │ ├── loader.d │ │ │ │ ├── material.d │ │ │ │ ├── math.d │ │ │ │ ├── mesh.d │ │ │ │ ├── postprocess.d │ │ │ │ ├── scene.d │ │ │ │ ├── texture.d │ │ │ │ ├── types.d │ │ │ │ └── versionInfo.d │ │ ├── iOS │ │ │ ├── IPHONEOS_ARM64_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_ARMV6_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_ARMV7S_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_ARMV7_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_I386_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_X86_64_TOOLCHAIN.cmake │ │ │ ├── README.md │ │ │ └── build.sh │ │ ├── jassimp │ │ │ ├── README │ │ │ ├── build.xml │ │ │ ├── jassimp-native │ │ │ │ ├── Android.mk │ │ │ │ └── src │ │ │ │ │ ├── jassimp.cpp │ │ │ │ │ └── jassimp.h │ │ │ └── jassimp │ │ │ │ └── src │ │ │ │ └── jassimp │ │ │ │ ├── AiAnimBehavior.java │ │ │ │ ├── AiAnimation.java │ │ │ │ ├── AiBlendMode.java │ │ │ │ ├── AiBone.java │ │ │ │ ├── AiBoneWeight.java │ │ │ │ ├── AiBuiltInWrapperProvider.java │ │ │ │ ├── AiCamera.java │ │ │ │ ├── AiColor.java │ │ │ │ ├── AiConfig.java │ │ │ │ ├── AiConfigOptions.java │ │ │ │ ├── AiLight.java │ │ │ │ ├── AiLightType.java │ │ │ │ ├── AiMaterial.java │ │ │ │ ├── AiMatrix4f.java │ │ │ │ ├── AiMesh.java │ │ │ │ ├── AiMeshAnim.java │ │ │ │ ├── AiNode.java │ │ │ │ ├── AiNodeAnim.java │ │ │ │ ├── AiPostProcessSteps.java │ │ │ │ ├── AiPrimitiveType.java │ │ │ │ ├── AiQuaternion.java │ │ │ │ ├── AiScene.java │ │ │ │ ├── AiSceneFlag.java │ │ │ │ ├── AiShadingMode.java │ │ │ │ ├── AiTextureInfo.java │ │ │ │ ├── AiTextureMapMode.java │ │ │ │ ├── AiTextureMapping.java │ │ │ │ ├── AiTextureOp.java │ │ │ │ ├── AiTextureType.java │ │ │ │ ├── AiVector.java │ │ │ │ ├── AiWrapperProvider.java │ │ │ │ ├── JaiDebug.java │ │ │ │ ├── Jassimp.java │ │ │ │ ├── JassimpConfig.java │ │ │ │ └── package-info.java │ │ └── swig │ │ │ ├── DONOTUSEYET │ │ │ ├── assimp.i │ │ │ ├── d │ │ │ ├── build.sh │ │ │ └── generate.sh │ │ │ └── interface │ │ │ ├── DefaultLogger.i │ │ │ ├── IOStream.i │ │ │ ├── IOSystem.i │ │ │ ├── LogStream.i │ │ │ ├── Logger.i │ │ │ ├── NullLogger.i │ │ │ ├── aiAnim.i │ │ │ ├── aiAssert.i │ │ │ ├── aiCamera.i │ │ │ ├── aiColor4D.i │ │ │ ├── aiConfig.i │ │ │ ├── aiDefines.i │ │ │ ├── aiFileIO.i │ │ │ ├── aiLight.i │ │ │ ├── aiMaterial.i │ │ │ ├── aiMatrix3x3.i │ │ │ ├── aiMatrix4x4.i │ │ │ ├── aiMesh.i │ │ │ ├── aiPostProcess.i │ │ │ ├── aiQuaternion.i │ │ │ ├── aiScene.i │ │ │ ├── aiTexture.i │ │ │ ├── aiTypes.i │ │ │ ├── aiVector2D.i │ │ │ ├── aiVector3D.i │ │ │ ├── aiVersion.i │ │ │ └── assimp.i │ ├── revision.h.in │ └── scripts │ │ ├── BlenderImporter │ │ ├── BlenderScene.cpp.template │ │ ├── BlenderSceneGen.h.template │ │ └── genblenddna.py │ │ ├── IFCImporter │ │ ├── CppGenerator.py │ │ ├── ExpressReader.py │ │ ├── IFCReaderGen.cpp.template │ │ ├── IFCReaderGen.h.template │ │ ├── entitylist.txt │ │ ├── genentitylist.sh │ │ └── schema.exp │ │ ├── OgreImporter │ │ └── assimp.tpl │ │ └── appveyor │ │ └── compiler_setup.bat │ ├── bullet │ ├── .travis.yml │ ├── AUTHORS.txt │ ├── BulletConfig.cmake.in │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── Extras │ │ ├── CMakeLists.txt │ │ ├── ConvexDecomposition │ │ │ ├── CMakeLists.txt │ │ │ ├── ConvexBuilder.cpp │ │ │ ├── ConvexBuilder.h │ │ │ ├── ConvexDecomposition.cpp │ │ │ ├── ConvexDecomposition.h │ │ │ ├── bestfit.cpp │ │ │ ├── bestfit.h │ │ │ ├── bestfitobb.cpp │ │ │ ├── bestfitobb.h │ │ │ ├── cd_hull.cpp │ │ │ ├── cd_hull.h │ │ │ ├── cd_vector.h │ │ │ ├── cd_wavefront.cpp │ │ │ ├── cd_wavefront.h │ │ │ ├── concavity.cpp │ │ │ ├── concavity.h │ │ │ ├── fitsphere.cpp │ │ │ ├── fitsphere.h │ │ │ ├── float_math.cpp │ │ │ ├── float_math.h │ │ │ ├── meshvolume.cpp │ │ │ ├── meshvolume.h │ │ │ ├── planetri.cpp │ │ │ ├── planetri.h │ │ │ ├── premake4.lua │ │ │ ├── raytri.cpp │ │ │ ├── raytri.h │ │ │ ├── splitplane.cpp │ │ │ ├── splitplane.h │ │ │ ├── vlookup.cpp │ │ │ └── vlookup.h │ │ ├── GIMPACTUtils │ │ │ ├── CMakeLists.txt │ │ │ ├── btGImpactConvexDecompositionShape.cpp │ │ │ └── btGImpactConvexDecompositionShape.h │ │ ├── HACD │ │ │ ├── CMakeLists.txt │ │ │ ├── hacdCircularList.h │ │ │ ├── hacdCircularList.inl │ │ │ ├── hacdGraph.cpp │ │ │ ├── hacdGraph.h │ │ │ ├── hacdHACD.cpp │ │ │ ├── hacdHACD.h │ │ │ ├── hacdICHull.cpp │ │ │ ├── hacdICHull.h │ │ │ ├── hacdManifoldMesh.cpp │ │ │ ├── hacdManifoldMesh.h │ │ │ ├── hacdVector.h │ │ │ ├── hacdVector.inl │ │ │ ├── hacdVersion.h │ │ │ └── premake4.lua │ │ ├── InverseDynamics │ │ │ ├── BulletInverseDynamicsUtilsCommon.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CloneTreeCreator.cpp │ │ │ ├── CloneTreeCreator.hpp │ │ │ ├── CoilCreator.cpp │ │ │ ├── CoilCreator.hpp │ │ │ ├── DillCreator.cpp │ │ │ ├── DillCreator.hpp │ │ │ ├── IDRandomUtil.cpp │ │ │ ├── IDRandomUtil.hpp │ │ │ ├── MultiBodyNameMap.cpp │ │ │ ├── MultiBodyNameMap.hpp │ │ │ ├── MultiBodyTreeCreator.cpp │ │ │ ├── MultiBodyTreeCreator.hpp │ │ │ ├── MultiBodyTreeDebugGraph.cpp │ │ │ ├── MultiBodyTreeDebugGraph.hpp │ │ │ ├── RandomTreeCreator.cpp │ │ │ ├── RandomTreeCreator.hpp │ │ │ ├── SimpleTreeCreator.cpp │ │ │ ├── SimpleTreeCreator.hpp │ │ │ ├── User2InternalIndex.cpp │ │ │ ├── User2InternalIndex.hpp │ │ │ ├── btMultiBodyFromURDF.hpp │ │ │ ├── btMultiBodyTreeCreator.cpp │ │ │ ├── btMultiBodyTreeCreator.hpp │ │ │ ├── invdyn_bullet_comparison.cpp │ │ │ ├── invdyn_bullet_comparison.hpp │ │ │ └── premake4.lua │ │ ├── Makefile.am │ │ ├── Serialize │ │ │ ├── BlenderSerialize │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bBlenderFile.cpp │ │ │ │ ├── bBlenderFile.h │ │ │ │ ├── bMain.cpp │ │ │ │ ├── bMain.h │ │ │ │ ├── dna249-64bit.cpp │ │ │ │ └── dna249.cpp │ │ │ ├── BulletFileLoader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── autogenerated │ │ │ │ │ └── bullet.h │ │ │ │ ├── bChunk.cpp │ │ │ │ ├── bChunk.h │ │ │ │ ├── bCommon.h │ │ │ │ ├── bDNA.cpp │ │ │ │ ├── bDNA.h │ │ │ │ ├── bDefines.h │ │ │ │ ├── bFile.cpp │ │ │ │ ├── bFile.h │ │ │ │ ├── btBulletFile.cpp │ │ │ │ ├── btBulletFile.h │ │ │ │ └── premake4.lua │ │ │ ├── BulletWorldImporter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btBulletWorldImporter.cpp │ │ │ │ ├── btBulletWorldImporter.h │ │ │ │ ├── btWorldImporter.cpp │ │ │ │ ├── btWorldImporter.h │ │ │ │ └── premake4.lua │ │ │ ├── BulletXmlWorldImporter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btBulletXmlWorldImporter.cpp │ │ │ │ ├── btBulletXmlWorldImporter.h │ │ │ │ ├── premake4.lua │ │ │ │ ├── string_split.cpp │ │ │ │ ├── string_split.h │ │ │ │ ├── tinystr.cpp │ │ │ │ ├── tinystr.h │ │ │ │ ├── tinyxml.cpp │ │ │ │ ├── tinyxml.h │ │ │ │ ├── tinyxmlerror.cpp │ │ │ │ └── tinyxmlparser.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── HeaderGenerator │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── apiGen.cpp │ │ │ │ ├── blenderGenerate.py │ │ │ │ ├── bulletGenerate.py │ │ │ │ └── createDnaString.bat │ │ │ ├── ReadBulletSample │ │ │ │ ├── BulletDataExtractor.cpp │ │ │ │ ├── BulletDataExtractor.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── makesdna │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DNA_rigidbody.h │ │ │ │ └── makesdna.cpp │ │ ├── VHACD │ │ │ ├── inc │ │ │ │ ├── btAlignedAllocator.h │ │ │ │ ├── btAlignedObjectArray.h │ │ │ │ ├── btConvexHullComputer.h │ │ │ │ ├── btMinMax.h │ │ │ │ ├── btScalar.h │ │ │ │ ├── btVector3.h │ │ │ │ ├── vhacdCircularList.h │ │ │ │ ├── vhacdCircularList.inl │ │ │ │ ├── vhacdICHull.h │ │ │ │ ├── vhacdManifoldMesh.h │ │ │ │ ├── vhacdMesh.h │ │ │ │ ├── vhacdMutex.h │ │ │ │ ├── vhacdSArray.h │ │ │ │ ├── vhacdTimer.h │ │ │ │ ├── vhacdVHACD.h │ │ │ │ ├── vhacdVector.h │ │ │ │ ├── vhacdVector.inl │ │ │ │ └── vhacdVolume.h │ │ │ ├── premake4.lua │ │ │ ├── public │ │ │ │ └── VHACD.h │ │ │ ├── src │ │ │ │ ├── VHACD.cpp │ │ │ │ ├── btAlignedAllocator.cpp │ │ │ │ ├── btConvexHullComputer.cpp │ │ │ │ ├── premake4.lua │ │ │ │ ├── vhacdICHull.cpp │ │ │ │ ├── vhacdManifoldMesh.cpp │ │ │ │ ├── vhacdMesh.cpp │ │ │ │ └── vhacdVolume.cpp │ │ │ └── test │ │ │ │ ├── inc │ │ │ │ └── oclHelper.h │ │ │ │ └── src │ │ │ │ ├── main.cpp │ │ │ │ ├── oclHelper.cpp │ │ │ │ └── premake4.lua │ │ └── premake4.lua │ ├── LICENSE.txt │ ├── README.md │ ├── UseBullet.cmake │ ├── VERSION │ ├── appveyor.yml │ ├── build3 │ │ ├── Android │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ ├── bin2cpp.bat │ │ ├── bin2cpp.lua │ │ ├── bullet.rc │ │ ├── bullet_ico.ico │ │ ├── cmake │ │ │ └── FindNumPy.cmake │ │ ├── findDirectX11.lua │ │ ├── findOpenCL.lua │ │ ├── findOpenGLGlewGlut.lua │ │ ├── lcpp.lua │ │ ├── premake4.exe │ │ ├── premake4.lua │ │ ├── premake4_linux │ │ ├── premake4_linux64 │ │ ├── premake4_osx │ │ ├── premake4_osx32 │ │ ├── premake5.exe │ │ ├── stringify.bat │ │ ├── stringify.sh │ │ ├── stringifyKernel.lua │ │ └── stringifyShaders.bat │ ├── build_and_run_cmake.sh │ ├── build_and_run_cmake_pybullet_double.sh │ ├── build_and_run_premake.sh │ ├── build_cmake_pybullet_win32.bat │ ├── build_visual_studio.bat │ ├── build_visual_studio_vr_pybullet_double.bat │ ├── bullet.pc.cmake │ ├── src │ │ ├── Bullet3Collision │ │ │ ├── BroadPhaseCollision │ │ │ │ ├── b3BroadphaseCallback.h │ │ │ │ ├── b3DynamicBvh.cpp │ │ │ │ ├── b3DynamicBvh.h │ │ │ │ ├── b3DynamicBvhBroadphase.cpp │ │ │ │ ├── b3DynamicBvhBroadphase.h │ │ │ │ ├── b3OverlappingPair.h │ │ │ │ ├── b3OverlappingPairCache.cpp │ │ │ │ ├── b3OverlappingPairCache.h │ │ │ │ └── shared │ │ │ │ │ └── b3Aabb.h │ │ │ ├── CMakeLists.txt │ │ │ ├── NarrowPhaseCollision │ │ │ │ ├── b3Config.h │ │ │ │ ├── b3Contact4.h │ │ │ │ ├── b3ConvexUtility.cpp │ │ │ │ ├── b3ConvexUtility.h │ │ │ │ ├── b3CpuNarrowPhase.cpp │ │ │ │ ├── b3CpuNarrowPhase.h │ │ │ │ ├── b3RaycastInfo.h │ │ │ │ ├── b3RigidBodyCL.h │ │ │ │ └── shared │ │ │ │ │ ├── b3BvhSubtreeInfoData.h │ │ │ │ │ ├── b3BvhTraversal.h │ │ │ │ │ ├── b3ClipFaces.h │ │ │ │ │ ├── b3Collidable.h │ │ │ │ │ ├── b3Contact4Data.h │ │ │ │ │ ├── b3ContactConvexConvexSAT.h │ │ │ │ │ ├── b3ContactSphereSphere.h │ │ │ │ │ ├── b3ConvexPolyhedronData.h │ │ │ │ │ ├── b3FindConcaveSatAxis.h │ │ │ │ │ ├── b3FindSeparatingAxis.h │ │ │ │ │ ├── b3MprPenetration.h │ │ │ │ │ ├── b3NewContactReduction.h │ │ │ │ │ ├── b3QuantizedBvhNodeData.h │ │ │ │ │ ├── b3ReduceContacts.h │ │ │ │ │ ├── b3RigidBodyData.h │ │ │ │ │ └── b3UpdateAabbs.h │ │ │ └── premake4.lua │ │ ├── Bullet3Common │ │ │ ├── CMakeLists.txt │ │ │ ├── b3AlignedAllocator.cpp │ │ │ ├── b3AlignedAllocator.h │ │ │ ├── b3AlignedObjectArray.h │ │ │ ├── b3CommandLineArgs.h │ │ │ ├── b3FileUtils.h │ │ │ ├── b3HashMap.h │ │ │ ├── b3Logging.cpp │ │ │ ├── b3Logging.h │ │ │ ├── b3Matrix3x3.h │ │ │ ├── b3MinMax.h │ │ │ ├── b3PoolAllocator.h │ │ │ ├── b3QuadWord.h │ │ │ ├── b3Quaternion.h │ │ │ ├── b3Random.h │ │ │ ├── b3Scalar.h │ │ │ ├── b3StackAlloc.h │ │ │ ├── b3Transform.h │ │ │ ├── b3TransformUtil.h │ │ │ ├── b3Vector3.cpp │ │ │ ├── b3Vector3.h │ │ │ ├── premake4.lua │ │ │ └── shared │ │ │ │ ├── b3Float4.h │ │ │ │ ├── b3Int2.h │ │ │ │ ├── b3Int4.h │ │ │ │ ├── b3Mat3x3.h │ │ │ │ ├── b3PlatformDefinitions.h │ │ │ │ └── b3Quat.h │ │ ├── Bullet3Dynamics │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstraintSolver │ │ │ │ ├── b3ContactSolverInfo.h │ │ │ │ ├── b3FixedConstraint.cpp │ │ │ │ ├── b3FixedConstraint.h │ │ │ │ ├── b3Generic6DofConstraint.cpp │ │ │ │ ├── b3Generic6DofConstraint.h │ │ │ │ ├── b3JacobianEntry.h │ │ │ │ ├── b3PgsJacobiSolver.cpp │ │ │ │ ├── b3PgsJacobiSolver.h │ │ │ │ ├── b3Point2PointConstraint.cpp │ │ │ │ ├── b3Point2PointConstraint.h │ │ │ │ ├── b3SolverBody.h │ │ │ │ ├── b3SolverConstraint.h │ │ │ │ ├── b3TypedConstraint.cpp │ │ │ │ └── b3TypedConstraint.h │ │ │ ├── b3CpuRigidBodyPipeline.cpp │ │ │ ├── b3CpuRigidBodyPipeline.h │ │ │ ├── premake4.lua │ │ │ └── shared │ │ │ │ ├── b3ContactConstraint4.h │ │ │ │ ├── b3ConvertConstraint4.h │ │ │ │ ├── b3Inertia.h │ │ │ │ └── b3IntegrateTransforms.h │ │ ├── Bullet3Geometry │ │ │ ├── CMakeLists.txt │ │ │ ├── b3AabbUtil.h │ │ │ ├── b3ConvexHullComputer.cpp │ │ │ ├── b3ConvexHullComputer.h │ │ │ ├── b3GeometryUtil.cpp │ │ │ ├── b3GeometryUtil.h │ │ │ ├── b3GrahamScan2dConvexHull.h │ │ │ └── premake4.lua │ │ ├── Bullet3OpenCL │ │ │ ├── BroadphaseCollision │ │ │ │ ├── b3GpuBroadphaseInterface.h │ │ │ │ ├── b3GpuGridBroadphase.cpp │ │ │ │ ├── b3GpuGridBroadphase.h │ │ │ │ ├── b3GpuParallelLinearBvh.cpp │ │ │ │ ├── b3GpuParallelLinearBvh.h │ │ │ │ ├── b3GpuParallelLinearBvhBroadphase.cpp │ │ │ │ ├── b3GpuParallelLinearBvhBroadphase.h │ │ │ │ ├── b3GpuSapBroadphase.cpp │ │ │ │ ├── b3GpuSapBroadphase.h │ │ │ │ ├── b3SapAabb.h │ │ │ │ └── kernels │ │ │ │ │ ├── gridBroadphase.cl │ │ │ │ │ ├── gridBroadphaseKernels.h │ │ │ │ │ ├── parallelLinearBvh.cl │ │ │ │ │ ├── parallelLinearBvhKernels.h │ │ │ │ │ ├── sap.cl │ │ │ │ │ └── sapKernels.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Initialize │ │ │ │ ├── b3OpenCLInclude.h │ │ │ │ ├── b3OpenCLUtils.cpp │ │ │ │ └── b3OpenCLUtils.h │ │ │ ├── NarrowphaseCollision │ │ │ │ ├── b3BvhInfo.h │ │ │ │ ├── b3ContactCache.cpp │ │ │ │ ├── b3ContactCache.h │ │ │ │ ├── b3ConvexHullContact.cpp │ │ │ │ ├── b3ConvexHullContact.h │ │ │ │ ├── b3ConvexPolyhedronCL.h │ │ │ │ ├── b3GjkEpa.cpp │ │ │ │ ├── b3GjkEpa.h │ │ │ │ ├── b3GjkPairDetector.cpp │ │ │ │ ├── b3GjkPairDetector.h │ │ │ │ ├── b3OptimizedBvh.cpp │ │ │ │ ├── b3OptimizedBvh.h │ │ │ │ ├── b3QuantizedBvh.cpp │ │ │ │ ├── b3QuantizedBvh.h │ │ │ │ ├── b3StridingMeshInterface.cpp │ │ │ │ ├── b3StridingMeshInterface.h │ │ │ │ ├── b3SupportMappings.h │ │ │ │ ├── b3TriangleCallback.cpp │ │ │ │ ├── b3TriangleCallback.h │ │ │ │ ├── b3TriangleIndexVertexArray.cpp │ │ │ │ ├── b3TriangleIndexVertexArray.h │ │ │ │ ├── b3VectorFloat4.h │ │ │ │ ├── b3VoronoiSimplexSolver.cpp │ │ │ │ ├── b3VoronoiSimplexSolver.h │ │ │ │ └── kernels │ │ │ │ │ ├── bvhTraversal.cl │ │ │ │ │ ├── bvhTraversal.h │ │ │ │ │ ├── mpr.cl │ │ │ │ │ ├── mprKernels.h │ │ │ │ │ ├── primitiveContacts.cl │ │ │ │ │ ├── primitiveContacts.h │ │ │ │ │ ├── sat.cl │ │ │ │ │ ├── satClipHullContacts.cl │ │ │ │ │ ├── satClipHullContacts.h │ │ │ │ │ ├── satConcave.cl │ │ │ │ │ ├── satConcaveKernels.h │ │ │ │ │ └── satKernels.h │ │ │ ├── ParallelPrimitives │ │ │ │ ├── b3BoundSearchCL.cpp │ │ │ │ ├── b3BoundSearchCL.h │ │ │ │ ├── b3BufferInfoCL.h │ │ │ │ ├── b3FillCL.cpp │ │ │ │ ├── b3FillCL.h │ │ │ │ ├── b3LauncherCL.cpp │ │ │ │ ├── b3LauncherCL.h │ │ │ │ ├── b3OpenCLArray.h │ │ │ │ ├── b3PrefixScanCL.cpp │ │ │ │ ├── b3PrefixScanCL.h │ │ │ │ ├── b3PrefixScanFloat4CL.cpp │ │ │ │ ├── b3PrefixScanFloat4CL.h │ │ │ │ ├── b3RadixSort32CL.cpp │ │ │ │ ├── b3RadixSort32CL.h │ │ │ │ └── kernels │ │ │ │ │ ├── BoundSearchKernels.cl │ │ │ │ │ ├── BoundSearchKernelsCL.h │ │ │ │ │ ├── CopyKernels.cl │ │ │ │ │ ├── CopyKernelsCL.h │ │ │ │ │ ├── FillKernels.cl │ │ │ │ │ ├── FillKernelsCL.h │ │ │ │ │ ├── PrefixScanFloat4Kernels.cl │ │ │ │ │ ├── PrefixScanKernels.cl │ │ │ │ │ ├── PrefixScanKernelsCL.h │ │ │ │ │ ├── PrefixScanKernelsFloat4CL.h │ │ │ │ │ ├── RadixSort32Kernels.cl │ │ │ │ │ └── RadixSort32KernelsCL.h │ │ │ ├── Raycast │ │ │ │ ├── b3GpuRaycast.cpp │ │ │ │ ├── b3GpuRaycast.h │ │ │ │ └── kernels │ │ │ │ │ ├── rayCastKernels.cl │ │ │ │ │ └── rayCastKernels.h │ │ │ ├── RigidBody │ │ │ │ ├── b3GpuConstraint4.h │ │ │ │ ├── b3GpuGenericConstraint.cpp │ │ │ │ ├── b3GpuGenericConstraint.h │ │ │ │ ├── b3GpuJacobiContactSolver.cpp │ │ │ │ ├── b3GpuJacobiContactSolver.h │ │ │ │ ├── b3GpuNarrowPhase.cpp │ │ │ │ ├── b3GpuNarrowPhase.h │ │ │ │ ├── b3GpuNarrowPhaseInternalData.h │ │ │ │ ├── b3GpuPgsConstraintSolver.cpp │ │ │ │ ├── b3GpuPgsConstraintSolver.h │ │ │ │ ├── b3GpuPgsContactSolver.cpp │ │ │ │ ├── b3GpuPgsContactSolver.h │ │ │ │ ├── b3GpuRigidBodyPipeline.cpp │ │ │ │ ├── b3GpuRigidBodyPipeline.h │ │ │ │ ├── b3GpuRigidBodyPipelineInternalData.h │ │ │ │ ├── b3GpuSolverBody.h │ │ │ │ ├── b3GpuSolverConstraint.h │ │ │ │ ├── b3Solver.cpp │ │ │ │ ├── b3Solver.h │ │ │ │ └── kernels │ │ │ │ │ ├── batchingKernels.cl │ │ │ │ │ ├── batchingKernels.h │ │ │ │ │ ├── batchingKernelsNew.cl │ │ │ │ │ ├── batchingKernelsNew.h │ │ │ │ │ ├── integrateKernel.cl │ │ │ │ │ ├── integrateKernel.h │ │ │ │ │ ├── jointSolver.cl │ │ │ │ │ ├── jointSolver.h │ │ │ │ │ ├── solveContact.cl │ │ │ │ │ ├── solveContact.h │ │ │ │ │ ├── solveFriction.cl │ │ │ │ │ ├── solveFriction.h │ │ │ │ │ ├── solverSetup.cl │ │ │ │ │ ├── solverSetup.h │ │ │ │ │ ├── solverSetup2.cl │ │ │ │ │ ├── solverSetup2.h │ │ │ │ │ ├── solverUtils.cl │ │ │ │ │ ├── solverUtils.h │ │ │ │ │ ├── updateAabbsKernel.cl │ │ │ │ │ └── updateAabbsKernel.h │ │ │ └── premake4.lua │ │ ├── Bullet3Serialize │ │ │ └── Bullet2FileLoader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── autogenerated │ │ │ │ └── bullet2.h │ │ │ │ ├── b3BulletFile.cpp │ │ │ │ ├── b3BulletFile.h │ │ │ │ ├── b3Chunk.cpp │ │ │ │ ├── b3Chunk.h │ │ │ │ ├── b3Common.h │ │ │ │ ├── b3DNA.cpp │ │ │ │ ├── b3DNA.h │ │ │ │ ├── b3Defines.h │ │ │ │ ├── b3File.cpp │ │ │ │ ├── b3File.h │ │ │ │ ├── b3Serializer.cpp │ │ │ │ ├── b3Serializer.h │ │ │ │ └── premake4.lua │ │ ├── BulletCollision │ │ │ ├── BroadphaseCollision │ │ │ │ ├── btAxisSweep3.cpp │ │ │ │ ├── btAxisSweep3.h │ │ │ │ ├── btBroadphaseInterface.h │ │ │ │ ├── btBroadphaseProxy.cpp │ │ │ │ ├── btBroadphaseProxy.h │ │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ │ ├── btCollisionAlgorithm.h │ │ │ │ ├── btDbvt.cpp │ │ │ │ ├── btDbvt.h │ │ │ │ ├── btDbvtBroadphase.cpp │ │ │ │ ├── btDbvtBroadphase.h │ │ │ │ ├── btDispatcher.cpp │ │ │ │ ├── btDispatcher.h │ │ │ │ ├── btOverlappingPairCache.cpp │ │ │ │ ├── btOverlappingPairCache.h │ │ │ │ ├── btOverlappingPairCallback.h │ │ │ │ ├── btQuantizedBvh.cpp │ │ │ │ ├── btQuantizedBvh.h │ │ │ │ ├── btSimpleBroadphase.cpp │ │ │ │ └── btSimpleBroadphase.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CollisionDispatch │ │ │ │ ├── SphereTriangleDetector.cpp │ │ │ │ ├── SphereTriangleDetector.h │ │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxDetector.cpp │ │ │ │ ├── btBoxBoxDetector.h │ │ │ │ ├── btCollisionConfiguration.h │ │ │ │ ├── btCollisionCreateFunc.h │ │ │ │ ├── btCollisionDispatcher.cpp │ │ │ │ ├── btCollisionDispatcher.h │ │ │ │ ├── btCollisionObject.cpp │ │ │ │ ├── btCollisionObject.h │ │ │ │ ├── btCollisionObjectWrapper.h │ │ │ │ ├── btCollisionWorld.cpp │ │ │ │ ├── btCollisionWorld.h │ │ │ │ ├── btCollisionWorldImporter.cpp │ │ │ │ ├── btCollisionWorldImporter.h │ │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ │ ├── btCompoundCompoundCollisionAlgorithm.cpp │ │ │ │ ├── btCompoundCompoundCollisionAlgorithm.h │ │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ │ ├── btGhostObject.cpp │ │ │ │ ├── btGhostObject.h │ │ │ │ ├── btHashedSimplePairCache.cpp │ │ │ │ ├── btHashedSimplePairCache.h │ │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ │ ├── btInternalEdgeUtility.h │ │ │ │ ├── btManifoldResult.cpp │ │ │ │ ├── btManifoldResult.h │ │ │ │ ├── btSimulationIslandManager.cpp │ │ │ │ ├── btSimulationIslandManager.h │ │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ │ ├── btUnionFind.cpp │ │ │ │ └── btUnionFind.h │ │ │ ├── CollisionShapes │ │ │ │ ├── btBox2dShape.cpp │ │ │ │ ├── btBox2dShape.h │ │ │ │ ├── btBoxShape.cpp │ │ │ │ ├── btBoxShape.h │ │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ │ ├── btCapsuleShape.cpp │ │ │ │ ├── btCapsuleShape.h │ │ │ │ ├── btCollisionMargin.h │ │ │ │ ├── btCollisionShape.cpp │ │ │ │ ├── btCollisionShape.h │ │ │ │ ├── btCompoundShape.cpp │ │ │ │ ├── btCompoundShape.h │ │ │ │ ├── btConcaveShape.cpp │ │ │ │ ├── btConcaveShape.h │ │ │ │ ├── btConeShape.cpp │ │ │ │ ├── btConeShape.h │ │ │ │ ├── btConvex2dShape.cpp │ │ │ │ ├── btConvex2dShape.h │ │ │ │ ├── btConvexHullShape.cpp │ │ │ │ ├── btConvexHullShape.h │ │ │ │ ├── btConvexInternalShape.cpp │ │ │ │ ├── btConvexInternalShape.h │ │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ │ ├── btConvexPointCloudShape.h │ │ │ │ ├── btConvexPolyhedron.cpp │ │ │ │ ├── btConvexPolyhedron.h │ │ │ │ ├── btConvexShape.cpp │ │ │ │ ├── btConvexShape.h │ │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ │ ├── btCylinderShape.cpp │ │ │ │ ├── btCylinderShape.h │ │ │ │ ├── btEmptyShape.cpp │ │ │ │ ├── btEmptyShape.h │ │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ │ ├── btMaterial.h │ │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ │ ├── btMinkowskiSumShape.h │ │ │ │ ├── btMultiSphereShape.cpp │ │ │ │ ├── btMultiSphereShape.h │ │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ │ ├── btOptimizedBvh.cpp │ │ │ │ ├── btOptimizedBvh.h │ │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ │ ├── btPolyhedralConvexShape.h │ │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ │ ├── btShapeHull.cpp │ │ │ │ ├── btShapeHull.h │ │ │ │ ├── btSphereShape.cpp │ │ │ │ ├── btSphereShape.h │ │ │ │ ├── btStaticPlaneShape.cpp │ │ │ │ ├── btStaticPlaneShape.h │ │ │ │ ├── btStridingMeshInterface.cpp │ │ │ │ ├── btStridingMeshInterface.h │ │ │ │ ├── btTetrahedronShape.cpp │ │ │ │ ├── btTetrahedronShape.h │ │ │ │ ├── btTriangleBuffer.cpp │ │ │ │ ├── btTriangleBuffer.h │ │ │ │ ├── btTriangleCallback.cpp │ │ │ │ ├── btTriangleCallback.h │ │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ │ ├── btTriangleInfoMap.h │ │ │ │ ├── btTriangleMesh.cpp │ │ │ │ ├── btTriangleMesh.h │ │ │ │ ├── btTriangleMeshShape.cpp │ │ │ │ ├── btTriangleMeshShape.h │ │ │ │ ├── btTriangleShape.h │ │ │ │ ├── btUniformScalingShape.cpp │ │ │ │ └── btUniformScalingShape.h │ │ │ ├── Gimpact │ │ │ │ ├── btBoxCollision.h │ │ │ │ ├── btClipPolygon.h │ │ │ │ ├── btCompoundFromGimpact.h │ │ │ │ ├── btContactProcessing.cpp │ │ │ │ ├── btContactProcessing.h │ │ │ │ ├── btGImpactBvh.cpp │ │ │ │ ├── btGImpactBvh.h │ │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ │ ├── btGImpactMassUtil.h │ │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ │ ├── btGImpactShape.cpp │ │ │ │ ├── btGImpactShape.h │ │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ │ ├── btGenericPoolAllocator.h │ │ │ │ ├── btGeometryOperations.h │ │ │ │ ├── btQuantization.h │ │ │ │ ├── btTriangleShapeEx.cpp │ │ │ │ ├── btTriangleShapeEx.h │ │ │ │ ├── gim_array.h │ │ │ │ ├── gim_basic_geometry_operations.h │ │ │ │ ├── gim_bitset.h │ │ │ │ ├── gim_box_collision.h │ │ │ │ ├── gim_box_set.cpp │ │ │ │ ├── gim_box_set.h │ │ │ │ ├── gim_clip_polygon.h │ │ │ │ ├── gim_contact.cpp │ │ │ │ ├── gim_contact.h │ │ │ │ ├── gim_geom_types.h │ │ │ │ ├── gim_geometry.h │ │ │ │ ├── gim_hash_table.h │ │ │ │ ├── gim_linear_math.h │ │ │ │ ├── gim_math.h │ │ │ │ ├── gim_memory.cpp │ │ │ │ ├── gim_memory.h │ │ │ │ ├── gim_radixsort.h │ │ │ │ ├── gim_tri_collision.cpp │ │ │ │ └── gim_tri_collision.h │ │ │ ├── NarrowPhaseCollision │ │ │ │ ├── btComputeGjkEpaPenetration.h │ │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ │ ├── btContinuousConvexCollision.h │ │ │ │ ├── btConvexCast.cpp │ │ │ │ ├── btConvexCast.h │ │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ │ ├── btGjkCollisionDescription.h │ │ │ │ ├── btGjkConvexCast.cpp │ │ │ │ ├── btGjkConvexCast.h │ │ │ │ ├── btGjkEpa2.cpp │ │ │ │ ├── btGjkEpa2.h │ │ │ │ ├── btGjkEpa3.h │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ │ ├── btGjkPairDetector.cpp │ │ │ │ ├── btGjkPairDetector.h │ │ │ │ ├── btManifoldPoint.h │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ │ ├── btMprPenetration.h │ │ │ │ ├── btPersistentManifold.cpp │ │ │ │ ├── btPersistentManifold.h │ │ │ │ ├── btPointCollector.h │ │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ │ ├── btPolyhedralContactClipping.h │ │ │ │ ├── btRaycastCallback.cpp │ │ │ │ ├── btRaycastCallback.h │ │ │ │ ├── btSimplexSolverInterface.h │ │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ │ ├── btSubSimplexConvexCast.h │ │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ │ └── btVoronoiSimplexSolver.h │ │ │ └── premake4.lua │ │ ├── BulletDynamics │ │ │ ├── CMakeLists.txt │ │ │ ├── Character │ │ │ │ ├── btCharacterControllerInterface.h │ │ │ │ ├── btKinematicCharacterController.cpp │ │ │ │ └── btKinematicCharacterController.h │ │ │ ├── ConstraintSolver │ │ │ │ ├── btConeTwistConstraint.cpp │ │ │ │ ├── btConeTwistConstraint.h │ │ │ │ ├── btConstraintSolver.h │ │ │ │ ├── btContactConstraint.cpp │ │ │ │ ├── btContactConstraint.h │ │ │ │ ├── btContactSolverInfo.h │ │ │ │ ├── btFixedConstraint.cpp │ │ │ │ ├── btFixedConstraint.h │ │ │ │ ├── btGearConstraint.cpp │ │ │ │ ├── btGearConstraint.h │ │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ │ ├── btGeneric6DofConstraint.h │ │ │ │ ├── btGeneric6DofSpring2Constraint.cpp │ │ │ │ ├── btGeneric6DofSpring2Constraint.h │ │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ │ ├── btHinge2Constraint.cpp │ │ │ │ ├── btHinge2Constraint.h │ │ │ │ ├── btHingeConstraint.cpp │ │ │ │ ├── btHingeConstraint.h │ │ │ │ ├── btJacobianEntry.h │ │ │ │ ├── btNNCGConstraintSolver.cpp │ │ │ │ ├── btNNCGConstraintSolver.h │ │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ │ ├── btPoint2PointConstraint.h │ │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ │ ├── btSliderConstraint.cpp │ │ │ │ ├── btSliderConstraint.h │ │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ │ ├── btSolve2LinearConstraint.h │ │ │ │ ├── btSolverBody.h │ │ │ │ ├── btSolverConstraint.h │ │ │ │ ├── btTypedConstraint.cpp │ │ │ │ ├── btTypedConstraint.h │ │ │ │ ├── btUniversalConstraint.cpp │ │ │ │ └── btUniversalConstraint.h │ │ │ ├── Dynamics │ │ │ │ ├── btActionInterface.h │ │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ │ ├── btDiscreteDynamicsWorldMt.cpp │ │ │ │ ├── btDiscreteDynamicsWorldMt.h │ │ │ │ ├── btDynamicsWorld.h │ │ │ │ ├── btRigidBody.cpp │ │ │ │ ├── btRigidBody.h │ │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ │ ├── btSimpleDynamicsWorld.h │ │ │ │ ├── btSimulationIslandManagerMt.cpp │ │ │ │ └── btSimulationIslandManagerMt.h │ │ │ ├── Featherstone │ │ │ │ ├── btMultiBody.cpp │ │ │ │ ├── btMultiBody.h │ │ │ │ ├── btMultiBodyConstraint.cpp │ │ │ │ ├── btMultiBodyConstraint.h │ │ │ │ ├── btMultiBodyConstraintSolver.cpp │ │ │ │ ├── btMultiBodyConstraintSolver.h │ │ │ │ ├── btMultiBodyDynamicsWorld.cpp │ │ │ │ ├── btMultiBodyDynamicsWorld.h │ │ │ │ ├── btMultiBodyFixedConstraint.cpp │ │ │ │ ├── btMultiBodyFixedConstraint.h │ │ │ │ ├── btMultiBodyJointFeedback.h │ │ │ │ ├── btMultiBodyJointLimitConstraint.cpp │ │ │ │ ├── btMultiBodyJointLimitConstraint.h │ │ │ │ ├── btMultiBodyJointMotor.cpp │ │ │ │ ├── btMultiBodyJointMotor.h │ │ │ │ ├── btMultiBodyLink.h │ │ │ │ ├── btMultiBodyLinkCollider.h │ │ │ │ ├── btMultiBodyPoint2Point.cpp │ │ │ │ ├── btMultiBodyPoint2Point.h │ │ │ │ ├── btMultiBodySliderConstraint.cpp │ │ │ │ ├── btMultiBodySliderConstraint.h │ │ │ │ └── btMultiBodySolverConstraint.h │ │ │ ├── MLCPSolvers │ │ │ │ ├── btDantzigLCP.cpp │ │ │ │ ├── btDantzigLCP.h │ │ │ │ ├── btDantzigSolver.h │ │ │ │ ├── btLemkeAlgorithm.cpp │ │ │ │ ├── btLemkeAlgorithm.h │ │ │ │ ├── btLemkeSolver.h │ │ │ │ ├── btMLCPSolver.cpp │ │ │ │ ├── btMLCPSolver.h │ │ │ │ ├── btMLCPSolverInterface.h │ │ │ │ ├── btPATHSolver.h │ │ │ │ └── btSolveProjectedGaussSeidel.h │ │ │ ├── Vehicle │ │ │ │ ├── btRaycastVehicle.cpp │ │ │ │ ├── btRaycastVehicle.h │ │ │ │ ├── btVehicleRaycaster.h │ │ │ │ ├── btWheelInfo.cpp │ │ │ │ └── btWheelInfo.h │ │ │ └── premake4.lua │ │ ├── BulletInverseDynamics │ │ │ ├── CMakeLists.txt │ │ │ ├── IDConfig.hpp │ │ │ ├── IDConfigBuiltin.hpp │ │ │ ├── IDConfigEigen.hpp │ │ │ ├── IDErrorMessages.hpp │ │ │ ├── IDMath.cpp │ │ │ ├── IDMath.hpp │ │ │ ├── MultiBodyTree.cpp │ │ │ ├── MultiBodyTree.hpp │ │ │ ├── details │ │ │ │ ├── IDEigenInterface.hpp │ │ │ │ ├── IDLinearMathInterface.hpp │ │ │ │ ├── IDMatVec.hpp │ │ │ │ ├── MultiBodyTreeImpl.cpp │ │ │ │ ├── MultiBodyTreeImpl.hpp │ │ │ │ ├── MultiBodyTreeInitCache.cpp │ │ │ │ └── MultiBodyTreeInitCache.hpp │ │ │ └── premake4.lua │ │ ├── BulletSoftBody │ │ │ ├── CMakeLists.txt │ │ │ ├── btDefaultSoftBodySolver.cpp │ │ │ ├── btDefaultSoftBodySolver.h │ │ │ ├── btSoftBody.cpp │ │ │ ├── btSoftBody.h │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ │ ├── btSoftBodyData.h │ │ │ ├── btSoftBodyHelpers.cpp │ │ │ ├── btSoftBodyHelpers.h │ │ │ ├── btSoftBodyInternals.h │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ │ ├── btSoftBodySolverVertexBuffer.h │ │ │ ├── btSoftBodySolvers.h │ │ │ ├── btSoftMultiBodyDynamicsWorld.cpp │ │ │ ├── btSoftMultiBodyDynamicsWorld.h │ │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ │ ├── btSoftRigidDynamicsWorld.h │ │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ │ ├── btSparseSDF.h │ │ │ └── premake4.lua │ │ ├── CMakeLists.txt │ │ ├── LinearMath │ │ │ ├── CMakeLists.txt │ │ │ ├── btAabbUtil2.h │ │ │ ├── btAlignedAllocator.cpp │ │ │ ├── btAlignedAllocator.h │ │ │ ├── btAlignedObjectArray.h │ │ │ ├── btConvexHull.cpp │ │ │ ├── btConvexHull.h │ │ │ ├── btConvexHullComputer.cpp │ │ │ ├── btConvexHullComputer.h │ │ │ ├── btCpuFeatureUtility.h │ │ │ ├── btDefaultMotionState.h │ │ │ ├── btGeometryUtil.cpp │ │ │ ├── btGeometryUtil.h │ │ │ ├── btGrahamScan2dConvexHull.h │ │ │ ├── btHashMap.h │ │ │ ├── btIDebugDraw.h │ │ │ ├── btList.h │ │ │ ├── btMatrix3x3.h │ │ │ ├── btMatrixX.h │ │ │ ├── btMinMax.h │ │ │ ├── btMotionState.h │ │ │ ├── btPolarDecomposition.cpp │ │ │ ├── btPolarDecomposition.h │ │ │ ├── btPoolAllocator.h │ │ │ ├── btQuadWord.h │ │ │ ├── btQuaternion.h │ │ │ ├── btQuickprof.cpp │ │ │ ├── btQuickprof.h │ │ │ ├── btRandom.h │ │ │ ├── btScalar.h │ │ │ ├── btSerializer.cpp │ │ │ ├── btSerializer.h │ │ │ ├── btSpatialAlgebra.h │ │ │ ├── btStackAlloc.h │ │ │ ├── btThreads.cpp │ │ │ ├── btThreads.h │ │ │ ├── btTransform.h │ │ │ ├── btTransformUtil.h │ │ │ ├── btVector3.cpp │ │ │ ├── btVector3.h │ │ │ └── premake4.lua │ │ ├── btBulletCollisionCommon.h │ │ ├── btBulletDynamicsCommon.h │ │ └── clew │ │ │ ├── clew.c │ │ │ └── clew.h │ └── xcode.command │ ├── glad │ ├── .gitignore │ ├── README.md │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ ├── glad.h │ │ │ ├── glad_egl.h │ │ │ ├── glad_glx.h │ │ │ └── glad_wgl.h │ └── src │ │ ├── glad.c │ │ ├── glad_egl.c │ │ ├── glad_glx.c │ │ └── glad_wgl.c │ ├── glfw │ ├── .appveyor.yml │ ├── .github │ │ └── CONTRIBUTING.md │ ├── .gitignore │ ├── .travis.yml │ ├── CMake │ │ ├── MacOSXBundleInfo.plist.in │ │ ├── amd64-mingw32msvc.cmake │ │ ├── i586-mingw32msvc.cmake │ │ ├── i686-pc-mingw32.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindMir.cmake │ │ │ ├── FindOSMesa.cmake │ │ │ ├── FindVulkan.cmake │ │ │ ├── FindWaylandProtocols.cmake │ │ │ └── FindXKBCommon.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad.c │ │ ├── glad │ │ │ └── glad.h │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ ├── vs2008 │ │ │ └── stdint.h │ │ └── vulkan │ │ │ ├── vk_platform.h │ │ │ └── vulkan.h │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── compile.dox │ │ ├── context.dox │ │ ├── extra.css │ │ ├── extra.less │ │ ├── footer.html │ │ ├── header.html │ │ ├── input.dox │ │ ├── internal.dox │ │ ├── intro.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ ├── spaces.svg │ │ ├── vulkan.dox │ │ └── window.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── glfw.icns │ │ ├── glfw.ico │ │ ├── glfw.rc │ │ ├── heightmap.c │ │ ├── offscreen.c │ │ ├── particles.c │ │ ├── simple.c │ │ ├── splitview.c │ │ └── wave.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── 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 │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mir_init.c │ │ ├── mir_monitor.c │ │ ├── mir_platform.h │ │ ├── mir_window.c │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── osmesa_context.c │ │ ├── osmesa_context.h │ │ ├── osmesa_init.c │ │ ├── osmesa_monitor.c │ │ ├── osmesa_platform.h │ │ ├── osmesa_window.c │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── posix_tls.c │ │ ├── posix_tls.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_tls.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── 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 │ └── tests │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cursor.c │ │ ├── empty.c │ │ ├── events.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── icon.c │ │ ├── iconify.c │ │ ├── joysticks.c │ │ ├── monitors.c │ │ ├── msaa.c │ │ ├── reopen.c │ │ ├── sharing.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── timeout.c │ │ ├── title.c │ │ ├── vulkan.c │ │ └── windows.c │ ├── glm │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── cmake │ │ ├── glm.pc.in │ │ ├── glmBuildConfig.cmake.in │ │ └── glmConfig.cmake.in │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.hpp │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.hpp │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.hpp │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.hpp │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.hpp │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.hpp │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.hpp │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── precision.hpp │ │ │ ├── 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_mat4x4_simd.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 │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.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 │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ ├── vec1.hpp │ │ │ └── vec1.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.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_decompose.hpp │ │ │ ├── matrix_decompose.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 │ │ │ ├── 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 │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.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 │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── 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 │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── manual.md │ ├── readme.md │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── glm.natvis │ │ └── usertype.dat │ ├── soil │ ├── SOIL.c │ ├── image_DXT.c │ ├── image_helper.c │ ├── inc │ │ └── SOIL │ │ │ ├── SOIL.h │ │ │ ├── image_DXT.h │ │ │ ├── image_helper.h │ │ │ ├── stb_image_aug.h │ │ │ ├── stbi_DDS_aug.h │ │ │ └── stbi_DDS_aug_c.h │ └── stb_image_aug.c │ └── stb │ ├── .github │ ├── CONTRIBUTING.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .travis.yml │ ├── README.md │ ├── data │ ├── atari_8bit_font_revised.png │ ├── easy_font_raw.png │ ├── herringbone │ │ ├── license.txt │ │ ├── template_caves_limit_connectivity.png │ │ ├── template_caves_tiny_corridors.png │ │ ├── template_corner_caves.png │ │ ├── template_horizontal_corridors_v1.png │ │ ├── template_horizontal_corridors_v2.png │ │ ├── template_horizontal_corridors_v3.png │ │ ├── template_limit_connectivity_fat.png │ │ ├── template_limited_connectivity.png │ │ ├── template_maze_2_wide.png │ │ ├── template_maze_plus_2_wide.png │ │ ├── template_open_areas.png │ │ ├── template_ref2_corner_caves.png │ │ ├── template_rooms_and_corridors.png │ │ ├── template_rooms_and_corridors_2_wide_diagonal_bias.png │ │ ├── template_rooms_limit_connectivity.png │ │ ├── template_round_rooms_diagonal_corridors.png │ │ ├── template_sean_dungeon.png │ │ ├── template_simple_caves_2_wide.png │ │ └── template_square_rooms_with_random_rects.png │ ├── map_01.png │ ├── map_02.png │ └── map_03.png │ ├── deprecated │ ├── rrsprintf.h │ ├── stb_image.c │ └── stretchy_buffer.txt │ ├── docs │ ├── other_libs.md │ ├── stb_howto.txt │ ├── stb_voxel_render_interview.md │ └── why_public_domain.md │ ├── stb.h │ ├── stb_c_lexer.h │ ├── stb_connected_components.h │ ├── stb_divide.h │ ├── stb_dxt.h │ ├── stb_easy_font.h │ ├── stb_herringbone_wang_tile.h │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ ├── stb_leakcheck.h │ ├── stb_perlin.h │ ├── stb_rect_pack.h │ ├── stb_sprintf.h │ ├── stb_textedit.h │ ├── stb_tilemap_editor.h │ ├── stb_truetype.h │ ├── stb_vorbis.c │ ├── stb_voxel_render.h │ ├── stretchy_buffer.h │ ├── tests │ ├── Makefile │ ├── c_lexer_test.c │ ├── c_lexer_test.dsp │ ├── caveview │ │ ├── README.md │ │ ├── cave_main.c │ │ ├── cave_mesher.c │ │ ├── cave_parse.c │ │ ├── cave_parse.h │ │ ├── cave_render.c │ │ ├── caveview.dsp │ │ ├── caveview.dsw │ │ ├── caveview.h │ │ ├── glext.h │ │ ├── glext_list.h │ │ ├── main.c │ │ ├── stb_gl.h │ │ ├── stb_glprog.h │ │ └── win32 │ │ │ └── SDL_windows_main.c │ ├── grid_reachability.c │ ├── herringbone.dsp │ ├── herringbone_generator.c │ ├── herringbone_map.c │ ├── herringbone_map.dsp │ ├── image_test.c │ ├── image_test.dsp │ ├── oversample │ │ ├── README.md │ │ ├── main.c │ │ ├── oversample.dsp │ │ ├── oversample.dsw │ │ ├── oversample.exe │ │ └── stb_wingraph.h │ ├── pngsuite │ │ ├── 16bit │ │ │ ├── basi0g16.png │ │ │ ├── basi2c16.png │ │ │ ├── basi4a16.png │ │ │ ├── basi6a16.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c16.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a16.png │ │ │ ├── bgai4a16.png │ │ │ ├── bgan6a16.png │ │ │ ├── bggn4a16.png │ │ │ ├── bgyn6a16.png │ │ │ ├── oi1n0g16.png │ │ │ ├── oi1n2c16.png │ │ │ ├── oi2n0g16.png │ │ │ ├── oi2n2c16.png │ │ │ ├── oi4n0g16.png │ │ │ ├── oi4n2c16.png │ │ │ ├── oi9n0g16.png │ │ │ ├── oi9n2c16.png │ │ │ ├── tbbn2c16.png │ │ │ ├── tbgn2c16.png │ │ │ └── tbwn0g16.png │ │ ├── PngSuite.LICENSE │ │ ├── corrupt │ │ │ ├── xc1n0g08.png │ │ │ ├── xc9n2c08.png │ │ │ ├── xcrn0g04.png │ │ │ ├── xcsn0g01.png │ │ │ ├── xd0n2c08.png │ │ │ ├── xd3n2c08.png │ │ │ ├── xd9n2c08.png │ │ │ ├── xdtn0g01.png │ │ │ ├── xhdn0g08.png │ │ │ ├── xlfn0g04.png │ │ │ ├── xs1n0g01.png │ │ │ ├── xs2n0g01.png │ │ │ ├── xs4n0g01.png │ │ │ └── xs7n0g01.png │ │ ├── primary │ │ │ ├── basi0g01.png │ │ │ ├── basi0g02.png │ │ │ ├── basi0g04.png │ │ │ ├── basi0g08.png │ │ │ ├── basi2c08.png │ │ │ ├── basi3p01.png │ │ │ ├── basi3p02.png │ │ │ ├── basi3p04.png │ │ │ ├── basi3p08.png │ │ │ ├── basi4a08.png │ │ │ ├── basi6a08.png │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn2c08.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn6a08.png │ │ │ ├── bgai4a08.png │ │ │ ├── bgan6a08.png │ │ │ ├── bgbn4a08.png │ │ │ ├── bgwn6a08.png │ │ │ ├── s01i3p01.png │ │ │ ├── s01n3p01.png │ │ │ ├── s02i3p01.png │ │ │ ├── s02n3p01.png │ │ │ ├── s03i3p01.png │ │ │ ├── s03n3p01.png │ │ │ ├── s04i3p01.png │ │ │ ├── s04n3p01.png │ │ │ ├── s05i3p02.png │ │ │ ├── s05n3p02.png │ │ │ ├── s06i3p02.png │ │ │ ├── s06n3p02.png │ │ │ ├── s07i3p02.png │ │ │ ├── s07n3p02.png │ │ │ ├── s08i3p02.png │ │ │ ├── s08n3p02.png │ │ │ ├── s09i3p02.png │ │ │ ├── s09n3p02.png │ │ │ ├── s32i3p04.png │ │ │ ├── s32n3p04.png │ │ │ ├── s33i3p04.png │ │ │ ├── s33n3p04.png │ │ │ ├── s34i3p04.png │ │ │ ├── s34n3p04.png │ │ │ ├── s35i3p04.png │ │ │ ├── s35n3p04.png │ │ │ ├── s36i3p04.png │ │ │ ├── s36n3p04.png │ │ │ ├── s37i3p04.png │ │ │ ├── s37n3p04.png │ │ │ ├── s38i3p04.png │ │ │ ├── s38n3p04.png │ │ │ ├── s39i3p04.png │ │ │ ├── s39n3p04.png │ │ │ ├── s40i3p04.png │ │ │ ├── s40n3p04.png │ │ │ ├── tbbn0g04.png │ │ │ ├── tbbn3p08.png │ │ │ ├── tbgn3p08.png │ │ │ ├── tbrn2c08.png │ │ │ ├── tbwn3p08.png │ │ │ ├── tbyn3p08.png │ │ │ ├── tm3n3p02.png │ │ │ ├── tp0n0g08.png │ │ │ ├── tp0n2c08.png │ │ │ ├── tp0n3p08.png │ │ │ ├── tp1n3p08.png │ │ │ ├── z00n2c08.png │ │ │ ├── z03n2c08.png │ │ │ ├── z06n2c08.png │ │ │ └── z09n2c08.png │ │ ├── primary_check │ │ │ ├── basi0g01.png │ │ │ ├── basi0g02.png │ │ │ ├── basi0g04.png │ │ │ ├── basi0g08.png │ │ │ ├── basi2c08.png │ │ │ ├── basi3p01.png │ │ │ ├── basi3p02.png │ │ │ ├── basi3p04.png │ │ │ ├── basi3p08.png │ │ │ ├── basi4a08.png │ │ │ ├── basi6a08.png │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn2c08.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn6a08.png │ │ │ ├── bgai4a08.png │ │ │ ├── bgan6a08.png │ │ │ ├── bgbn4a08.png │ │ │ ├── bgwn6a08.png │ │ │ ├── s01i3p01.png │ │ │ ├── s01n3p01.png │ │ │ ├── s02i3p01.png │ │ │ ├── s02n3p01.png │ │ │ ├── s03i3p01.png │ │ │ ├── s03n3p01.png │ │ │ ├── s04i3p01.png │ │ │ ├── s04n3p01.png │ │ │ ├── s05i3p02.png │ │ │ ├── s05n3p02.png │ │ │ ├── s06i3p02.png │ │ │ ├── s06n3p02.png │ │ │ ├── s07i3p02.png │ │ │ ├── s07n3p02.png │ │ │ ├── s08i3p02.png │ │ │ ├── s08n3p02.png │ │ │ ├── s09i3p02.png │ │ │ ├── s09n3p02.png │ │ │ ├── s32i3p04.png │ │ │ ├── s32n3p04.png │ │ │ ├── s33i3p04.png │ │ │ ├── s33n3p04.png │ │ │ ├── s34i3p04.png │ │ │ ├── s34n3p04.png │ │ │ ├── s35i3p04.png │ │ │ ├── s35n3p04.png │ │ │ ├── s36i3p04.png │ │ │ ├── s36n3p04.png │ │ │ ├── s37i3p04.png │ │ │ ├── s37n3p04.png │ │ │ ├── s38i3p04.png │ │ │ ├── s38n3p04.png │ │ │ ├── s39i3p04.png │ │ │ ├── s39n3p04.png │ │ │ ├── s40i3p04.png │ │ │ ├── s40n3p04.png │ │ │ ├── tbbn0g04.png │ │ │ ├── tbbn3p08.png │ │ │ ├── tbgn3p08.png │ │ │ ├── tbrn2c08.png │ │ │ ├── tbwn3p08.png │ │ │ ├── tbyn3p08.png │ │ │ ├── tm3n3p02.png │ │ │ ├── tp0n0g08.png │ │ │ ├── tp0n2c08.png │ │ │ ├── tp0n3p08.png │ │ │ ├── tp1n3p08.png │ │ │ ├── z00n2c08.png │ │ │ ├── z03n2c08.png │ │ │ ├── z06n2c08.png │ │ │ └── z09n2c08.png │ │ └── unused │ │ │ ├── ccwn2c08.png │ │ │ ├── ccwn3p08.png │ │ │ ├── cdfn2c08.png │ │ │ ├── cdhn2c08.png │ │ │ ├── cdsn2c08.png │ │ │ ├── cdun2c08.png │ │ │ ├── ch1n3p04.png │ │ │ ├── ch2n3p08.png │ │ │ ├── cm0n0g04.png │ │ │ ├── cm7n0g04.png │ │ │ ├── cm9n0g04.png │ │ │ ├── cs3n2c16.png │ │ │ ├── cs3n3p08.png │ │ │ ├── cs5n2c08.png │ │ │ ├── cs5n3p08.png │ │ │ ├── cs8n2c08.png │ │ │ ├── cs8n3p08.png │ │ │ ├── ct0n0g04.png │ │ │ ├── ct1n0g04.png │ │ │ ├── cten0g04.png │ │ │ ├── ctfn0g04.png │ │ │ ├── ctgn0g04.png │ │ │ ├── cthn0g04.png │ │ │ ├── ctjn0g04.png │ │ │ ├── ctzn0g04.png │ │ │ ├── f00n0g08.png │ │ │ ├── f00n2c08.png │ │ │ ├── f01n0g08.png │ │ │ ├── f01n2c08.png │ │ │ ├── f02n0g08.png │ │ │ ├── f02n2c08.png │ │ │ ├── f03n0g08.png │ │ │ ├── f03n2c08.png │ │ │ ├── f04n0g08.png │ │ │ ├── f04n2c08.png │ │ │ ├── f99n0g04.png │ │ │ ├── g03n0g16.png │ │ │ ├── g03n2c08.png │ │ │ ├── g03n3p04.png │ │ │ ├── g04n0g16.png │ │ │ ├── g04n2c08.png │ │ │ ├── g04n3p04.png │ │ │ ├── g05n0g16.png │ │ │ ├── g05n2c08.png │ │ │ ├── g05n3p04.png │ │ │ ├── g07n0g16.png │ │ │ ├── g07n2c08.png │ │ │ ├── g07n3p04.png │ │ │ ├── g10n0g16.png │ │ │ ├── g10n2c08.png │ │ │ ├── g10n3p04.png │ │ │ ├── g25n0g16.png │ │ │ ├── g25n2c08.png │ │ │ ├── g25n3p04.png │ │ │ ├── pp0n2c16.png │ │ │ ├── pp0n6a08.png │ │ │ ├── ps1n0g08.png │ │ │ ├── ps1n2c16.png │ │ │ ├── ps2n0g08.png │ │ │ └── ps2n2c16.png │ ├── resample_test.cpp │ ├── resample_test_c.c │ ├── resize.dsp │ ├── stb.c │ ├── stb.dsp │ ├── stb.dsw │ ├── stb_cpp.cpp │ ├── stb_cpp.dsp │ ├── stretch_test.c │ ├── stretch_test.dsp │ ├── stretchy_buffer_test.c │ ├── test_c_compilation.c │ ├── test_cpp_compilation.cpp │ ├── test_truetype.c │ ├── test_vorbis.c │ ├── textedit_sample.c │ ├── tilemap_editor_integration_example.c │ └── vorbseek │ │ ├── vorbseek.c │ │ └── vorbseek.dsp │ └── tools │ ├── README.footer.md │ ├── README.header.md │ ├── README.list │ ├── easy_font_maker.c │ ├── make_readme.c │ ├── make_readme.dsp │ ├── mr.bat │ ├── unicode.c │ └── unicode │ └── unicode.dsp ├── README.md └── report.pdf /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Headers/ambientocclusionbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/ambientocclusionbuffer.hpp -------------------------------------------------------------------------------- /Glitter/Headers/blurbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/blurbuffer.hpp -------------------------------------------------------------------------------- /Glitter/Headers/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/camera.hpp -------------------------------------------------------------------------------- /Glitter/Headers/environmentmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/environmentmap.hpp -------------------------------------------------------------------------------- /Glitter/Headers/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/filesystem.hpp -------------------------------------------------------------------------------- /Glitter/Headers/gbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/gbuffer.hpp -------------------------------------------------------------------------------- /Glitter/Headers/glitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/glitter.hpp -------------------------------------------------------------------------------- /Glitter/Headers/light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/light.hpp -------------------------------------------------------------------------------- /Glitter/Headers/mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/mesh.hpp -------------------------------------------------------------------------------- /Glitter/Headers/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/model.hpp -------------------------------------------------------------------------------- /Glitter/Headers/radiositybuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/radiositybuffer.hpp -------------------------------------------------------------------------------- /Glitter/Headers/shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Headers/shader.hpp -------------------------------------------------------------------------------- /Glitter/Resources/crytek_sponza/banner.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Resources/crytek_sponza/banner.mtl -------------------------------------------------------------------------------- /Glitter/Resources/crytek_sponza/banner.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Resources/crytek_sponza/banner.obj -------------------------------------------------------------------------------- /Glitter/Resources/crytek_sponza/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Resources/crytek_sponza/copyright.txt -------------------------------------------------------------------------------- /Glitter/Resources/crytek_sponza/sponza.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Resources/crytek_sponza/sponza.mtl -------------------------------------------------------------------------------- /Glitter/Resources/crytek_sponza/sponza.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Resources/crytek_sponza/sponza.obj -------------------------------------------------------------------------------- /Glitter/Shaders/blur.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/blur.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/blurRadiosity.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/blurRadiosity.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/combine.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/combine.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/depthMap.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/depthMap.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/depthMap.geom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/depthMap.geom.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/depthMap.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/depthMap.vert.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/envMap.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/envMap.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/envMap.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/envMap.vert.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/geometry.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/geometry.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/geometry.geom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/geometry.geom.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/geometry.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/geometry.vert.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/lightSource.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/lightSource.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/lighting.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/lighting.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/lighting.geom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/lighting.geom.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/lighting.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/lighting.vert.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/radiosity.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/radiosity.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/ssao.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/ssao.frag.glsl -------------------------------------------------------------------------------- /Glitter/Shaders/ssao.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Shaders/ssao.vert.glsl -------------------------------------------------------------------------------- /Glitter/Sources/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Sources/main.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: GZXuNlublKFy7HAewHAZLk5ZwgipTFAOA 3 | -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/.editorconfig -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/.gitattributes -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/.gitignore -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/.travis.sh -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/.travis.yml -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/AssimpConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/AssimpConfig.cmake.in -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/CHANGES -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/CREDITS -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/CodeConventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/CodeConventions.md -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/INSTALL -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/LICENSE -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/README: -------------------------------------------------------------------------------- 1 | See Readme.md 2 | -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/Readme.md -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/appveyor.yml -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/assimp-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/assimp-config.cmake.in -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/assimp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/assimp.pc.in -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/.editorconfig -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/3DSConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/3DSConverter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/3DSExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/3DSExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/3DSExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/3DSExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/3DSHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/3DSHelper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/3DSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/3DSLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/3DSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/3DSLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ACLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ACLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ACLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ACLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AMFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AMFImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AMFImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AMFImporter.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ASELoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ASELoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ASELoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ASELoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ASEParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ASEParser.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ASEParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ASEParser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AssbinExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AssbinExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AssbinExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AssbinExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AssbinLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AssbinLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AssbinLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AssbinLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Assimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Assimp.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AssimpCExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AssimpCExport.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AssxmlExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AssxmlExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/AssxmlExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/AssxmlExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/B3DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/B3DImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/B3DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/B3DImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BVHLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BVHLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BVHLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BVHLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BaseImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BaseImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BaseImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BaseProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BaseProcess.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BaseProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BaseProcess.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Bitmap.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Bitmap.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderBMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderBMesh.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderBMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderBMesh.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderDNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderDNA.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderDNA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderDNA.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderDNA.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderDNA.inl -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderModifier.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderScene.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderScene.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlenderSceneGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlenderSceneGen.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/BlobIOSystem.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ByteSwapper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/C4DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/C4DImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/C4DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/C4DImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/COBLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/COBLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/COBLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/COBLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/COBScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/COBScene.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/CSMLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/CSMLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/CSMLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/CSMLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ColladaExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ColladaExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ColladaHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ColladaHelper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ColladaLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ColladaLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ColladaLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ColladaLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ColladaParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ColladaParser.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ColladaParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ColladaParser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/CreateAnimMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/CreateAnimMesh.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/CreateAnimMesh.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/D3MFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/D3MFImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/D3MFImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/D3MFImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/D3MFOpcPackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/D3MFOpcPackage.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/D3MFOpcPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/D3MFOpcPackage.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DXFHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DXFHelper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DXFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DXFLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DXFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DXFLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DeboneProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DeboneProcess.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DeboneProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DeboneProcess.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DefaultIOStream.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DefaultIOSystem.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/DefaultLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/DefaultLogger.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Defines.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Exceptional.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Exporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXAnimation.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXCompileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXCompileConfig.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXConverter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXConverter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXDeformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXDeformer.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXDocument.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXDocument.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXDocumentUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXDocumentUtil.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXMaterial.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXMeshGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXMeshGeometry.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXModel.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXParser.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXParser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXProperties.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXProperties.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXTokenizer.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXTokenizer.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXUtil.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FBXUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FBXUtil.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FileLogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FileLogStream.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FileSystemFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FileSystemFilter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FindDegenerates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FindDegenerates.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FixNormalsStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FixNormalsStep.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/FixNormalsStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/FixNormalsStep.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/GenericProperty.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/HMPFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/HMPFileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/HMPLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/HMPLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/HMPLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/HMPLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/HalfLifeFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/HalfLifeFileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Hash.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCBoolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCBoolean.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCCurve.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCGeometry.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCMaterial.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCOpenings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCOpenings.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCProfile.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCReaderGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCReaderGen.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCReaderGen1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCReaderGen1.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCReaderGen2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCReaderGen2.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCUtil.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFCUtil.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IFF.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IOStreamBuffer.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IRRLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IRRLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IRRLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IRRLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IRRMeshLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IRRMeshLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IRRMeshLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IRRMeshLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IRRShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IRRShared.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/IRRShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/IRRShared.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Importer.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Importer.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWOAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWOAnimation.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWOAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWOAnimation.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWOBLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWOBLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWOFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWOFileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWOLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWOLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWOMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWOMaterial.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWSLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LWSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LWSLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LineSplitter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/LogAux.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD2FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD2FileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD2Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD2Loader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD2Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD2Loader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD2NormalTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD2NormalTable.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD3FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD3FileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD3Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD3Loader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD3Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD3Loader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD4FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD4FileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD5Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD5Loader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD5Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD5Loader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD5Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD5Parser.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MD5Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MD5Parser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MDCFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MDCFileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MDCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MDCLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MDCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MDCLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MDCNormalTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MDCNormalTable.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MDLFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MDLFileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MDLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MDLLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MDLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MDLLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MS3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MS3DLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MS3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MS3DLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Macros.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MaterialSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MaterialSystem.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MaterialSystem.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MathFunctions.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/MemoryIOWrapper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/NDOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/NDOLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/NDOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/NDOLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/NFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/NFFLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/NFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/NFFLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OFFLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OFFLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ObjExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ObjExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ObjExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ObjExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ObjFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ObjFileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ObjFileImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ObjFileImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ObjFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ObjFileParser.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ObjFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ObjFileParser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ObjTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ObjTools.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OgreImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OgreImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OgreImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OgreImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OgreMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OgreMaterial.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OgreParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OgreParsingUtils.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OgreStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OgreStructs.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OgreStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OgreStructs.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OpenGEXExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OpenGEXExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OpenGEXImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OpenGEXImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OpenGEXStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OpenGEXStructs.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OptimizeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OptimizeGraph.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OptimizeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OptimizeGraph.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OptimizeMeshes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OptimizeMeshes.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/OptimizeMeshes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/OptimizeMeshes.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ParsingUtils.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/PlyExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/PlyExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/PlyExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/PlyExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/PlyLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/PlyLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/PlyLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/PlyLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/PlyParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/PlyParser.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/PlyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/PlyParser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/PolyTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/PolyTools.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ProcessHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ProcessHelper.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ProcessHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ProcessHelper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Profiler.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Q3BSPFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Q3BSPFileData.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Q3BSPFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Q3BSPFileParser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Q3BSPZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Q3BSPZipArchive.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Q3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Q3DLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Q3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Q3DLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/RawLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/RawLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/RawLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/RawLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/RemoveComments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/RemoveComments.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/RemoveComments.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/RemoveVCProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/RemoveVCProcess.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SGSpatialSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SGSpatialSort.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SGSpatialSort.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SIBImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SIBImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SIBImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SIBImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SMDLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SMDLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SMDLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SMDLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STEPFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STEPFile.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STEPFileEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STEPFileEncoding.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STEPFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STEPFileReader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STEPFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STEPFileReader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STLExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STLExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STLExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STLExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STLLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/STLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/STLLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SceneCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SceneCombiner.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SceneCombiner.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/ScenePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/ScenePrivate.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SmoothingGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SmoothingGroups.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SpatialSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SpatialSort.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SpatialSort.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/SplitLargeMeshes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/SplitLargeMeshes.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StandardShapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StandardShapes.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StandardShapes.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StepExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StepExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StepExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StepExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StreamReader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StreamWriter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StringComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StringComparison.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/StringUtils.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Subdivision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Subdivision.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Subdivision.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/TargetAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/TargetAnimation.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/TerragenLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/TerragenLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/TerragenLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/TerragenLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/TextureTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/TextureTransform.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/TinyFormatter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/UnrealLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/UnrealLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/UnrealLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/UnrealLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Version.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/Vertex.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/X3DExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/X3DExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/X3DExporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/X3DExporter.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/X3DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/X3DImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/X3DImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/X3DImporter.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XFileExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XFileExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XFileExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XFileExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XFileHelper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XFileImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XFileImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XFileImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XFileImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XFileParser.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XFileParser.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XGLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XGLLoader.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XGLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XGLLoader.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/XMLTools.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/assbin_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/assbin_chunks.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/fast_atof.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/glTFAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/glTFAsset.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/glTFAsset.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/glTFAsset.inl -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/glTFAssetWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/glTFAssetWriter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/glTFExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/glTFExporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/glTFExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/glTFExporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/glTFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/glTFImporter.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/glTFImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/glTFImporter.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/irrXMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/irrXMLWrapper.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/makefile.mingw -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/qnan.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/res/assimp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/res/assimp.rc -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/res/resource.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/code/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/code/scene.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/gtest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/gtest/CHANGES -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/gtest/LICENSE -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/gtest/README.md -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/gtest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/irrXML/irrXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/irrXML/irrXML.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/irrXML_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/irrXML_note.txt -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/poly2tri/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/poly2tri/README -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/unzip/crypt.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/unzip/ioapi.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/unzip/ioapi.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/unzip/unzip.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/unzip/unzip.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/README -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/adler32.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/compress.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/crc32.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/crc32.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/deflate.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/deflate.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/gzclose.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/gzguts.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/gzlib.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/gzread.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/gzwrite.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/infback.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/inffast.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/inffast.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/inffixed.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/inflate.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/inflate.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/inftrees.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/inftrees.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/trees.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/trees.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/uncompr.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/zconf.in.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/zlib.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/zutil.c -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib/zutil.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/contrib/zlib_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/contrib/zlib_note.txt -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/doc/Doxyfile -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/doc/Doxyfile_Cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/doc/Doxyfile_Cmd -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/doc/Preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/doc/Preamble.txt -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/doc/datastructure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/doc/datastructure.xml -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/doc/dox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/doc/dox.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/doc/dox_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/doc/dox_cmd.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/anim.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/camera.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/color4.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/defs.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/light.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/mesh.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/scene.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/include/assimp/types.h -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/PyAssimp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/PyAssimp/README.md -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/PyAssimp/pyassimp/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/PyAssimp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/PyAssimp/setup.py -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/dAssimp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/dAssimp/README -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/iOS/README.md -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/iOS/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/iOS/build.sh -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/jassimp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/jassimp/README -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/jassimp/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/jassimp/build.xml -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/swig/DONOTUSEYET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/swig/DONOTUSEYET -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/swig/assimp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/swig/assimp.i -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/swig/d/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/swig/d/build.sh -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/port/swig/d/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/port/swig/d/generate.sh -------------------------------------------------------------------------------- /Glitter/Vendor/assimp/revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/assimp/revision.h.in -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/.travis.yml -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/AUTHORS.txt -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/BulletConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/BulletConfig.cmake.in -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/Doxyfile -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/Extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/Extras/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/Extras/HACD/hacdGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/Extras/HACD/hacdGraph.h -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/Extras/HACD/hacdHACD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/Extras/HACD/hacdHACD.h -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/Extras/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/Extras/Makefile.am -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/Extras/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/Extras/premake4.lua -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/LICENSE.txt -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/README.md -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/UseBullet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/UseBullet.cmake -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/VERSION: -------------------------------------------------------------------------------- 1 | 2.86 2 | -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/appveyor.yml -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/bin2cpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/bin2cpp.bat -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/bin2cpp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/bin2cpp.lua -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/bullet.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/bullet.rc -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/bullet_ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/bullet_ico.ico -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/findOpenCL.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/findOpenCL.lua -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/lcpp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/lcpp.lua -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/premake4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/premake4.exe -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/premake4.lua -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/premake4_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/premake4_linux -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/premake4_linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/premake4_linux64 -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/premake4_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/premake4_osx -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/premake4_osx32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/premake4_osx32 -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/premake5.exe -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/stringify.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/stringify.bat -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build3/stringify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build3/stringify.sh -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build_and_run_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build_and_run_cmake.sh -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/build_visual_studio.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/build_visual_studio.bat -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/bullet.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/bullet.pc.cmake -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/src/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/src/LinearMath/btList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/src/LinearMath/btList.h -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/src/clew/clew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/src/clew/clew.c -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/src/clew/clew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/src/clew/clew.h -------------------------------------------------------------------------------- /Glitter/Vendor/bullet/xcode.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/bullet/xcode.command -------------------------------------------------------------------------------- /Glitter/Vendor/glad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/.gitignore -------------------------------------------------------------------------------- /Glitter/Vendor/glad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/README.md -------------------------------------------------------------------------------- /Glitter/Vendor/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/include/glad/glad.h -------------------------------------------------------------------------------- /Glitter/Vendor/glad/include/glad/glad_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/include/glad/glad_egl.h -------------------------------------------------------------------------------- /Glitter/Vendor/glad/include/glad/glad_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/include/glad/glad_glx.h -------------------------------------------------------------------------------- /Glitter/Vendor/glad/include/glad/glad_wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/include/glad/glad_wgl.h -------------------------------------------------------------------------------- /Glitter/Vendor/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/src/glad.c -------------------------------------------------------------------------------- /Glitter/Vendor/glad/src/glad_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/src/glad_egl.c -------------------------------------------------------------------------------- /Glitter/Vendor/glad/src/glad_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/src/glad_glx.c -------------------------------------------------------------------------------- /Glitter/Vendor/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/.appveyor.yml -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/.gitignore -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/.travis.yml -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/COPYING.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/README.md -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/KHR/khrplatform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/getopt.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/getopt.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/glad.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/glad/glad.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/linmath.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/vulkan/vk_platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/deps/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/deps/vulkan/vulkan.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/Doxyfile.in -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/build.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/compat.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/compile.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/context.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/extra.css -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/extra.less -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/footer.html -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/header.html -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/input.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/internal.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/intro.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/main.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/monitor.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/moving.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/news.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/quick.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/spaces.svg -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/vulkan.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/docs/window.dox -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/boing.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/gears.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/glfw.icns -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/glfw.ico -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/glfw.rc -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/heightmap.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/offscreen.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/particles.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/simple.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/splitview.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/examples/wave.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/context.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/egl_context.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/egl_context.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/glfw3.pc.in -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/glfw_config.h.in -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/glx_context.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/glx_context.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/init.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/input.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/internal.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/mir_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/mir_init.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/mir_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/mir_monitor.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/mir_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/mir_platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/mir_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/mir_window.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/monitor.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/nsgl_context.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/osmesa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/osmesa_context.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/osmesa_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/osmesa_init.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/osmesa_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/osmesa_monitor.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/osmesa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/osmesa_platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/osmesa_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/osmesa_window.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/posix_time.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/posix_time.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/posix_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/posix_tls.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/posix_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/posix_tls.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/vulkan.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/wgl_context.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_init.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_time.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_tls.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/win32_window.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/window.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/wl_init.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/wl_window.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/x11_init.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/x11_window.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/clipboard.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/cursor.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/empty.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/events.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/gamma.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/glfwinfo.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/icon.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/iconify.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/joysticks.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/monitors.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/msaa.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/reopen.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/sharing.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/tearing.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/threads.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/timeout.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/title.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/vulkan.c -------------------------------------------------------------------------------- /Glitter/Vendor/glfw/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glfw/tests/windows.c -------------------------------------------------------------------------------- /Glitter/Vendor/glm/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/.appveyor.yml -------------------------------------------------------------------------------- /Glitter/Vendor/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/.gitignore -------------------------------------------------------------------------------- /Glitter/Vendor/glm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/.travis.yml -------------------------------------------------------------------------------- /Glitter/Vendor/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glm/cmake/glm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/cmake/glm.pc.in -------------------------------------------------------------------------------- /Glitter/Vendor/glm/cmake/glmConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/cmake/glmConfig.cmake.in -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/common.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/precision.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/ext.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/glm.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/functions.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/functions.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/integer.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/packing.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/simd/common.h -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /Glitter/Vendor/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/manual.md -------------------------------------------------------------------------------- /Glitter/Vendor/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/readme.md -------------------------------------------------------------------------------- /Glitter/Vendor/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/util/autoexp.txt -------------------------------------------------------------------------------- /Glitter/Vendor/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /Glitter/Vendor/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/util/glm.natvis -------------------------------------------------------------------------------- /Glitter/Vendor/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/glm/util/usertype.dat -------------------------------------------------------------------------------- /Glitter/Vendor/soil/SOIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/soil/SOIL.c -------------------------------------------------------------------------------- /Glitter/Vendor/soil/image_DXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/soil/image_DXT.c -------------------------------------------------------------------------------- /Glitter/Vendor/soil/image_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/soil/image_helper.c -------------------------------------------------------------------------------- /Glitter/Vendor/soil/inc/SOIL/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/soil/inc/SOIL/SOIL.h -------------------------------------------------------------------------------- /Glitter/Vendor/soil/inc/SOIL/image_DXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/soil/inc/SOIL/image_DXT.h -------------------------------------------------------------------------------- /Glitter/Vendor/soil/stb_image_aug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/soil/stb_image_aug.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Glitter/Vendor/stb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/.travis.yml -------------------------------------------------------------------------------- /Glitter/Vendor/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/README.md -------------------------------------------------------------------------------- /Glitter/Vendor/stb/data/easy_font_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/data/easy_font_raw.png -------------------------------------------------------------------------------- /Glitter/Vendor/stb/data/map_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/data/map_01.png -------------------------------------------------------------------------------- /Glitter/Vendor/stb/data/map_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/data/map_02.png -------------------------------------------------------------------------------- /Glitter/Vendor/stb/data/map_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/data/map_03.png -------------------------------------------------------------------------------- /Glitter/Vendor/stb/deprecated/rrsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/deprecated/rrsprintf.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/deprecated/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/deprecated/stb_image.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/docs/other_libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/docs/other_libs.md -------------------------------------------------------------------------------- /Glitter/Vendor/stb/docs/stb_howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/docs/stb_howto.txt -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_c_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_c_lexer.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_divide.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_dxt.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_easy_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_easy_font.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_image.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_image_resize.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_image_write.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_leakcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_leakcheck.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_perlin.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_rect_pack.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_sprintf.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_textedit.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_tilemap_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_tilemap_editor.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_truetype.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_vorbis.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stb_voxel_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stb_voxel_render.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/stretchy_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/stretchy_buffer.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/Makefile -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/c_lexer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/c_lexer_test.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/c_lexer_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/c_lexer_test.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/caveview/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/caveview/glext.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/caveview/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/caveview/stb_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/caveview/stb_gl.h -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/herringbone.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/herringbone.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/herringbone_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/herringbone_map.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/image_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/image_test.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/image_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/image_test.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/oversample/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/oversample/main.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/resample_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/resample_test.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/resample_test_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/resample_test_c.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/resize.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/resize.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/stb.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/stb.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stb.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/stb.dsw -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stb_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/stb_cpp.cpp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stb_cpp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/stb_cpp.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stretch_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/stretch_test.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stretch_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/stretch_test.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/stretchy_buffer_test.c: -------------------------------------------------------------------------------- 1 | #include "stretchy_buffer.h" -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/test_truetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/test_truetype.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/test_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/test_vorbis.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tests/textedit_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tests/textedit_sample.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/README.footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tools/README.footer.md -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/README.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tools/README.header.md -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/README.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tools/README.list -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/easy_font_maker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tools/easy_font_maker.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/make_readme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tools/make_readme.c -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/make_readme.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tools/make_readme.dsp -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/mr.bat: -------------------------------------------------------------------------------- 1 | debug\make_readme 2 | -------------------------------------------------------------------------------- /Glitter/Vendor/stb/tools/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/Glitter/Vendor/stb/tools/unicode.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/README.md -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevor-m/deep-gbuffers/HEAD/report.pdf --------------------------------------------------------------------------------