├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── code_formatting.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── branding ├── banner-transparent.png ├── banner.png ├── icon-transparent-small.png ├── icon-transparent.png ├── icon.png └── screenshot.png ├── cmake └── FindDucktape.cmake ├── contributing.md ├── editor ├── CMakeLists.txt ├── editor.cpp ├── editor.h └── panels │ ├── hierarchy_panel.h │ ├── inspector_panel.h │ ├── panel_base.h │ ├── resource_browser_panel.h │ ├── tool_bar_panel.h │ └── world_view_panel.h ├── engine ├── CMakeLists.txt ├── components │ ├── camera.cpp │ ├── camera.h │ ├── first_person_controller.cpp │ ├── first_person_controller.h │ ├── joint.cpp │ ├── joint.h │ ├── sprite_renderer.cpp │ ├── sprite_renderer.h │ ├── tag.cpp │ ├── tag.h │ ├── transform.cpp │ └── transform.h ├── core │ ├── application.h │ ├── asset.h │ ├── context.h │ ├── input_manager.cpp │ ├── input_manager.h │ ├── log.h │ ├── module.cpp │ ├── module.h │ ├── platform.cpp │ ├── platform.h │ ├── serialization.h │ ├── stage.h │ ├── window.cpp │ └── window.h ├── dtpch.cpp ├── dtpch.h ├── renderer │ ├── material.cpp │ ├── material.h │ ├── mesh.cpp │ ├── mesh.h │ ├── renderer.cpp │ ├── renderer.h │ ├── shader.cpp │ ├── shader.h │ ├── texture.cpp │ ├── texture.h │ └── vertex.h ├── scene │ ├── generic_system.h │ ├── scene_manager.cpp │ └── scene_manager.h └── utils │ ├── imgui.cpp │ ├── imgui.h │ ├── math.h │ ├── sfinae.h │ ├── stb_image.cpp │ └── stb_image.h ├── install-deps-arch.sh ├── install-deps-debian.sh ├── lib ├── CMakeLists.txt ├── assimp │ ├── CMakeLists.txt │ ├── LICENSE │ ├── assimp.pc.in │ ├── cmake-modules │ │ ├── Coveralls.cmake │ │ ├── CoverallsClear.cmake │ │ ├── CoverallsGenerateGcov.cmake │ │ ├── DebSourcePPA.cmake │ │ ├── FindDevIL.cmake │ │ ├── FindDirectX.cmake │ │ ├── FindPkgMacros.cmake │ │ ├── FindRT.cmake │ │ ├── FindZLIB.cmake │ │ ├── Findassimp.cmake │ │ ├── HunterGate.cmake │ │ ├── MinGW_x86_64.cmake │ │ ├── PrecompiledHeader.cmake │ │ ├── assimp-hunter-config.cmake.in │ │ ├── assimp-plain-config.cmake.in │ │ └── cmake_uninstall.cmake.in │ ├── code │ │ ├── .editorconfig │ │ ├── AssetLib │ │ │ ├── 3DS │ │ │ │ ├── 3DSConverter.cpp │ │ │ │ ├── 3DSExporter.cpp │ │ │ │ ├── 3DSExporter.h │ │ │ │ ├── 3DSHelper.h │ │ │ │ ├── 3DSLoader.cpp │ │ │ │ └── 3DSLoader.h │ │ │ ├── 3MF │ │ │ │ ├── 3MFTypes.h │ │ │ │ ├── 3MFXmlTags.h │ │ │ │ ├── D3MFExporter.cpp │ │ │ │ ├── D3MFExporter.h │ │ │ │ ├── D3MFImporter.cpp │ │ │ │ ├── D3MFImporter.h │ │ │ │ ├── D3MFOpcPackage.cpp │ │ │ │ ├── D3MFOpcPackage.h │ │ │ │ ├── XmlSerializer.cpp │ │ │ │ └── XmlSerializer.h │ │ │ ├── AC │ │ │ │ ├── ACLoader.cpp │ │ │ │ └── ACLoader.h │ │ │ ├── AMF │ │ │ │ ├── AMFImporter.cpp │ │ │ │ ├── AMFImporter.hpp │ │ │ │ ├── AMFImporter_Geometry.cpp │ │ │ │ ├── AMFImporter_Material.cpp │ │ │ │ ├── AMFImporter_Node.hpp │ │ │ │ └── AMFImporter_Postprocess.cpp │ │ │ ├── ASE │ │ │ │ ├── ASELoader.cpp │ │ │ │ ├── ASELoader.h │ │ │ │ ├── ASEParser.cpp │ │ │ │ └── ASEParser.h │ │ │ ├── Assbin │ │ │ │ ├── AssbinExporter.cpp │ │ │ │ ├── AssbinExporter.h │ │ │ │ ├── AssbinFileWriter.cpp │ │ │ │ ├── AssbinFileWriter.h │ │ │ │ ├── AssbinLoader.cpp │ │ │ │ └── AssbinLoader.h │ │ │ ├── Assjson │ │ │ │ ├── cencode.c │ │ │ │ ├── cencode.h │ │ │ │ ├── json_exporter.cpp │ │ │ │ ├── mesh_splitter.cpp │ │ │ │ └── mesh_splitter.h │ │ │ ├── Assxml │ │ │ │ ├── AssxmlExporter.cpp │ │ │ │ ├── AssxmlExporter.h │ │ │ │ ├── AssxmlFileWriter.cpp │ │ │ │ └── AssxmlFileWriter.h │ │ │ ├── B3D │ │ │ │ ├── B3DImporter.cpp │ │ │ │ └── B3DImporter.h │ │ │ ├── BVH │ │ │ │ ├── BVHLoader.cpp │ │ │ │ └── BVHLoader.h │ │ │ ├── Blender │ │ │ │ ├── BlenderBMesh.cpp │ │ │ │ ├── BlenderBMesh.h │ │ │ │ ├── BlenderCustomData.cpp │ │ │ │ ├── BlenderCustomData.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 │ │ │ ├── C4D │ │ │ │ ├── C4DImporter.cpp │ │ │ │ └── C4DImporter.h │ │ │ ├── COB │ │ │ │ ├── COBLoader.cpp │ │ │ │ ├── COBLoader.h │ │ │ │ └── COBScene.h │ │ │ ├── CSM │ │ │ │ ├── CSMLoader.cpp │ │ │ │ └── CSMLoader.h │ │ │ ├── Collada │ │ │ │ ├── ColladaExporter.cpp │ │ │ │ ├── ColladaExporter.h │ │ │ │ ├── ColladaHelper.cpp │ │ │ │ ├── ColladaHelper.h │ │ │ │ ├── ColladaLoader.cpp │ │ │ │ ├── ColladaLoader.h │ │ │ │ ├── ColladaParser.cpp │ │ │ │ └── ColladaParser.h │ │ │ ├── DXF │ │ │ │ ├── DXFHelper.h │ │ │ │ ├── DXFLoader.cpp │ │ │ │ └── DXFLoader.h │ │ │ ├── FBX │ │ │ │ ├── FBXAnimation.cpp │ │ │ │ ├── FBXBinaryTokenizer.cpp │ │ │ │ ├── FBXCommon.h │ │ │ │ ├── FBXCompileConfig.h │ │ │ │ ├── FBXConverter.cpp │ │ │ │ ├── FBXConverter.h │ │ │ │ ├── FBXDeformer.cpp │ │ │ │ ├── FBXDocument.cpp │ │ │ │ ├── FBXDocument.h │ │ │ │ ├── FBXDocumentUtil.cpp │ │ │ │ ├── FBXDocumentUtil.h │ │ │ │ ├── FBXExportNode.cpp │ │ │ │ ├── FBXExportNode.h │ │ │ │ ├── FBXExportProperty.cpp │ │ │ │ ├── FBXExportProperty.h │ │ │ │ ├── FBXExporter.cpp │ │ │ │ ├── FBXExporter.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 │ │ │ ├── HMP │ │ │ │ ├── HMPFileData.h │ │ │ │ ├── HMPLoader.cpp │ │ │ │ ├── HMPLoader.h │ │ │ │ └── HalfLifeFileData.h │ │ │ ├── IFC │ │ │ │ ├── IFCBoolean.cpp │ │ │ │ ├── IFCCurve.cpp │ │ │ │ ├── IFCGeometry.cpp │ │ │ │ ├── IFCLoader.cpp │ │ │ │ ├── IFCLoader.h │ │ │ │ ├── IFCMaterial.cpp │ │ │ │ ├── IFCOpenings.cpp │ │ │ │ ├── IFCProfile.cpp │ │ │ │ ├── IFCReaderGen1_2x3.cpp │ │ │ │ ├── IFCReaderGen2_2x3.cpp │ │ │ │ ├── IFCReaderGen_2x3.h │ │ │ │ ├── IFCReaderGen_4.cpp │ │ │ │ ├── IFCReaderGen_4.h │ │ │ │ ├── IFCUtil.cpp │ │ │ │ └── IFCUtil.h │ │ │ ├── IQM │ │ │ │ ├── IQMImporter.cpp │ │ │ │ ├── IQMImporter.h │ │ │ │ └── iqm.h │ │ │ ├── Irr │ │ │ │ ├── IRRLoader.cpp │ │ │ │ ├── IRRLoader.h │ │ │ │ ├── IRRMeshLoader.cpp │ │ │ │ ├── IRRMeshLoader.h │ │ │ │ ├── IRRShared.cpp │ │ │ │ └── IRRShared.h │ │ │ ├── LWO │ │ │ │ ├── LWOAnimation.cpp │ │ │ │ ├── LWOAnimation.h │ │ │ │ ├── LWOBLoader.cpp │ │ │ │ ├── LWOFileData.h │ │ │ │ ├── LWOLoader.cpp │ │ │ │ ├── LWOLoader.h │ │ │ │ └── LWOMaterial.cpp │ │ │ ├── LWS │ │ │ │ ├── LWSLoader.cpp │ │ │ │ └── LWSLoader.h │ │ │ ├── M3D │ │ │ │ ├── M3DExporter.cpp │ │ │ │ ├── M3DExporter.h │ │ │ │ ├── M3DImporter.cpp │ │ │ │ ├── M3DImporter.h │ │ │ │ ├── M3DMaterials.h │ │ │ │ ├── M3DWrapper.cpp │ │ │ │ ├── M3DWrapper.h │ │ │ │ └── m3d.h │ │ │ ├── MD2 │ │ │ │ ├── MD2FileData.h │ │ │ │ ├── MD2Loader.cpp │ │ │ │ ├── MD2Loader.h │ │ │ │ └── MD2NormalTable.h │ │ │ ├── MD3 │ │ │ │ ├── MD3FileData.h │ │ │ │ ├── MD3Loader.cpp │ │ │ │ └── MD3Loader.h │ │ │ ├── MD4 │ │ │ │ └── MD4FileData.h │ │ │ ├── MD5 │ │ │ │ ├── MD5Loader.cpp │ │ │ │ ├── MD5Loader.h │ │ │ │ ├── MD5Parser.cpp │ │ │ │ └── MD5Parser.h │ │ │ ├── MDC │ │ │ │ ├── MDCFileData.h │ │ │ │ ├── MDCLoader.cpp │ │ │ │ ├── MDCLoader.h │ │ │ │ └── MDCNormalTable.h │ │ │ ├── MDL │ │ │ │ ├── HalfLife │ │ │ │ │ ├── HL1FileData.h │ │ │ │ │ ├── HL1ImportDefinitions.h │ │ │ │ │ ├── HL1ImportSettings.h │ │ │ │ │ ├── HL1MDLLoader.cpp │ │ │ │ │ ├── HL1MDLLoader.h │ │ │ │ │ ├── HL1MeshTrivert.h │ │ │ │ │ ├── HalfLifeMDLBaseHeader.h │ │ │ │ │ ├── LogFunctions.h │ │ │ │ │ ├── UniqueNameGenerator.cpp │ │ │ │ │ └── UniqueNameGenerator.h │ │ │ │ ├── MDLDefaultColorMap.h │ │ │ │ ├── MDLFileData.h │ │ │ │ ├── MDLLoader.cpp │ │ │ │ ├── MDLLoader.h │ │ │ │ └── MDLMaterialLoader.cpp │ │ │ ├── MMD │ │ │ │ ├── MMDCpp14.h │ │ │ │ ├── MMDImporter.cpp │ │ │ │ ├── MMDImporter.h │ │ │ │ ├── MMDPmdParser.h │ │ │ │ ├── MMDPmxParser.cpp │ │ │ │ ├── MMDPmxParser.h │ │ │ │ └── MMDVmdParser.h │ │ │ ├── MS3D │ │ │ │ ├── MS3DLoader.cpp │ │ │ │ └── MS3DLoader.h │ │ │ ├── NDO │ │ │ │ ├── NDOLoader.cpp │ │ │ │ └── NDOLoader.h │ │ │ ├── NFF │ │ │ │ ├── NFFLoader.cpp │ │ │ │ └── NFFLoader.h │ │ │ ├── OFF │ │ │ │ ├── OFFLoader.cpp │ │ │ │ └── OFFLoader.h │ │ │ ├── Obj │ │ │ │ ├── ObjExporter.cpp │ │ │ │ ├── ObjExporter.h │ │ │ │ ├── ObjFileData.h │ │ │ │ ├── ObjFileImporter.cpp │ │ │ │ ├── ObjFileImporter.h │ │ │ │ ├── ObjFileMtlImporter.cpp │ │ │ │ ├── ObjFileMtlImporter.h │ │ │ │ ├── ObjFileParser.cpp │ │ │ │ ├── ObjFileParser.h │ │ │ │ └── ObjTools.h │ │ │ ├── Ogre │ │ │ │ ├── OgreBinarySerializer.cpp │ │ │ │ ├── OgreBinarySerializer.h │ │ │ │ ├── OgreImporter.cpp │ │ │ │ ├── OgreImporter.h │ │ │ │ ├── OgreMaterial.cpp │ │ │ │ ├── OgreParsingUtils.h │ │ │ │ ├── OgreStructs.cpp │ │ │ │ ├── OgreStructs.h │ │ │ │ ├── OgreXmlSerializer.cpp │ │ │ │ └── OgreXmlSerializer.h │ │ │ ├── OpenGEX │ │ │ │ ├── OpenGEXExporter.cpp │ │ │ │ ├── OpenGEXExporter.h │ │ │ │ ├── OpenGEXImporter.cpp │ │ │ │ ├── OpenGEXImporter.h │ │ │ │ └── OpenGEXStructs.h │ │ │ ├── Ply │ │ │ │ ├── PlyExporter.cpp │ │ │ │ ├── PlyExporter.h │ │ │ │ ├── PlyLoader.cpp │ │ │ │ ├── PlyLoader.h │ │ │ │ ├── PlyParser.cpp │ │ │ │ └── PlyParser.h │ │ │ ├── Q3BSP │ │ │ │ ├── Q3BSPFileData.h │ │ │ │ ├── Q3BSPFileImporter.cpp │ │ │ │ ├── Q3BSPFileImporter.h │ │ │ │ ├── Q3BSPFileParser.cpp │ │ │ │ └── Q3BSPFileParser.h │ │ │ ├── Q3D │ │ │ │ ├── Q3DLoader.cpp │ │ │ │ └── Q3DLoader.h │ │ │ ├── Raw │ │ │ │ ├── RawLoader.cpp │ │ │ │ └── RawLoader.h │ │ │ ├── SIB │ │ │ │ ├── SIBImporter.cpp │ │ │ │ └── SIBImporter.h │ │ │ ├── SMD │ │ │ │ ├── SMDLoader.cpp │ │ │ │ └── SMDLoader.h │ │ │ ├── STEPParser │ │ │ │ ├── STEPFileEncoding.cpp │ │ │ │ ├── STEPFileEncoding.h │ │ │ │ ├── STEPFileReader.cpp │ │ │ │ └── STEPFileReader.h │ │ │ ├── STL │ │ │ │ ├── STLExporter.cpp │ │ │ │ ├── STLExporter.h │ │ │ │ ├── STLLoader.cpp │ │ │ │ └── STLLoader.h │ │ │ ├── Step │ │ │ │ ├── STEPFile.h │ │ │ │ ├── StepExporter.cpp │ │ │ │ └── StepExporter.h │ │ │ ├── Terragen │ │ │ │ ├── TerragenLoader.cpp │ │ │ │ └── TerragenLoader.h │ │ │ ├── Unreal │ │ │ │ ├── UnrealLoader.cpp │ │ │ │ └── UnrealLoader.h │ │ │ ├── X │ │ │ │ ├── XFileExporter.cpp │ │ │ │ ├── XFileExporter.h │ │ │ │ ├── XFileHelper.h │ │ │ │ ├── XFileImporter.cpp │ │ │ │ ├── XFileImporter.h │ │ │ │ ├── XFileParser.cpp │ │ │ │ └── XFileParser.h │ │ │ ├── X3D │ │ │ │ ├── X3DExporter.cpp │ │ │ │ ├── X3DExporter.hpp │ │ │ │ ├── X3DGeoHelper.cpp │ │ │ │ ├── X3DGeoHelper.h │ │ │ │ ├── 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 │ │ │ │ ├── X3DXmlHelper.cpp │ │ │ │ └── X3DXmlHelper.h │ │ │ ├── XGL │ │ │ │ ├── XGLLoader.cpp │ │ │ │ └── XGLLoader.h │ │ │ ├── glTF │ │ │ │ ├── glTFAsset.h │ │ │ │ ├── glTFAsset.inl │ │ │ │ ├── glTFAssetWriter.h │ │ │ │ ├── glTFAssetWriter.inl │ │ │ │ ├── glTFCommon.cpp │ │ │ │ ├── glTFCommon.h │ │ │ │ ├── glTFExporter.cpp │ │ │ │ ├── glTFExporter.h │ │ │ │ ├── glTFImporter.cpp │ │ │ │ └── glTFImporter.h │ │ │ └── glTF2 │ │ │ │ ├── glTF2Asset.h │ │ │ │ ├── glTF2Asset.inl │ │ │ │ ├── glTF2AssetWriter.h │ │ │ │ ├── glTF2AssetWriter.inl │ │ │ │ ├── glTF2Exporter.cpp │ │ │ │ ├── glTF2Exporter.h │ │ │ │ ├── glTF2Importer.cpp │ │ │ │ └── glTF2Importer.h │ │ ├── CApi │ │ │ ├── AssimpCExport.cpp │ │ │ ├── CInterfaceIOWrapper.cpp │ │ │ └── CInterfaceIOWrapper.h │ │ ├── CMakeLists.txt │ │ ├── Common │ │ │ ├── AssertHandler.cpp │ │ │ ├── AssertHandler.h │ │ │ ├── Assimp.cpp │ │ │ ├── Base64.cpp │ │ │ ├── BaseImporter.cpp │ │ │ ├── BaseProcess.cpp │ │ │ ├── BaseProcess.h │ │ │ ├── Bitmap.cpp │ │ │ ├── Compression.cpp │ │ │ ├── Compression.h │ │ │ ├── CreateAnimMesh.cpp │ │ │ ├── DefaultIOStream.cpp │ │ │ ├── DefaultIOSystem.cpp │ │ │ ├── DefaultLogger.cpp │ │ │ ├── DefaultProgressHandler.h │ │ │ ├── Exceptional.cpp │ │ │ ├── Exporter.cpp │ │ │ ├── FileLogStream.h │ │ │ ├── FileSystemFilter.h │ │ │ ├── IFF.h │ │ │ ├── IOSystem.cpp │ │ │ ├── Importer.cpp │ │ │ ├── Importer.h │ │ │ ├── ImporterRegistry.cpp │ │ │ ├── Maybe.h │ │ │ ├── PolyTools.h │ │ │ ├── PostStepRegistry.cpp │ │ │ ├── RemoveComments.cpp │ │ │ ├── SGSpatialSort.cpp │ │ │ ├── SceneCombiner.cpp │ │ │ ├── ScenePreprocessor.cpp │ │ │ ├── ScenePreprocessor.h │ │ │ ├── ScenePrivate.h │ │ │ ├── SkeletonMeshBuilder.cpp │ │ │ ├── SpatialSort.cpp │ │ │ ├── StandardShapes.cpp │ │ │ ├── StbCommon.h │ │ │ ├── StdOStreamLogStream.h │ │ │ ├── Subdivision.cpp │ │ │ ├── TargetAnimation.cpp │ │ │ ├── TargetAnimation.h │ │ │ ├── Version.cpp │ │ │ ├── VertexTriangleAdjacency.cpp │ │ │ ├── VertexTriangleAdjacency.h │ │ │ ├── Win32DebugLogStream.h │ │ │ ├── ZipArchiveIOSystem.cpp │ │ │ ├── assbin_chunks.h │ │ │ ├── material.cpp │ │ │ ├── scene.cpp │ │ │ ├── simd.cpp │ │ │ └── simd.h │ │ ├── Material │ │ │ ├── MaterialSystem.cpp │ │ │ └── MaterialSystem.h │ │ ├── Pbrt │ │ │ ├── PbrtExporter.cpp │ │ │ └── PbrtExporter.h │ │ ├── PostProcessing │ │ │ ├── ArmaturePopulate.cpp │ │ │ ├── ArmaturePopulate.h │ │ │ ├── CalcTangentsProcess.cpp │ │ │ ├── CalcTangentsProcess.h │ │ │ ├── ComputeUVMappingProcess.cpp │ │ │ ├── ComputeUVMappingProcess.h │ │ │ ├── ConvertToLHProcess.cpp │ │ │ ├── ConvertToLHProcess.h │ │ │ ├── DeboneProcess.cpp │ │ │ ├── DeboneProcess.h │ │ │ ├── DropFaceNormalsProcess.cpp │ │ │ ├── DropFaceNormalsProcess.h │ │ │ ├── EmbedTexturesProcess.cpp │ │ │ ├── EmbedTexturesProcess.h │ │ │ ├── FindDegenerates.cpp │ │ │ ├── FindDegenerates.h │ │ │ ├── FindInstancesProcess.cpp │ │ │ ├── FindInstancesProcess.h │ │ │ ├── FindInvalidDataProcess.cpp │ │ │ ├── FindInvalidDataProcess.h │ │ │ ├── FixNormalsStep.cpp │ │ │ ├── FixNormalsStep.h │ │ │ ├── GenBoundingBoxesProcess.cpp │ │ │ ├── GenBoundingBoxesProcess.h │ │ │ ├── GenFaceNormalsProcess.cpp │ │ │ ├── GenFaceNormalsProcess.h │ │ │ ├── GenVertexNormalsProcess.cpp │ │ │ ├── GenVertexNormalsProcess.h │ │ │ ├── ImproveCacheLocality.cpp │ │ │ ├── ImproveCacheLocality.h │ │ │ ├── JoinVerticesProcess.cpp │ │ │ ├── JoinVerticesProcess.h │ │ │ ├── LimitBoneWeightsProcess.cpp │ │ │ ├── LimitBoneWeightsProcess.h │ │ │ ├── MakeVerboseFormat.cpp │ │ │ ├── MakeVerboseFormat.h │ │ │ ├── OptimizeGraph.cpp │ │ │ ├── OptimizeGraph.h │ │ │ ├── OptimizeMeshes.cpp │ │ │ ├── OptimizeMeshes.h │ │ │ ├── PretransformVertices.cpp │ │ │ ├── PretransformVertices.h │ │ │ ├── ProcessHelper.cpp │ │ │ ├── ProcessHelper.h │ │ │ ├── RemoveRedundantMaterials.cpp │ │ │ ├── RemoveRedundantMaterials.h │ │ │ ├── RemoveVCProcess.cpp │ │ │ ├── RemoveVCProcess.h │ │ │ ├── ScaleProcess.cpp │ │ │ ├── ScaleProcess.h │ │ │ ├── SortByPTypeProcess.cpp │ │ │ ├── SortByPTypeProcess.h │ │ │ ├── SplitByBoneCountProcess.cpp │ │ │ ├── SplitByBoneCountProcess.h │ │ │ ├── SplitLargeMeshes.cpp │ │ │ ├── SplitLargeMeshes.h │ │ │ ├── TextureTransform.cpp │ │ │ ├── TextureTransform.h │ │ │ ├── TriangulateProcess.cpp │ │ │ ├── TriangulateProcess.h │ │ │ ├── ValidateDataStructure.cpp │ │ │ └── ValidateDataStructure.h │ │ └── res │ │ │ └── assimp.rc │ ├── contrib │ │ ├── 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 │ │ ├── android-cmake │ │ │ ├── AndroidNdkGdb.cmake │ │ │ ├── AndroidNdkModules.cmake │ │ │ ├── README.md │ │ │ ├── android.toolchain.cmake │ │ │ └── ndk_links.md │ │ ├── clipper │ │ │ ├── License.txt │ │ │ ├── clipper.cpp │ │ │ └── clipper.hpp │ │ ├── draco │ │ │ ├── .clang-format │ │ │ ├── .cmake-format.py │ │ │ ├── AUTHORS │ │ │ ├── BUILDING.md │ │ │ ├── CMAKE.md │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ ├── DracoConfig.cmake │ │ │ │ ├── FindDraco.cmake │ │ │ │ ├── compiler_flags.cmake │ │ │ │ ├── compiler_tests.cmake │ │ │ │ ├── draco-config.cmake.template │ │ │ │ ├── draco.pc.template │ │ │ │ ├── draco_build_definitions.cmake │ │ │ │ ├── draco_cpu_detection.cmake │ │ │ │ ├── draco_emscripten.cmake │ │ │ │ ├── draco_flags.cmake │ │ │ │ ├── draco_helpers.cmake │ │ │ │ ├── draco_install.cmake │ │ │ │ ├── draco_intrinsics.cmake │ │ │ │ ├── draco_options.cmake │ │ │ │ ├── draco_sanitizer.cmake │ │ │ │ ├── draco_targets.cmake │ │ │ │ ├── draco_test_config.h.cmake │ │ │ │ ├── draco_tests.cmake │ │ │ │ ├── draco_variables.cmake │ │ │ │ ├── sanitizers.cmake │ │ │ │ ├── toolchains │ │ │ │ │ ├── aarch64-linux-gnu.cmake │ │ │ │ │ ├── android-ndk-common.cmake │ │ │ │ │ ├── android.cmake │ │ │ │ │ ├── arm-ios-common.cmake │ │ │ │ │ ├── arm-linux-gnueabihf.cmake │ │ │ │ │ ├── arm64-android-ndk-libcpp.cmake │ │ │ │ │ ├── arm64-ios.cmake │ │ │ │ │ ├── arm64-linux-gcc.cmake │ │ │ │ │ ├── armv7-android-ndk-libcpp.cmake │ │ │ │ │ ├── armv7-ios.cmake │ │ │ │ │ ├── armv7-linux-gcc.cmake │ │ │ │ │ ├── armv7s-ios.cmake │ │ │ │ │ ├── i386-ios.cmake │ │ │ │ │ ├── x86-android-ndk-libcpp.cmake │ │ │ │ │ ├── x86_64-android-ndk-libcpp.cmake │ │ │ │ │ └── x86_64-ios.cmake │ │ │ │ └── util.cmake │ │ │ └── src │ │ │ │ └── draco │ │ │ │ ├── animation │ │ │ │ ├── keyframe_animation.cc │ │ │ │ ├── keyframe_animation.h │ │ │ │ ├── keyframe_animation_decoder.cc │ │ │ │ ├── keyframe_animation_decoder.h │ │ │ │ ├── keyframe_animation_encoder.cc │ │ │ │ ├── keyframe_animation_encoder.h │ │ │ │ ├── keyframe_animation_encoding_test.cc │ │ │ │ └── keyframe_animation_test.cc │ │ │ │ ├── attributes │ │ │ │ ├── attribute_octahedron_transform.cc │ │ │ │ ├── attribute_octahedron_transform.h │ │ │ │ ├── attribute_quantization_transform.cc │ │ │ │ ├── attribute_quantization_transform.h │ │ │ │ ├── attribute_transform.cc │ │ │ │ ├── attribute_transform.h │ │ │ │ ├── attribute_transform_data.h │ │ │ │ ├── attribute_transform_type.h │ │ │ │ ├── geometry_attribute.cc │ │ │ │ ├── geometry_attribute.h │ │ │ │ ├── geometry_indices.h │ │ │ │ ├── point_attribute.cc │ │ │ │ ├── point_attribute.h │ │ │ │ └── point_attribute_test.cc │ │ │ │ ├── compression │ │ │ │ ├── attributes │ │ │ │ │ ├── attributes_decoder.cc │ │ │ │ │ ├── attributes_decoder.h │ │ │ │ │ ├── attributes_decoder_interface.h │ │ │ │ │ ├── attributes_encoder.cc │ │ │ │ │ ├── attributes_encoder.h │ │ │ │ │ ├── kd_tree_attributes_decoder.cc │ │ │ │ │ ├── kd_tree_attributes_decoder.h │ │ │ │ │ ├── kd_tree_attributes_encoder.cc │ │ │ │ │ ├── kd_tree_attributes_encoder.h │ │ │ │ │ ├── kd_tree_attributes_shared.h │ │ │ │ │ ├── linear_sequencer.h │ │ │ │ │ ├── mesh_attribute_indices_encoding_data.h │ │ │ │ │ ├── normal_compression_utils.h │ │ │ │ │ ├── point_d_vector.h │ │ │ │ │ ├── point_d_vector_test.cc │ │ │ │ │ ├── points_sequencer.h │ │ │ │ │ ├── prediction_schemes │ │ │ │ │ │ ├── mesh_prediction_scheme_constrained_multi_parallelogram_decoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_constrained_multi_parallelogram_encoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_constrained_multi_parallelogram_shared.h │ │ │ │ │ │ ├── mesh_prediction_scheme_data.h │ │ │ │ │ │ ├── mesh_prediction_scheme_decoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_encoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_geometric_normal_decoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_geometric_normal_encoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_geometric_normal_predictor_area.h │ │ │ │ │ │ ├── mesh_prediction_scheme_geometric_normal_predictor_base.h │ │ │ │ │ │ ├── mesh_prediction_scheme_multi_parallelogram_decoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_multi_parallelogram_encoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_parallelogram_decoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_parallelogram_encoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_parallelogram_shared.h │ │ │ │ │ │ ├── mesh_prediction_scheme_tex_coords_decoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_tex_coords_encoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_tex_coords_portable_decoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_tex_coords_portable_encoder.h │ │ │ │ │ │ ├── mesh_prediction_scheme_tex_coords_portable_predictor.h │ │ │ │ │ │ ├── prediction_scheme_decoder.h │ │ │ │ │ │ ├── prediction_scheme_decoder_factory.h │ │ │ │ │ │ ├── prediction_scheme_decoder_interface.h │ │ │ │ │ │ ├── prediction_scheme_decoding_transform.h │ │ │ │ │ │ ├── prediction_scheme_delta_decoder.h │ │ │ │ │ │ ├── prediction_scheme_delta_encoder.h │ │ │ │ │ │ ├── prediction_scheme_encoder.h │ │ │ │ │ │ ├── prediction_scheme_encoder_factory.cc │ │ │ │ │ │ ├── prediction_scheme_encoder_factory.h │ │ │ │ │ │ ├── prediction_scheme_encoder_interface.h │ │ │ │ │ │ ├── prediction_scheme_encoding_transform.h │ │ │ │ │ │ ├── prediction_scheme_factory.h │ │ │ │ │ │ ├── prediction_scheme_interface.h │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_canonicalized_decoding_transform.h │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_canonicalized_encoding_transform.h │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_canonicalized_transform_base.h │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_canonicalized_transform_test.cc │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_decoding_transform.h │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_encoding_transform.h │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_transform_base.h │ │ │ │ │ │ ├── prediction_scheme_normal_octahedron_transform_test.cc │ │ │ │ │ │ ├── prediction_scheme_wrap_decoding_transform.h │ │ │ │ │ │ ├── prediction_scheme_wrap_encoding_transform.h │ │ │ │ │ │ └── prediction_scheme_wrap_transform_base.h │ │ │ │ │ ├── sequential_attribute_decoder.cc │ │ │ │ │ ├── sequential_attribute_decoder.h │ │ │ │ │ ├── sequential_attribute_decoders_controller.cc │ │ │ │ │ ├── sequential_attribute_decoders_controller.h │ │ │ │ │ ├── sequential_attribute_encoder.cc │ │ │ │ │ ├── sequential_attribute_encoder.h │ │ │ │ │ ├── sequential_attribute_encoders_controller.cc │ │ │ │ │ ├── sequential_attribute_encoders_controller.h │ │ │ │ │ ├── sequential_integer_attribute_decoder.cc │ │ │ │ │ ├── sequential_integer_attribute_decoder.h │ │ │ │ │ ├── sequential_integer_attribute_encoder.cc │ │ │ │ │ ├── sequential_integer_attribute_encoder.h │ │ │ │ │ ├── sequential_integer_attribute_encoding_test.cc │ │ │ │ │ ├── sequential_normal_attribute_decoder.cc │ │ │ │ │ ├── sequential_normal_attribute_decoder.h │ │ │ │ │ ├── sequential_normal_attribute_encoder.cc │ │ │ │ │ ├── sequential_normal_attribute_encoder.h │ │ │ │ │ ├── sequential_quantization_attribute_decoder.cc │ │ │ │ │ ├── sequential_quantization_attribute_decoder.h │ │ │ │ │ ├── sequential_quantization_attribute_encoder.cc │ │ │ │ │ └── sequential_quantization_attribute_encoder.h │ │ │ │ ├── bit_coders │ │ │ │ │ ├── adaptive_rans_bit_coding_shared.h │ │ │ │ │ ├── adaptive_rans_bit_decoder.cc │ │ │ │ │ ├── adaptive_rans_bit_decoder.h │ │ │ │ │ ├── adaptive_rans_bit_encoder.cc │ │ │ │ │ ├── adaptive_rans_bit_encoder.h │ │ │ │ │ ├── direct_bit_decoder.cc │ │ │ │ │ ├── direct_bit_decoder.h │ │ │ │ │ ├── direct_bit_encoder.cc │ │ │ │ │ ├── direct_bit_encoder.h │ │ │ │ │ ├── folded_integer_bit_decoder.h │ │ │ │ │ ├── folded_integer_bit_encoder.h │ │ │ │ │ ├── rans_bit_decoder.cc │ │ │ │ │ ├── rans_bit_decoder.h │ │ │ │ │ ├── rans_bit_encoder.cc │ │ │ │ │ ├── rans_bit_encoder.h │ │ │ │ │ ├── rans_coding_test.cc │ │ │ │ │ ├── symbol_bit_decoder.cc │ │ │ │ │ ├── symbol_bit_decoder.h │ │ │ │ │ ├── symbol_bit_encoder.cc │ │ │ │ │ └── symbol_bit_encoder.h │ │ │ │ ├── config │ │ │ │ │ ├── compression_shared.h │ │ │ │ │ ├── decoder_options.h │ │ │ │ │ ├── decoder_options_test.cc │ │ │ │ │ ├── draco_options.h │ │ │ │ │ ├── encoder_options.h │ │ │ │ │ └── encoding_features.h │ │ │ │ ├── decode.cc │ │ │ │ ├── decode.h │ │ │ │ ├── decode_test.cc │ │ │ │ ├── encode.cc │ │ │ │ ├── encode.h │ │ │ │ ├── encode_base.h │ │ │ │ ├── encode_test.cc │ │ │ │ ├── entropy │ │ │ │ │ ├── ans.h │ │ │ │ │ ├── rans_symbol_coding.h │ │ │ │ │ ├── rans_symbol_decoder.h │ │ │ │ │ ├── rans_symbol_encoder.h │ │ │ │ │ ├── shannon_entropy.cc │ │ │ │ │ ├── shannon_entropy.h │ │ │ │ │ ├── shannon_entropy_test.cc │ │ │ │ │ ├── symbol_coding_test.cc │ │ │ │ │ ├── symbol_decoding.cc │ │ │ │ │ ├── symbol_decoding.h │ │ │ │ │ ├── symbol_encoding.cc │ │ │ │ │ └── symbol_encoding.h │ │ │ │ ├── expert_encode.cc │ │ │ │ ├── expert_encode.h │ │ │ │ ├── mesh │ │ │ │ │ ├── mesh_decoder.cc │ │ │ │ │ ├── mesh_decoder.h │ │ │ │ │ ├── mesh_edgebreaker_decoder.cc │ │ │ │ │ ├── mesh_edgebreaker_decoder.h │ │ │ │ │ ├── mesh_edgebreaker_decoder_impl.cc │ │ │ │ │ ├── mesh_edgebreaker_decoder_impl.h │ │ │ │ │ ├── mesh_edgebreaker_decoder_impl_interface.h │ │ │ │ │ ├── mesh_edgebreaker_encoder.cc │ │ │ │ │ ├── mesh_edgebreaker_encoder.h │ │ │ │ │ ├── mesh_edgebreaker_encoder_impl.cc │ │ │ │ │ ├── mesh_edgebreaker_encoder_impl.h │ │ │ │ │ ├── mesh_edgebreaker_encoder_impl_interface.h │ │ │ │ │ ├── mesh_edgebreaker_encoding_test.cc │ │ │ │ │ ├── mesh_edgebreaker_shared.h │ │ │ │ │ ├── mesh_edgebreaker_traversal_decoder.h │ │ │ │ │ ├── mesh_edgebreaker_traversal_encoder.h │ │ │ │ │ ├── mesh_edgebreaker_traversal_predictive_decoder.h │ │ │ │ │ ├── mesh_edgebreaker_traversal_predictive_encoder.h │ │ │ │ │ ├── mesh_edgebreaker_traversal_valence_decoder.h │ │ │ │ │ ├── mesh_edgebreaker_traversal_valence_encoder.h │ │ │ │ │ ├── mesh_encoder.cc │ │ │ │ │ ├── mesh_encoder.h │ │ │ │ │ ├── mesh_encoder_test.cc │ │ │ │ │ ├── mesh_sequential_decoder.cc │ │ │ │ │ ├── mesh_sequential_decoder.h │ │ │ │ │ ├── mesh_sequential_encoder.cc │ │ │ │ │ ├── mesh_sequential_encoder.h │ │ │ │ │ └── traverser │ │ │ │ │ │ ├── depth_first_traverser.h │ │ │ │ │ │ ├── max_prediction_degree_traverser.h │ │ │ │ │ │ ├── mesh_attribute_indices_encoding_observer.h │ │ │ │ │ │ ├── mesh_traversal_sequencer.h │ │ │ │ │ │ └── traverser_base.h │ │ │ │ └── point_cloud │ │ │ │ │ ├── algorithms │ │ │ │ │ ├── dynamic_integer_points_kd_tree_decoder.cc │ │ │ │ │ ├── dynamic_integer_points_kd_tree_decoder.h │ │ │ │ │ ├── dynamic_integer_points_kd_tree_encoder.cc │ │ │ │ │ ├── dynamic_integer_points_kd_tree_encoder.h │ │ │ │ │ ├── float_points_tree_decoder.cc │ │ │ │ │ ├── float_points_tree_decoder.h │ │ │ │ │ ├── float_points_tree_encoder.cc │ │ │ │ │ ├── float_points_tree_encoder.h │ │ │ │ │ ├── integer_points_kd_tree_decoder.cc │ │ │ │ │ ├── integer_points_kd_tree_decoder.h │ │ │ │ │ ├── integer_points_kd_tree_encoder.cc │ │ │ │ │ ├── integer_points_kd_tree_encoder.h │ │ │ │ │ ├── point_cloud_compression_method.h │ │ │ │ │ ├── point_cloud_types.h │ │ │ │ │ ├── quantize_points_3.h │ │ │ │ │ └── queuing_policy.h │ │ │ │ │ ├── point_cloud_decoder.cc │ │ │ │ │ ├── point_cloud_decoder.h │ │ │ │ │ ├── point_cloud_encoder.cc │ │ │ │ │ ├── point_cloud_encoder.h │ │ │ │ │ ├── point_cloud_kd_tree_decoder.cc │ │ │ │ │ ├── point_cloud_kd_tree_decoder.h │ │ │ │ │ ├── point_cloud_kd_tree_encoder.cc │ │ │ │ │ ├── point_cloud_kd_tree_encoder.h │ │ │ │ │ ├── point_cloud_kd_tree_encoding_test.cc │ │ │ │ │ ├── point_cloud_sequential_decoder.cc │ │ │ │ │ ├── point_cloud_sequential_decoder.h │ │ │ │ │ ├── point_cloud_sequential_encoder.cc │ │ │ │ │ ├── point_cloud_sequential_encoder.h │ │ │ │ │ └── point_cloud_sequential_encoding_test.cc │ │ │ │ ├── core │ │ │ │ ├── bit_utils.cc │ │ │ │ ├── bit_utils.h │ │ │ │ ├── bounding_box.cc │ │ │ │ ├── bounding_box.h │ │ │ │ ├── buffer_bit_coding_test.cc │ │ │ │ ├── cycle_timer.cc │ │ │ │ ├── cycle_timer.h │ │ │ │ ├── data_buffer.cc │ │ │ │ ├── data_buffer.h │ │ │ │ ├── decoder_buffer.cc │ │ │ │ ├── decoder_buffer.h │ │ │ │ ├── divide.cc │ │ │ │ ├── divide.h │ │ │ │ ├── draco_index_type.h │ │ │ │ ├── draco_index_type_vector.h │ │ │ │ ├── draco_test_base.h │ │ │ │ ├── draco_test_utils.cc │ │ │ │ ├── draco_test_utils.h │ │ │ │ ├── draco_types.cc │ │ │ │ ├── draco_types.h │ │ │ │ ├── draco_version.h │ │ │ │ ├── encoder_buffer.cc │ │ │ │ ├── encoder_buffer.h │ │ │ │ ├── hash_utils.cc │ │ │ │ ├── hash_utils.h │ │ │ │ ├── macros.h │ │ │ │ ├── math_utils.h │ │ │ │ ├── math_utils_test.cc │ │ │ │ ├── options.cc │ │ │ │ ├── options.h │ │ │ │ ├── quantization_utils.cc │ │ │ │ ├── quantization_utils.h │ │ │ │ ├── quantization_utils_test.cc │ │ │ │ ├── status.h │ │ │ │ ├── status_or.h │ │ │ │ ├── status_test.cc │ │ │ │ ├── varint_decoding.h │ │ │ │ ├── varint_encoding.h │ │ │ │ ├── vector_d.h │ │ │ │ └── vector_d_test.cc │ │ │ │ ├── io │ │ │ │ ├── file_reader_factory.cc │ │ │ │ ├── file_reader_factory.h │ │ │ │ ├── file_reader_factory_test.cc │ │ │ │ ├── file_reader_interface.h │ │ │ │ ├── file_reader_test_common.h │ │ │ │ ├── file_utils.cc │ │ │ │ ├── file_utils.h │ │ │ │ ├── file_utils_test.cc │ │ │ │ ├── file_writer_factory.cc │ │ │ │ ├── file_writer_factory.h │ │ │ │ ├── file_writer_factory_test.cc │ │ │ │ ├── file_writer_interface.h │ │ │ │ ├── file_writer_utils.cc │ │ │ │ ├── file_writer_utils.h │ │ │ │ ├── mesh_io.cc │ │ │ │ ├── mesh_io.h │ │ │ │ ├── obj_decoder.cc │ │ │ │ ├── obj_decoder.h │ │ │ │ ├── obj_decoder_test.cc │ │ │ │ ├── obj_encoder.cc │ │ │ │ ├── obj_encoder.h │ │ │ │ ├── obj_encoder_test.cc │ │ │ │ ├── parser_utils.cc │ │ │ │ ├── parser_utils.h │ │ │ │ ├── ply_decoder.cc │ │ │ │ ├── ply_decoder.h │ │ │ │ ├── ply_decoder_test.cc │ │ │ │ ├── ply_encoder.cc │ │ │ │ ├── ply_encoder.h │ │ │ │ ├── ply_property_reader.h │ │ │ │ ├── ply_property_writer.h │ │ │ │ ├── ply_reader.cc │ │ │ │ ├── ply_reader.h │ │ │ │ ├── ply_reader_test.cc │ │ │ │ ├── point_cloud_io.cc │ │ │ │ ├── point_cloud_io.h │ │ │ │ ├── point_cloud_io_test.cc │ │ │ │ ├── stdio_file_reader.cc │ │ │ │ ├── stdio_file_reader.h │ │ │ │ ├── stdio_file_reader_test.cc │ │ │ │ ├── stdio_file_writer.cc │ │ │ │ ├── stdio_file_writer.h │ │ │ │ └── stdio_file_writer_test.cc │ │ │ │ ├── javascript │ │ │ │ └── emscripten │ │ │ │ │ ├── animation_decoder_webidl_wrapper.cc │ │ │ │ │ ├── animation_decoder_webidl_wrapper.h │ │ │ │ │ ├── animation_encoder_webidl_wrapper.cc │ │ │ │ │ ├── animation_encoder_webidl_wrapper.h │ │ │ │ │ ├── decoder_functions.js │ │ │ │ │ ├── decoder_webidl_wrapper.cc │ │ │ │ │ ├── decoder_webidl_wrapper.h │ │ │ │ │ ├── draco_animation_decoder_glue_wrapper.cc │ │ │ │ │ ├── draco_animation_encoder_glue_wrapper.cc │ │ │ │ │ ├── draco_animation_web_decoder.idl │ │ │ │ │ ├── draco_animation_web_encoder.idl │ │ │ │ │ ├── draco_decoder_glue_wrapper.cc │ │ │ │ │ ├── draco_encoder_glue_wrapper.cc │ │ │ │ │ ├── draco_web_decoder.idl │ │ │ │ │ ├── draco_web_encoder.idl │ │ │ │ │ ├── encoder_webidl_wrapper.cc │ │ │ │ │ ├── encoder_webidl_wrapper.h │ │ │ │ │ ├── finalize.js │ │ │ │ │ ├── prepareCallbacks.js │ │ │ │ │ └── version.js │ │ │ │ ├── maya │ │ │ │ ├── draco_maya_plugin.cc │ │ │ │ └── draco_maya_plugin.h │ │ │ │ ├── mesh │ │ │ │ ├── corner_table.cc │ │ │ │ ├── corner_table.h │ │ │ │ ├── corner_table_iterators.h │ │ │ │ ├── mesh.cc │ │ │ │ ├── mesh.h │ │ │ │ ├── mesh_are_equivalent.cc │ │ │ │ ├── mesh_are_equivalent.h │ │ │ │ ├── mesh_are_equivalent_test.cc │ │ │ │ ├── mesh_attribute_corner_table.cc │ │ │ │ ├── mesh_attribute_corner_table.h │ │ │ │ ├── mesh_cleanup.cc │ │ │ │ ├── mesh_cleanup.h │ │ │ │ ├── mesh_cleanup_test.cc │ │ │ │ ├── mesh_misc_functions.cc │ │ │ │ ├── mesh_misc_functions.h │ │ │ │ ├── mesh_stripifier.cc │ │ │ │ ├── mesh_stripifier.h │ │ │ │ ├── triangle_soup_mesh_builder.cc │ │ │ │ ├── triangle_soup_mesh_builder.h │ │ │ │ ├── triangle_soup_mesh_builder_test.cc │ │ │ │ └── valence_cache.h │ │ │ │ ├── metadata │ │ │ │ ├── geometry_metadata.cc │ │ │ │ ├── geometry_metadata.h │ │ │ │ ├── metadata.cc │ │ │ │ ├── metadata.h │ │ │ │ ├── metadata_decoder.cc │ │ │ │ ├── metadata_decoder.h │ │ │ │ ├── metadata_encoder.cc │ │ │ │ ├── metadata_encoder.h │ │ │ │ ├── metadata_encoder_test.cc │ │ │ │ └── metadata_test.cc │ │ │ │ ├── point_cloud │ │ │ │ ├── point_cloud.cc │ │ │ │ ├── point_cloud.h │ │ │ │ ├── point_cloud_builder.cc │ │ │ │ ├── point_cloud_builder.h │ │ │ │ ├── point_cloud_builder_test.cc │ │ │ │ └── point_cloud_test.cc │ │ │ │ ├── tools │ │ │ │ ├── draco_decoder.cc │ │ │ │ ├── draco_encoder.cc │ │ │ │ └── fuzz │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── draco_mesh_decoder_fuzzer.cc │ │ │ │ │ ├── draco_mesh_decoder_without_dequantization_fuzzer.cc │ │ │ │ │ ├── draco_pc_decoder_fuzzer.cc │ │ │ │ │ └── draco_pc_decoder_without_dequantization_fuzzer.cc │ │ │ │ └── unity │ │ │ │ ├── draco_unity_plugin.cc │ │ │ │ ├── draco_unity_plugin.h │ │ │ │ └── draco_unity_plugin_test.cc │ │ ├── gtest │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-aux │ │ │ │ └── .keep │ │ │ ├── cmake │ │ │ │ ├── Config.cmake.in │ │ │ │ ├── gtest.pc.in │ │ │ │ ├── gtest_main.pc.in │ │ │ │ ├── internal_utils.cmake │ │ │ │ └── libgtest.la.in │ │ │ ├── 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 │ │ │ │ ├── README.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-matchers.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 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── 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 │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ ├── 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 │ │ │ │ ├── README.md │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ ├── release_docs.py │ │ │ │ ├── run_with_path.py │ │ │ │ ├── test │ │ │ │ │ └── Makefile │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ └── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-matchers.cc │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ ├── openddlparser │ │ │ ├── CMakeLists.txt │ │ │ ├── CREDITS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── code │ │ │ │ ├── DDLNode.cpp │ │ │ │ ├── OpenDDLCommon.cpp │ │ │ │ ├── OpenDDLExport.cpp │ │ │ │ ├── OpenDDLParser.cpp │ │ │ │ ├── OpenDDLStream.cpp │ │ │ │ └── Value.cpp │ │ │ └── include │ │ │ │ └── openddlparser │ │ │ │ ├── DDLNode.h │ │ │ │ ├── OpenDDLCommon.h │ │ │ │ ├── OpenDDLExport.h │ │ │ │ ├── OpenDDLParser.h │ │ │ │ ├── OpenDDLParserUtils.h │ │ │ │ ├── OpenDDLStream.h │ │ │ │ ├── TPoolAllocator.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 │ │ ├── pugixml │ │ │ ├── CMakeLists.txt │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── pugiconfig.hpp │ │ │ │ ├── pugixml.cpp │ │ │ │ └── pugixml.hpp │ │ ├── rapidjson │ │ │ ├── include │ │ │ │ └── rapidjson │ │ │ │ │ ├── allocators.h │ │ │ │ │ ├── cursorstreamwrapper.h │ │ │ │ │ ├── document.h │ │ │ │ │ ├── encodedstream.h │ │ │ │ │ ├── encodings.h │ │ │ │ │ ├── error │ │ │ │ │ ├── en.h │ │ │ │ │ └── error.h │ │ │ │ │ ├── filereadstream.h │ │ │ │ │ ├── filewritestream.h │ │ │ │ │ ├── fwd.h │ │ │ │ │ ├── internal │ │ │ │ │ ├── biginteger.h │ │ │ │ │ ├── clzll.h │ │ │ │ │ ├── diyfp.h │ │ │ │ │ ├── dtoa.h │ │ │ │ │ ├── ieee754.h │ │ │ │ │ ├── itoa.h │ │ │ │ │ ├── meta.h │ │ │ │ │ ├── pow10.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── strfunc.h │ │ │ │ │ ├── strtod.h │ │ │ │ │ └── swap.h │ │ │ │ │ ├── istreamwrapper.h │ │ │ │ │ ├── memorybuffer.h │ │ │ │ │ ├── memorystream.h │ │ │ │ │ ├── msinttypes │ │ │ │ │ ├── inttypes.h │ │ │ │ │ └── stdint.h │ │ │ │ │ ├── ostreamwrapper.h │ │ │ │ │ ├── pointer.h │ │ │ │ │ ├── prettywriter.h │ │ │ │ │ ├── rapidjson.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── schema.h │ │ │ │ │ ├── stream.h │ │ │ │ │ ├── stringbuffer.h │ │ │ │ │ └── writer.h │ │ │ ├── license.txt │ │ │ └── readme.md │ │ ├── stb │ │ │ └── stb_image.h │ │ ├── unzip │ │ │ ├── crypt.c │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── unzip.c │ │ │ └── unzip.h │ │ ├── utf8cpp │ │ │ ├── doc │ │ │ │ ├── ReleaseNotes │ │ │ │ └── utf8cpp.html │ │ │ └── source │ │ │ │ ├── utf8.h │ │ │ │ └── utf8 │ │ │ │ ├── checked.h │ │ │ │ ├── core.h │ │ │ │ ├── cpp11.h │ │ │ │ └── unchecked.h │ │ ├── zip │ │ │ ├── .travis.sh │ │ │ ├── .travis.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── UNLICENSE │ │ │ ├── cmake │ │ │ │ ├── asan-wrapper │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ ├── src │ │ │ │ ├── miniz.h │ │ │ │ ├── zip.c │ │ │ │ └── zip.h │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test.c │ │ │ │ └── test_miniz.c │ │ │ └── zip.png │ │ ├── zlib │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── contrib │ │ │ │ ├── README.contrib │ │ │ │ ├── ada │ │ │ │ │ ├── buffer_demo.adb │ │ │ │ │ ├── mtest.adb │ │ │ │ │ ├── read.adb │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── test.adb │ │ │ │ │ ├── zlib-streams.adb │ │ │ │ │ ├── zlib-streams.ads │ │ │ │ │ ├── zlib-thin.adb │ │ │ │ │ ├── zlib-thin.ads │ │ │ │ │ ├── zlib.adb │ │ │ │ │ ├── zlib.ads │ │ │ │ │ └── zlib.gpr │ │ │ │ ├── amd64 │ │ │ │ │ └── amd64-match.S │ │ │ │ ├── asm686 │ │ │ │ │ ├── README.686 │ │ │ │ │ └── match.S │ │ │ │ ├── blast │ │ │ │ │ ├── README │ │ │ │ │ ├── blast.c │ │ │ │ │ ├── blast.h │ │ │ │ │ ├── test.pk │ │ │ │ │ └── test.txt │ │ │ │ ├── delphi │ │ │ │ │ ├── ZLib.pas │ │ │ │ │ ├── ZLibConst.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── zlibd32.mak │ │ │ │ ├── dotzlib │ │ │ │ │ ├── DotZLib.build │ │ │ │ │ ├── DotZLib.chm │ │ │ │ │ ├── DotZLib │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ │ ├── CircularBuffer.cs │ │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ │ ├── DotZLib.csproj │ │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ │ └── UnitTests.cs │ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ │ └── readme.txt │ │ │ │ ├── gcc_gvmat64 │ │ │ │ │ └── gvmat64.S │ │ │ │ ├── infback9 │ │ │ │ │ ├── README │ │ │ │ │ ├── infback9.c │ │ │ │ │ ├── infback9.h │ │ │ │ │ ├── inffix9.h │ │ │ │ │ ├── inflate9.h │ │ │ │ │ ├── inftree9.c │ │ │ │ │ └── inftree9.h │ │ │ │ ├── inflate86 │ │ │ │ │ ├── inffas86.c │ │ │ │ │ └── inffast.S │ │ │ │ ├── iostream │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── zfstream.cpp │ │ │ │ │ └── zfstream.h │ │ │ │ ├── iostream2 │ │ │ │ │ ├── zstream.h │ │ │ │ │ └── zstream_test.cpp │ │ │ │ ├── iostream3 │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── test.cc │ │ │ │ │ ├── zfstream.cc │ │ │ │ │ └── zfstream.h │ │ │ │ ├── masmx64 │ │ │ │ │ ├── bld_ml64.bat │ │ │ │ │ ├── gvmat64.asm │ │ │ │ │ ├── inffas8664.c │ │ │ │ │ ├── inffasx64.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── masmx86 │ │ │ │ │ ├── bld_ml32.bat │ │ │ │ │ ├── inffas32.asm │ │ │ │ │ ├── match686.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── minizip │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ │ ├── MiniZip64_info.txt │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── ioapi.c │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── iowin32.c │ │ │ │ │ ├── iowin32.h │ │ │ │ │ ├── make_vms.com │ │ │ │ │ ├── miniunz.c │ │ │ │ │ ├── miniunzip.1 │ │ │ │ │ ├── minizip.1 │ │ │ │ │ ├── minizip.c │ │ │ │ │ ├── minizip.pc.in │ │ │ │ │ ├── mztools.c │ │ │ │ │ ├── mztools.h │ │ │ │ │ ├── unzip.c │ │ │ │ │ ├── unzip.h │ │ │ │ │ ├── zip.c │ │ │ │ │ └── zip.h │ │ │ │ ├── pascal │ │ │ │ │ ├── example.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── zlibd32.mak │ │ │ │ │ └── zlibpas.pas │ │ │ │ ├── puff │ │ │ │ │ ├── README │ │ │ │ │ ├── puff.c │ │ │ │ │ ├── puff.h │ │ │ │ │ ├── pufftest.c │ │ │ │ │ └── zeros.raw │ │ │ │ ├── testzlib │ │ │ │ │ ├── testzlib.c │ │ │ │ │ └── testzlib.txt │ │ │ │ ├── untgz │ │ │ │ │ ├── Makefile.msc │ │ │ │ │ └── untgz.c │ │ │ │ └── vstudio │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── vc10 │ │ │ │ │ ├── zlib.rc │ │ │ │ │ └── zlibvc.def │ │ │ │ │ ├── vc11 │ │ │ │ │ ├── zlib.rc │ │ │ │ │ └── zlibvc.def │ │ │ │ │ ├── vc12 │ │ │ │ │ ├── zlib.rc │ │ │ │ │ └── zlibvc.def │ │ │ │ │ ├── vc14 │ │ │ │ │ ├── zlib.rc │ │ │ │ │ └── zlibvc.def │ │ │ │ │ └── vc9 │ │ │ │ │ ├── zlib.rc │ │ │ │ │ └── zlibvc.def │ │ │ ├── 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.in │ │ │ ├── zconf.h.included │ │ │ ├── zlib.h │ │ │ ├── zlib.pc.cmakein │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ └── zlib_note.txt │ ├── fuzz │ │ └── assimp_fuzzer.cc │ ├── include │ │ └── assimp │ │ │ ├── .editorconfig │ │ │ ├── Base64.hpp │ │ │ ├── BaseImporter.h │ │ │ ├── Bitmap.h │ │ │ ├── BlobIOSystem.h │ │ │ ├── ByteSwapper.h │ │ │ ├── ColladaMetaData.h │ │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ │ ├── CreateAnimMesh.h │ │ │ ├── DefaultIOStream.h │ │ │ ├── DefaultIOSystem.h │ │ │ ├── DefaultLogger.hpp │ │ │ ├── Exceptional.h │ │ │ ├── Exporter.hpp │ │ │ ├── GenericProperty.h │ │ │ ├── GltfMaterial.h │ │ │ ├── Hash.h │ │ │ ├── IOStream.hpp │ │ │ ├── IOStreamBuffer.h │ │ │ ├── IOSystem.hpp │ │ │ ├── Importer.hpp │ │ │ ├── LineSplitter.h │ │ │ ├── LogAux.h │ │ │ ├── LogStream.hpp │ │ │ ├── Logger.hpp │ │ │ ├── MathFunctions.h │ │ │ ├── MemoryIOWrapper.h │ │ │ ├── NullLogger.hpp │ │ │ ├── ObjMaterial.h │ │ │ ├── ParsingUtils.h │ │ │ ├── Profiler.h │ │ │ ├── ProgressHandler.hpp │ │ │ ├── RemoveComments.h │ │ │ ├── SGSpatialSort.h │ │ │ ├── SceneCombiner.h │ │ │ ├── SkeletonMeshBuilder.h │ │ │ ├── SmallVector.h │ │ │ ├── SmoothingGroups.h │ │ │ ├── SmoothingGroups.inl │ │ │ ├── SpatialSort.h │ │ │ ├── StandardShapes.h │ │ │ ├── StreamReader.h │ │ │ ├── StreamWriter.h │ │ │ ├── StringComparison.h │ │ │ ├── StringUtils.h │ │ │ ├── Subdivision.h │ │ │ ├── TinyFormatter.h │ │ │ ├── Vertex.h │ │ │ ├── XMLTools.h │ │ │ ├── XmlParser.h │ │ │ ├── ZipArchiveIOSystem.h │ │ │ ├── aabb.h │ │ │ ├── ai_assert.h │ │ │ ├── anim.h │ │ │ ├── camera.h │ │ │ ├── cexport.h │ │ │ ├── cfileio.h │ │ │ ├── cimport.h │ │ │ ├── color4.h │ │ │ ├── color4.inl │ │ │ ├── commonMetaData.h │ │ │ ├── config.h.in │ │ │ ├── defs.h │ │ │ ├── fast_atof.h │ │ │ ├── importerdesc.h │ │ │ ├── light.h │ │ │ ├── material.h │ │ │ ├── material.inl │ │ │ ├── matrix3x3.h │ │ │ ├── matrix3x3.inl │ │ │ ├── matrix4x4.h │ │ │ ├── matrix4x4.inl │ │ │ ├── mesh.h │ │ │ ├── metadata.h │ │ │ ├── pbrmaterial.h │ │ │ ├── port │ │ │ └── AndroidJNI │ │ │ │ ├── AndroidJNIIOSystem.h │ │ │ │ └── BundledAssetIOSystem.h │ │ │ ├── postprocess.h │ │ │ ├── qnan.h │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── scene.h │ │ │ ├── texture.h │ │ │ ├── types.h │ │ │ ├── vector2.h │ │ │ ├── vector2.inl │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ └── version.h │ └── revision.h.in ├── glad │ ├── CMakeLists.txt │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c └── glm │ ├── CMakeLists.txt │ ├── cmake │ └── glm │ │ ├── glmConfig-version.cmake │ │ └── glmConfig.cmake │ ├── copying.txt │ ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_relational.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── qualifier.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_half.hpp │ │ ├── type_half.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_quat.hpp │ │ ├── type_quat.inl │ │ ├── type_quat_simd.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 │ ├── ext │ │ ├── matrix_clip_space.hpp │ │ ├── matrix_clip_space.inl │ │ ├── matrix_common.hpp │ │ ├── matrix_common.inl │ │ ├── matrix_double2x2.hpp │ │ ├── matrix_double2x2_precision.hpp │ │ ├── matrix_double2x3.hpp │ │ ├── matrix_double2x3_precision.hpp │ │ ├── matrix_double2x4.hpp │ │ ├── matrix_double2x4_precision.hpp │ │ ├── matrix_double3x2.hpp │ │ ├── matrix_double3x2_precision.hpp │ │ ├── matrix_double3x3.hpp │ │ ├── matrix_double3x3_precision.hpp │ │ ├── matrix_double3x4.hpp │ │ ├── matrix_double3x4_precision.hpp │ │ ├── matrix_double4x2.hpp │ │ ├── matrix_double4x2_precision.hpp │ │ ├── matrix_double4x3.hpp │ │ ├── matrix_double4x3_precision.hpp │ │ ├── matrix_double4x4.hpp │ │ ├── matrix_double4x4_precision.hpp │ │ ├── matrix_float2x2.hpp │ │ ├── matrix_float2x2_precision.hpp │ │ ├── matrix_float2x3.hpp │ │ ├── matrix_float2x3_precision.hpp │ │ ├── matrix_float2x4.hpp │ │ ├── matrix_float2x4_precision.hpp │ │ ├── matrix_float3x2.hpp │ │ ├── matrix_float3x2_precision.hpp │ │ ├── matrix_float3x3.hpp │ │ ├── matrix_float3x3_precision.hpp │ │ ├── matrix_float3x4.hpp │ │ ├── matrix_float3x4_precision.hpp │ │ ├── matrix_float4x2.hpp │ │ ├── matrix_float4x2_precision.hpp │ │ ├── matrix_float4x3.hpp │ │ ├── matrix_float4x3_precision.hpp │ │ ├── matrix_float4x4.hpp │ │ ├── matrix_float4x4_precision.hpp │ │ ├── matrix_int2x2.hpp │ │ ├── matrix_int2x2_sized.hpp │ │ ├── matrix_int2x3.hpp │ │ ├── matrix_int2x3_sized.hpp │ │ ├── matrix_int2x4.hpp │ │ ├── matrix_int2x4_sized.hpp │ │ ├── matrix_int3x2.hpp │ │ ├── matrix_int3x2_sized.hpp │ │ ├── matrix_int3x3.hpp │ │ ├── matrix_int3x3_sized.hpp │ │ ├── matrix_int3x4.hpp │ │ ├── matrix_int3x4_sized.hpp │ │ ├── matrix_int4x2.hpp │ │ ├── matrix_int4x2_sized.hpp │ │ ├── matrix_int4x3.hpp │ │ ├── matrix_int4x3_sized.hpp │ │ ├── matrix_int4x4.hpp │ │ ├── matrix_int4x4_sized.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── matrix_uint2x2.hpp │ │ ├── matrix_uint2x2_sized.hpp │ │ ├── matrix_uint2x3.hpp │ │ ├── matrix_uint2x3_sized.hpp │ │ ├── matrix_uint2x4.hpp │ │ ├── matrix_uint2x4_sized.hpp │ │ ├── matrix_uint3x2.hpp │ │ ├── matrix_uint3x2_sized.hpp │ │ ├── matrix_uint3x3.hpp │ │ ├── matrix_uint3x3_sized.hpp │ │ ├── matrix_uint3x4.hpp │ │ ├── matrix_uint3x4_sized.hpp │ │ ├── matrix_uint4x2.hpp │ │ ├── matrix_uint4x2_sized.hpp │ │ ├── matrix_uint4x3.hpp │ │ ├── matrix_uint4x3_sized.hpp │ │ ├── matrix_uint4x4.hpp │ │ ├── matrix_uint4x4_sized.hpp │ │ ├── quaternion_common.hpp │ │ ├── quaternion_common.inl │ │ ├── quaternion_common_simd.inl │ │ ├── quaternion_double.hpp │ │ ├── quaternion_double_precision.hpp │ │ ├── quaternion_exponential.hpp │ │ ├── quaternion_exponential.inl │ │ ├── quaternion_float.hpp │ │ ├── quaternion_float_precision.hpp │ │ ├── quaternion_geometric.hpp │ │ ├── quaternion_geometric.inl │ │ ├── quaternion_relational.hpp │ │ ├── quaternion_relational.inl │ │ ├── quaternion_transform.hpp │ │ ├── quaternion_transform.inl │ │ ├── quaternion_trigonometric.hpp │ │ ├── quaternion_trigonometric.inl │ │ ├── scalar_common.hpp │ │ ├── scalar_common.inl │ │ ├── scalar_constants.hpp │ │ ├── scalar_constants.inl │ │ ├── scalar_int_sized.hpp │ │ ├── scalar_integer.hpp │ │ ├── scalar_integer.inl │ │ ├── scalar_packing.hpp │ │ ├── scalar_packing.inl │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── vector_bool1.hpp │ │ ├── vector_bool1_precision.hpp │ │ ├── vector_bool2.hpp │ │ ├── vector_bool2_precision.hpp │ │ ├── vector_bool3.hpp │ │ ├── vector_bool3_precision.hpp │ │ ├── vector_bool4.hpp │ │ ├── vector_bool4_precision.hpp │ │ ├── vector_common.hpp │ │ ├── vector_common.inl │ │ ├── vector_double1.hpp │ │ ├── vector_double1_precision.hpp │ │ ├── vector_double2.hpp │ │ ├── vector_double2_precision.hpp │ │ ├── vector_double3.hpp │ │ ├── vector_double3_precision.hpp │ │ ├── vector_double4.hpp │ │ ├── vector_double4_precision.hpp │ │ ├── vector_float1.hpp │ │ ├── vector_float1_precision.hpp │ │ ├── vector_float2.hpp │ │ ├── vector_float2_precision.hpp │ │ ├── vector_float3.hpp │ │ ├── vector_float3_precision.hpp │ │ ├── vector_float4.hpp │ │ ├── vector_float4_precision.hpp │ │ ├── vector_int1.hpp │ │ ├── vector_int1_sized.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_sized.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_sized.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_sized.hpp │ │ ├── vector_integer.hpp │ │ ├── vector_integer.inl │ │ ├── vector_packing.hpp │ │ ├── vector_packing.inl │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_sized.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_sized.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_sized.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_sized.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ ├── 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 │ │ ├── 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 │ ├── 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 │ │ ├── easing.hpp │ │ ├── easing.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── exterior_product.hpp │ │ ├── exterior_product.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── functions.hpp │ │ ├── functions.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_factorisation.hpp │ │ ├── matrix_factorisation.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 │ │ ├── texture.hpp │ │ ├── texture.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 │ │ ├── neon.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp │ └── util │ ├── autoexp.txt │ ├── autoexp.vc2010.dat │ ├── glm.natvis │ └── usertype.dat ├── runtime ├── CMakeLists.txt └── main.cpp └── sandbox ├── CMakeLists.txt ├── assets ├── engine │ ├── fonts │ │ ├── Funnel_Display │ │ │ ├── FunnelDisplay-VariableFont_wght.ttf │ │ │ ├── OFL.txt │ │ │ ├── README.txt │ │ │ └── static │ │ │ │ ├── FunnelDisplay-Bold.ttf │ │ │ │ ├── FunnelDisplay-ExtraBold.ttf │ │ │ │ ├── FunnelDisplay-Light.ttf │ │ │ │ ├── FunnelDisplay-Medium.ttf │ │ │ │ ├── FunnelDisplay-Regular.ttf │ │ │ │ └── FunnelDisplay-SemiBold.ttf │ │ ├── Helvetica │ │ │ ├── Helvetica-Bold.ttf │ │ │ ├── Helvetica-BoldOblique.ttf │ │ │ ├── Helvetica-Oblique.ttf │ │ │ ├── Helvetica.ttf │ │ │ ├── helvetica-compressed-5871d14b6903a.otf │ │ │ ├── helvetica-light-587ebe5a59211.ttf │ │ │ └── helvetica-rounded-bold-5871d05ead8de.otf │ │ └── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ ├── icons │ │ ├── rotate.png │ │ ├── scale.png │ │ └── translate.png │ └── shaders │ │ └── default.glsl ├── models │ ├── amber │ │ ├── source │ │ │ └── PC Computer - Genshin Impact - Amber.zip │ │ └── textures │ │ │ ├── Amber_Tex_Body_Diffuse.png │ │ │ ├── Amber_Tex_Face_Diffuse.png │ │ │ └── Amber_Tex_hair_Diffuse.png │ ├── bike │ │ ├── source │ │ │ └── shirokocycle.glb │ │ └── textures │ │ │ └── Shiroko_Original_Cycle_0.png │ └── nanashi-mumei │ │ ├── source │ │ └── Nanashi_Mumei.fbx │ │ └── textures │ │ ├── Skin.png │ │ └── internal_ground_ao_texture.jpeg ├── scripts │ └── main.cpp └── textures │ ├── castle.png │ ├── ground.png │ ├── inventory.png │ ├── logo.png │ ├── mountains.png │ ├── nyan.png │ └── tree.png └── imgui.ini /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | ColumnLimit: 0 3 | IndentWidth: 4 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/code_formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/.github/ISSUE_TEMPLATE/code_formatting.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | .vscode 3 | build 4 | *.local.* -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/README.md -------------------------------------------------------------------------------- /branding/banner-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/branding/banner-transparent.png -------------------------------------------------------------------------------- /branding/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/branding/banner.png -------------------------------------------------------------------------------- /branding/icon-transparent-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/branding/icon-transparent-small.png -------------------------------------------------------------------------------- /branding/icon-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/branding/icon-transparent.png -------------------------------------------------------------------------------- /branding/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/branding/icon.png -------------------------------------------------------------------------------- /branding/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/branding/screenshot.png -------------------------------------------------------------------------------- /cmake/FindDucktape.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/cmake/FindDucktape.cmake -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/contributing.md -------------------------------------------------------------------------------- /editor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/CMakeLists.txt -------------------------------------------------------------------------------- /editor/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/editor.cpp -------------------------------------------------------------------------------- /editor/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/editor.h -------------------------------------------------------------------------------- /editor/panels/hierarchy_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/panels/hierarchy_panel.h -------------------------------------------------------------------------------- /editor/panels/inspector_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/panels/inspector_panel.h -------------------------------------------------------------------------------- /editor/panels/panel_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/panels/panel_base.h -------------------------------------------------------------------------------- /editor/panels/resource_browser_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/panels/resource_browser_panel.h -------------------------------------------------------------------------------- /editor/panels/tool_bar_panel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editor/panels/world_view_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/editor/panels/world_view_panel.h -------------------------------------------------------------------------------- /engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/CMakeLists.txt -------------------------------------------------------------------------------- /engine/components/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/camera.cpp -------------------------------------------------------------------------------- /engine/components/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/camera.h -------------------------------------------------------------------------------- /engine/components/joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/joint.cpp -------------------------------------------------------------------------------- /engine/components/joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/joint.h -------------------------------------------------------------------------------- /engine/components/sprite_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/sprite_renderer.cpp -------------------------------------------------------------------------------- /engine/components/sprite_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/sprite_renderer.h -------------------------------------------------------------------------------- /engine/components/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/tag.cpp -------------------------------------------------------------------------------- /engine/components/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/tag.h -------------------------------------------------------------------------------- /engine/components/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/transform.cpp -------------------------------------------------------------------------------- /engine/components/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/components/transform.h -------------------------------------------------------------------------------- /engine/core/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/application.h -------------------------------------------------------------------------------- /engine/core/asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/asset.h -------------------------------------------------------------------------------- /engine/core/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/context.h -------------------------------------------------------------------------------- /engine/core/input_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/input_manager.cpp -------------------------------------------------------------------------------- /engine/core/input_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/input_manager.h -------------------------------------------------------------------------------- /engine/core/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/log.h -------------------------------------------------------------------------------- /engine/core/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/module.cpp -------------------------------------------------------------------------------- /engine/core/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/module.h -------------------------------------------------------------------------------- /engine/core/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/platform.cpp -------------------------------------------------------------------------------- /engine/core/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/platform.h -------------------------------------------------------------------------------- /engine/core/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/serialization.h -------------------------------------------------------------------------------- /engine/core/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/stage.h -------------------------------------------------------------------------------- /engine/core/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/window.cpp -------------------------------------------------------------------------------- /engine/core/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/core/window.h -------------------------------------------------------------------------------- /engine/dtpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/dtpch.cpp -------------------------------------------------------------------------------- /engine/dtpch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/dtpch.h -------------------------------------------------------------------------------- /engine/renderer/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/material.cpp -------------------------------------------------------------------------------- /engine/renderer/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/material.h -------------------------------------------------------------------------------- /engine/renderer/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/mesh.cpp -------------------------------------------------------------------------------- /engine/renderer/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/mesh.h -------------------------------------------------------------------------------- /engine/renderer/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/renderer.cpp -------------------------------------------------------------------------------- /engine/renderer/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/renderer.h -------------------------------------------------------------------------------- /engine/renderer/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/shader.cpp -------------------------------------------------------------------------------- /engine/renderer/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/shader.h -------------------------------------------------------------------------------- /engine/renderer/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/texture.cpp -------------------------------------------------------------------------------- /engine/renderer/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/texture.h -------------------------------------------------------------------------------- /engine/renderer/vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/renderer/vertex.h -------------------------------------------------------------------------------- /engine/scene/generic_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/scene/generic_system.h -------------------------------------------------------------------------------- /engine/scene/scene_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/scene/scene_manager.cpp -------------------------------------------------------------------------------- /engine/scene/scene_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/scene/scene_manager.h -------------------------------------------------------------------------------- /engine/utils/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/utils/imgui.cpp -------------------------------------------------------------------------------- /engine/utils/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/utils/imgui.h -------------------------------------------------------------------------------- /engine/utils/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/utils/math.h -------------------------------------------------------------------------------- /engine/utils/sfinae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/utils/sfinae.h -------------------------------------------------------------------------------- /engine/utils/stb_image.cpp: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_IMPLEMENTATION 2 | #include -------------------------------------------------------------------------------- /engine/utils/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/engine/utils/stb_image.h -------------------------------------------------------------------------------- /install-deps-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/install-deps-arch.sh -------------------------------------------------------------------------------- /install-deps-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/install-deps-debian.sh -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/LICENSE -------------------------------------------------------------------------------- /lib/assimp/assimp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/assimp.pc.in -------------------------------------------------------------------------------- /lib/assimp/cmake-modules/Coveralls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/cmake-modules/Coveralls.cmake -------------------------------------------------------------------------------- /lib/assimp/cmake-modules/FindDevIL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/cmake-modules/FindDevIL.cmake -------------------------------------------------------------------------------- /lib/assimp/cmake-modules/FindDirectX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/cmake-modules/FindDirectX.cmake -------------------------------------------------------------------------------- /lib/assimp/cmake-modules/FindRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/cmake-modules/FindRT.cmake -------------------------------------------------------------------------------- /lib/assimp/cmake-modules/FindZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/cmake-modules/FindZLIB.cmake -------------------------------------------------------------------------------- /lib/assimp/cmake-modules/Findassimp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/cmake-modules/Findassimp.cmake -------------------------------------------------------------------------------- /lib/assimp/cmake-modules/HunterGate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/cmake-modules/HunterGate.cmake -------------------------------------------------------------------------------- /lib/assimp/code/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/.editorconfig -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/3DS/3DSExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/3DS/3DSExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/3DS/3DSHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/3DS/3DSHelper.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/3DS/3DSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/3DS/3DSLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/3DS/3DSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/3DS/3DSLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/3MF/3MFTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/3MF/3MFTypes.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/3MF/3MFXmlTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/3MF/3MFXmlTags.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/AC/ACLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/AC/ACLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/AC/ACLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/AC/ACLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/ASE/ASELoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/ASE/ASELoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/ASE/ASELoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/ASE/ASELoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/ASE/ASEParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/ASE/ASEParser.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/ASE/ASEParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/ASE/ASEParser.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Assjson/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Assjson/cencode.c -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Assjson/cencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Assjson/cencode.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/B3D/B3DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/B3D/B3DImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/BVH/BVHLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/BVH/BVHLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/BVH/BVHLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/BVH/BVHLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/C4D/C4DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/C4D/C4DImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/COB/COBLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/COB/COBLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/COB/COBLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/COB/COBLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/COB/COBScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/COB/COBScene.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/CSM/CSMLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/CSM/CSMLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/CSM/CSMLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/CSM/CSMLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/DXF/DXFHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/DXF/DXFHelper.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/DXF/DXFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/DXF/DXFLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/DXF/DXFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/DXF/DXFLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXCommon.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXDocument.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXModel.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXParser.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXParser.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXUtil.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/FBX/FBXUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/FBX/FBXUtil.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/HMP/HMPFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/HMP/HMPFileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/HMP/HMPLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/HMP/HMPLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/HMP/HMPLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/HMP/HMPLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/IFC/IFCCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/IFC/IFCCurve.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/IFC/IFCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/IFC/IFCLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/IFC/IFCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/IFC/IFCLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/IFC/IFCUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/IFC/IFCUtil.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/IFC/IFCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/IFC/IFCUtil.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/IQM/IQMImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/IQM/IQMImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/IQM/iqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/IQM/iqm.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Irr/IRRLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Irr/IRRLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Irr/IRRLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Irr/IRRLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Irr/IRRShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Irr/IRRShared.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Irr/IRRShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Irr/IRRShared.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/LWO/LWOFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/LWO/LWOFileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/LWO/LWOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/LWO/LWOLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/LWO/LWOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/LWO/LWOLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/LWS/LWSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/LWS/LWSLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/LWS/LWSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/LWS/LWSLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/M3D/M3DExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/M3D/M3DExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/M3D/M3DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/M3D/M3DImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/M3D/M3DWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/M3D/M3DWrapper.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/M3D/m3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/M3D/m3d.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD2/MD2FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD2/MD2FileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD2/MD2Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD2/MD2Loader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD2/MD2Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD2/MD2Loader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD3/MD3FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD3/MD3FileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD3/MD3Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD3/MD3Loader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD3/MD3Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD3/MD3Loader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD4/MD4FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD4/MD4FileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD5/MD5Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD5/MD5Loader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD5/MD5Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD5/MD5Loader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD5/MD5Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD5/MD5Parser.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MD5/MD5Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MD5/MD5Parser.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MDC/MDCFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MDC/MDCFileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MDC/MDCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MDC/MDCLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MDC/MDCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MDC/MDCLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MDL/MDLFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MDL/MDLFileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MDL/MDLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MDL/MDLLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MDL/MDLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MDL/MDLLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MMD/MMDCpp14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MMD/MMDCpp14.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MMD/MMDImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MMD/MMDImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/MS3D/MS3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/MS3D/MS3DLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/NDO/NDOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/NDO/NDOLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/NDO/NDOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/NDO/NDOLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/NFF/NFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/NFF/NFFLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/NFF/NFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/NFF/NFFLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/OFF/OFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/OFF/OFFLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/OFF/OFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/OFF/OFFLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Obj/ObjExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Obj/ObjExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Obj/ObjFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Obj/ObjFileData.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Obj/ObjTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Obj/ObjTools.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Ply/PlyExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Ply/PlyExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Ply/PlyLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Ply/PlyLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Ply/PlyLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Ply/PlyLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Ply/PlyParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Ply/PlyParser.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Ply/PlyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Ply/PlyParser.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Q3D/Q3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Q3D/Q3DLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Q3D/Q3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Q3D/Q3DLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Raw/RawLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Raw/RawLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Raw/RawLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Raw/RawLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/SIB/SIBImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/SIB/SIBImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/SMD/SMDLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/SMD/SMDLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/SMD/SMDLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/SMD/SMDLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/STL/STLExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/STL/STLExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/STL/STLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/STL/STLLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/STL/STLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/STL/STLLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/Step/STEPFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/Step/STEPFile.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/X/XFileExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/X/XFileExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/X/XFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/X/XFileHelper.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/X/XFileImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/X/XFileImporter.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/X/XFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/X/XFileParser.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/X/XFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/X/XFileParser.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/XGL/XGLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/XGL/XGLLoader.cpp -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/XGL/XGLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/XGL/XGLLoader.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/glTF/glTFAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/glTF/glTFAsset.h -------------------------------------------------------------------------------- /lib/assimp/code/AssetLib/glTF/glTFCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/AssetLib/glTF/glTFCommon.h -------------------------------------------------------------------------------- /lib/assimp/code/CApi/AssimpCExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/CApi/AssimpCExport.cpp -------------------------------------------------------------------------------- /lib/assimp/code/CApi/CInterfaceIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/CApi/CInterfaceIOWrapper.h -------------------------------------------------------------------------------- /lib/assimp/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/code/Common/AssertHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/AssertHandler.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/AssertHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/AssertHandler.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/Assimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Assimp.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Base64.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/BaseImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/BaseImporter.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/BaseProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/BaseProcess.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/BaseProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/BaseProcess.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Bitmap.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/Compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Compression.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Compression.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/CreateAnimMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/CreateAnimMesh.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/DefaultIOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/DefaultIOStream.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/DefaultIOSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/DefaultIOSystem.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/DefaultLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/DefaultLogger.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/Exceptional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Exceptional.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/Exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Exporter.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/FileLogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/FileLogStream.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/FileSystemFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/FileSystemFilter.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/IFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/IFF.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/IOSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/IOSystem.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Importer.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Importer.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/Maybe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Maybe.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/PolyTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/PolyTools.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/RemoveComments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/RemoveComments.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/SGSpatialSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/SGSpatialSort.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/SceneCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/SceneCombiner.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/ScenePreprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/ScenePreprocessor.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/ScenePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/ScenePrivate.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/SpatialSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/SpatialSort.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/StandardShapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/StandardShapes.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/StbCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/StbCommon.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/Subdivision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Subdivision.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/TargetAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/TargetAnimation.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/TargetAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/TargetAnimation.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/Version.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/assbin_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/assbin_chunks.h -------------------------------------------------------------------------------- /lib/assimp/code/Common/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/material.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/scene.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/simd.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Common/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Common/simd.h -------------------------------------------------------------------------------- /lib/assimp/code/Material/MaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Material/MaterialSystem.h -------------------------------------------------------------------------------- /lib/assimp/code/Pbrt/PbrtExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Pbrt/PbrtExporter.cpp -------------------------------------------------------------------------------- /lib/assimp/code/Pbrt/PbrtExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/Pbrt/PbrtExporter.h -------------------------------------------------------------------------------- /lib/assimp/code/res/assimp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/code/res/assimp.rc -------------------------------------------------------------------------------- /lib/assimp/contrib/Open3DGC/o3dgcCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/Open3DGC/o3dgcCommon.h -------------------------------------------------------------------------------- /lib/assimp/contrib/Open3DGC/o3dgcFIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/Open3DGC/o3dgcFIFO.h -------------------------------------------------------------------------------- /lib/assimp/contrib/Open3DGC/o3dgcTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/Open3DGC/o3dgcTimer.h -------------------------------------------------------------------------------- /lib/assimp/contrib/Open3DGC/o3dgcTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/Open3DGC/o3dgcTools.cpp -------------------------------------------------------------------------------- /lib/assimp/contrib/Open3DGC/o3dgcVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/Open3DGC/o3dgcVector.h -------------------------------------------------------------------------------- /lib/assimp/contrib/android-cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/android-cmake/README.md -------------------------------------------------------------------------------- /lib/assimp/contrib/clipper/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/clipper/License.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/clipper/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/clipper/clipper.cpp -------------------------------------------------------------------------------- /lib/assimp/contrib/clipper/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/clipper/clipper.hpp -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/.clang-format -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/.cmake-format.py -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/AUTHORS -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/BUILDING.md -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/CMAKE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/CMAKE.md -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/LICENSE -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/README.md -------------------------------------------------------------------------------- /lib/assimp/contrib/draco/cmake/util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/draco/cmake/util.cmake -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/CHANGES -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/LICENSE -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/Makefile.am -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/README.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/configure.ac -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/DevGuide.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/FAQ.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/Primer.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/README.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/Samples.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/V1_5_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/V1_5_FAQ.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/V1_6_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/V1_6_FAQ.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/docs/V1_7_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/docs/V1_7_FAQ.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/make/Makefile -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/samples/sample1.h -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/samples/sample2.h -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/samples/sample4.h -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/scripts/README.md -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/scripts/common.py -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/scripts/pump.py -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/scripts/upload.py -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/src/gtest.cc -------------------------------------------------------------------------------- /lib/assimp/contrib/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /lib/assimp/contrib/openddlparser/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/openddlparser/CREDITS -------------------------------------------------------------------------------- /lib/assimp/contrib/openddlparser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/openddlparser/LICENSE -------------------------------------------------------------------------------- /lib/assimp/contrib/openddlparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/openddlparser/README.md -------------------------------------------------------------------------------- /lib/assimp/contrib/poly2tri/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/poly2tri/AUTHORS -------------------------------------------------------------------------------- /lib/assimp/contrib/poly2tri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/poly2tri/LICENSE -------------------------------------------------------------------------------- /lib/assimp/contrib/poly2tri/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/poly2tri/README -------------------------------------------------------------------------------- /lib/assimp/contrib/poly2tri_patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/poly2tri_patch.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/pugixml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/pugixml/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/pugixml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/pugixml/readme.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/pugixml/src/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/pugixml/src/pugixml.cpp -------------------------------------------------------------------------------- /lib/assimp/contrib/pugixml/src/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/pugixml/src/pugixml.hpp -------------------------------------------------------------------------------- /lib/assimp/contrib/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/rapidjson/license.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/rapidjson/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/rapidjson/readme.md -------------------------------------------------------------------------------- /lib/assimp/contrib/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/stb/stb_image.h -------------------------------------------------------------------------------- /lib/assimp/contrib/unzip/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/unzip/crypt.c -------------------------------------------------------------------------------- /lib/assimp/contrib/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/unzip/crypt.h -------------------------------------------------------------------------------- /lib/assimp/contrib/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/unzip/ioapi.c -------------------------------------------------------------------------------- /lib/assimp/contrib/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/unzip/ioapi.h -------------------------------------------------------------------------------- /lib/assimp/contrib/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/unzip/unzip.c -------------------------------------------------------------------------------- /lib/assimp/contrib/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/unzip/unzip.h -------------------------------------------------------------------------------- /lib/assimp/contrib/utf8cpp/source/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/utf8cpp/source/utf8.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/.travis.sh -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/.travis.yml -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/README.md -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/UNLICENSE -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/cmake/asan-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/cmake/asan-wrapper -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/src/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/src/miniz.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/src/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/src/zip.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/src/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/src/zip.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/test/test.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/test/test_miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/test/test_miniz.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zip/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zip/zip.png -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/README -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/adler32.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/compress.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/crc32.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/crc32.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/deflate.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/deflate.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/gzclose.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/gzguts.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/gzlib.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/gzread.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/gzwrite.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/infback.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/inffast.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/inffast.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/inffixed.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/inflate.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/inflate.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/inftrees.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/inftrees.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/trees.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/trees.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/uncompr.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/win32/zlib.def -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/zconf.h.in -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/zconf.h.included: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/zconf.h.included -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/zlib.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/zutil.c -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib/zutil.h -------------------------------------------------------------------------------- /lib/assimp/contrib/zlib_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/contrib/zlib_note.txt -------------------------------------------------------------------------------- /lib/assimp/fuzz/assimp_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/fuzz/assimp_fuzzer.cc -------------------------------------------------------------------------------- /lib/assimp/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/.editorconfig -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Base64.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/BaseImporter.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/BlobIOSystem.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/ByteSwapper.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/CreateAnimMesh.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Exceptional.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/GltfMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/GltfMaterial.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Hash.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/IOStreamBuffer.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/LineSplitter.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/LogAux.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/MathFunctions.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /lib/assimp/include/assimp/ObjMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/ObjMaterial.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/ParsingUtils.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Profiler.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/RemoveComments.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/SGSpatialSort.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/SceneCombiner.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/SmallVector.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/SpatialSort.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/StandardShapes.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/StreamReader.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/StreamWriter.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/StringUtils.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Subdivision.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/TinyFormatter.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/Vertex.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/XMLTools.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/XmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/XmlParser.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/aabb.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/anim.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/camera.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/cexport.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/cfileio.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/cimport.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/color4.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/color4.inl -------------------------------------------------------------------------------- /lib/assimp/include/assimp/commonMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/commonMetaData.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/config.h.in -------------------------------------------------------------------------------- /lib/assimp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/defs.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/fast_atof.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/light.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/material.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/material.inl -------------------------------------------------------------------------------- /lib/assimp/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /lib/assimp/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /lib/assimp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/mesh.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/metadata.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/pbrmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/pbrmaterial.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/postprocess.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/qnan.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/quaternion.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /lib/assimp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/scene.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/texture.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/types.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/vector2.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/vector2.inl -------------------------------------------------------------------------------- /lib/assimp/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/vector3.h -------------------------------------------------------------------------------- /lib/assimp/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/vector3.inl -------------------------------------------------------------------------------- /lib/assimp/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/include/assimp/version.h -------------------------------------------------------------------------------- /lib/assimp/revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/assimp/revision.h.in -------------------------------------------------------------------------------- /lib/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glad/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /lib/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glad/include/glad/glad.h -------------------------------------------------------------------------------- /lib/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glad/src/glad.c -------------------------------------------------------------------------------- /lib/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/cmake/glm/glmConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/cmake/glm/glmConfig-version.cmake -------------------------------------------------------------------------------- /lib/glm/cmake/glm/glmConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/cmake/glm/glmConfig.cmake -------------------------------------------------------------------------------- /lib/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/copying.txt -------------------------------------------------------------------------------- /lib/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /lib/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /lib/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /lib/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/glm.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /lib/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /lib/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/common.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /lib/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /lib/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/util/autoexp.txt -------------------------------------------------------------------------------- /lib/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /lib/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/util/glm.natvis -------------------------------------------------------------------------------- /lib/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/lib/glm/util/usertype.dat -------------------------------------------------------------------------------- /runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/runtime/main.cpp -------------------------------------------------------------------------------- /sandbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/CMakeLists.txt -------------------------------------------------------------------------------- /sandbox/assets/engine/icons/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/engine/icons/rotate.png -------------------------------------------------------------------------------- /sandbox/assets/engine/icons/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/engine/icons/scale.png -------------------------------------------------------------------------------- /sandbox/assets/scripts/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/scripts/main.cpp -------------------------------------------------------------------------------- /sandbox/assets/textures/castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/textures/castle.png -------------------------------------------------------------------------------- /sandbox/assets/textures/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/textures/ground.png -------------------------------------------------------------------------------- /sandbox/assets/textures/inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/textures/inventory.png -------------------------------------------------------------------------------- /sandbox/assets/textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/textures/logo.png -------------------------------------------------------------------------------- /sandbox/assets/textures/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/textures/mountains.png -------------------------------------------------------------------------------- /sandbox/assets/textures/nyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/textures/nyan.png -------------------------------------------------------------------------------- /sandbox/assets/textures/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/assets/textures/tree.png -------------------------------------------------------------------------------- /sandbox/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanbaburajan/ducktape/HEAD/sandbox/imgui.ini --------------------------------------------------------------------------------