├── .cproject ├── .editorconfig ├── .gitattributes ├── .github ├── d1_trainstation_02.png ├── ep1_citadel_02b.png ├── testchmb_a_00.png ├── testroom_standards.png └── workflows │ ├── build.yml │ └── shaderManual.yml ├── .gitignore ├── .patchsets ├── .project ├── CMakeLists.txt ├── CMakePresets.json ├── COMPILING ├── CONTRIBUTORS ├── ChangeLog ├── ChangeLog.idsoftware ├── DoxyConfig ├── Doxyfile ├── GPL ├── LGPL ├── LICENSE ├── Makefile ├── Makefile.conf ├── README.md ├── TODO ├── appimage.sh ├── branch-manager ├── cmake ├── default_build_menu.xml ├── gamepack-multi.xml.in └── gamepack-single.xml.in ├── conftest.cpp ├── contrib ├── bkgrnd2d │ ├── bitmaps │ │ ├── bkgrnd2d_conf.png │ │ ├── bkgrnd2d_xy_toggle.png │ │ ├── bkgrnd2d_xz_toggle.png │ │ └── bkgrnd2d_yz_toggle.png │ ├── bkgrnd2d.cpp │ ├── bkgrnd2d.def │ ├── bkgrnd2d.h │ ├── dialog.cpp │ ├── dialog.h │ ├── plugin.cpp │ ├── plugin.h │ └── readme_bkgrnd2d-b0.25.txt ├── bobtoolz │ ├── CPortals.h │ ├── DBobView.cpp │ ├── DBobView.h │ ├── DBrush.cpp │ ├── DBrush.h │ ├── DEPair.cpp │ ├── DEPair.h │ ├── DEntity.cpp │ ├── DEntity.h │ ├── DMap.cpp │ ├── DMap.h │ ├── DPatch.cpp │ ├── DPatch.h │ ├── DPlane.cpp │ ├── DPlane.h │ ├── DPoint.cpp │ ├── DPoint.h │ ├── DShape.cpp │ ├── DShape.h │ ├── DTrainDrawer.cpp │ ├── DTrainDrawer.h │ ├── DTreePlanter.cpp │ ├── DTreePlanter.h │ ├── DVisDrawer.cpp │ ├── DVisDrawer.h │ ├── DWinding.cpp │ ├── DWinding.h │ ├── ScriptParser.cpp │ ├── ScriptParser.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── bitmaps │ │ └── README-bitmaps.txt │ ├── bobToolz-GTK.cpp │ ├── bobToolz-GTK.h │ ├── bobToolz.def │ ├── bobToolz.h │ ├── bobToolz.rc │ ├── bobtoolz-gtk.rc │ ├── bsploader.cpp │ ├── bsploader.h │ ├── bt │ │ ├── bt-el1.txt │ │ ├── bt-el2.txt │ │ ├── ctf-blue.txt │ │ ├── ctf-red.txt │ │ ├── door-tex-trim.txt │ │ ├── door-tex.txt │ │ └── tp_ent.txt │ ├── cportals.cpp │ ├── ctfToolz-GTK.cpp │ ├── ctfresource_gtk.h │ ├── ctfresource_gtk.rc │ ├── ctftoolz.def │ ├── dialogs │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.h │ │ ├── AutoCaulkDialog.cpp │ │ ├── AutoCaulkDialog.h │ │ ├── AutoCaulkStartDialog.cpp │ │ ├── AutoCaulkStartDialog.h │ │ ├── BrushCheckDialog.h │ │ ├── DoorDialog.cpp │ │ ├── DoorDialog.h │ │ ├── IntersectDialog.cpp │ │ ├── IntersectDialog.h │ │ ├── IntersectInfoDialog.cpp │ │ ├── IntersectInfoDialog.h │ │ ├── PolygonDialog.cpp │ │ ├── PolygonDialog.h │ │ ├── StairDialog.cpp │ │ ├── StairDialog.h │ │ ├── TextureResetDialog.cpp │ │ ├── TextureResetDialog.h │ │ ├── brushcheckdialog.cpp │ │ ├── dialogs-gtk.cpp │ │ ├── dialogs-gtk.h │ │ ├── pathplotterdialog.cpp │ │ └── pathplotterdialog.h │ ├── funchandlers-GTK.cpp │ ├── funchandlers-ctf-GTK.cpp │ ├── funchandlers.cpp │ ├── funchandlers.h │ ├── lists.cpp │ ├── lists.h │ ├── misc.cpp │ ├── misc.h │ ├── res │ │ └── plugin.rc2 │ ├── resource-gtk.h │ ├── resource.h │ ├── shapes.cpp │ ├── shapes.h │ ├── txt │ │ ├── changelog.txt │ │ └── readme.txt │ ├── visfind.cpp │ └── visfind.h ├── brushexport │ ├── brushexport.def │ ├── callbacks.cpp │ ├── callbacks.h │ ├── export.cpp │ ├── export.h │ ├── interface.cpp │ ├── plugin.cpp │ └── plugin.h ├── camera │ ├── bitmaps │ │ └── camera_insp.png │ ├── camera.cpp │ ├── camera.def │ ├── camera.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── dialogs_common.cpp │ ├── funchandlers.cpp │ ├── funchandlers.h │ ├── listener.cpp │ ├── listener.h │ ├── misc.cpp │ ├── misc.h │ ├── renderer.cpp │ └── renderer.h ├── gtkgensurf │ ├── CHANGES │ ├── bitmap.cpp │ ├── dec.cpp │ ├── face.cpp │ ├── font.cpp │ ├── gendlgs.cpp │ ├── gendlgs.h │ ├── genmap.cpp │ ├── gensurf.cpp │ ├── gensurf.def │ ├── gensurf.h │ ├── heretic.cpp │ ├── plugin.cpp │ ├── triangle.c │ ├── triangle.h │ └── view.cpp ├── hydratoolz │ ├── hydratoolz.def │ ├── plugin.cpp │ └── plugin.h ├── meshtex │ ├── .gitattributes │ ├── .gitignore │ ├── AllocatedMatrix.h │ ├── COMPILING │ ├── Doxyfile │ ├── GeneralFunctionDialog.cpp │ ├── GeneralFunctionDialog.h │ ├── GenericDialog.cpp │ ├── GenericDialog.h │ ├── GenericMainMenu.cpp │ ├── GenericMainMenu.h │ ├── GenericPluginUI.cpp │ ├── GenericPluginUI.h │ ├── GenericPluginUIMessages.h │ ├── GetInfoDialog.cpp │ ├── GetInfoDialog.h │ ├── HISTORY │ ├── LICENSE │ ├── MainMenu.cpp │ ├── MainMenu.h │ ├── MeshEntity.cpp │ ├── MeshEntity.h │ ├── MeshEntityMessages.h │ ├── MeshVisitor.cpp │ ├── MeshVisitor.h │ ├── PluginModule.cpp │ ├── PluginModule.h │ ├── PluginProperties.h │ ├── PluginRegistration.cpp │ ├── PluginUI.cpp │ ├── PluginUI.h │ ├── PluginUIMessages.h │ ├── README.md │ ├── RefCounted.cpp │ ├── RefCounted.h │ ├── SetScaleDialog.cpp │ ├── SetScaleDialog.h │ ├── UtilityMacros.h │ ├── docs │ │ └── docs.7z │ ├── localdirs.vsprops │ ├── mainpage.dox │ ├── meshtex.def │ ├── meshtex.rc │ ├── meshtex.sln │ ├── meshtex.vcproj │ ├── modules.dox │ └── resource.h ├── prtview │ ├── AboutDialog.cpp │ ├── AboutDialog.h │ ├── ConfigDialog.cpp │ ├── ConfigDialog.h │ ├── LoadPortalFileDialog.cpp │ ├── LoadPortalFileDialog.h │ ├── PrtView.aps │ ├── PrtView.def │ ├── PrtView.txt │ ├── portals.cpp │ ├── portals.h │ ├── prtview.cpp │ ├── prtview.h │ └── res │ │ └── PrtView.rc2 ├── shaderplug │ ├── shaderplug.cpp │ ├── shaderplug.def │ └── shaderplug.h ├── sunplug │ ├── sunplug.cpp │ ├── sunplug.def │ └── sunplug.h └── ufoaiplug │ ├── bitmaps │ └── README-bitmaps.txt │ ├── ufoai.cpp │ ├── ufoai.def │ ├── ufoai.h │ ├── ufoai_filters.cpp │ ├── ufoai_filters.h │ ├── ufoai_gtk.cpp │ ├── ufoai_gtk.h │ ├── ufoai_level.cpp │ └── ufoai_level.h ├── cross-Makefile.conf ├── docs ├── Additional_map_compiler_features.htm ├── Additional_map_editor_features.htm ├── Blendmodes_cheatsheet.jpg ├── Complete_list_of_command_line_parameters.htm ├── Complete_list_of_entity_keys.htm ├── Complete_list_of_shader_keywords.htm ├── application.css ├── application.js ├── attachment.png ├── balloons.png ├── changelog-custom.txt ├── clipline-small.png ├── controls.js ├── document-horizontal-text.png ├── document-text-image.png ├── document-zipper.png ├── documents-text.png ├── dotproduct-small.jpg ├── dragdrop.js ├── effects.js ├── exposure.jpg ├── external.png ├── floodlight.jpg ├── fsr_readme.txt ├── header_gradient.png ├── help-top.png ├── history.png ├── house.png ├── index.html ├── jstoolbar.css ├── lightning.png ├── mbspc.html ├── mouse shortcuts.txt ├── newspaper.png ├── projects.png ├── prototype.js ├── safe.png ├── scm.css ├── shaderManual │ ├── alpha-channels.html │ ├── alphachannel01.jpg │ ├── antiportal_sm.jpg │ ├── cel-shading.html │ ├── clampmap.jpg │ ├── contents.html │ ├── decal-tricks.html │ ├── decal.jpg │ ├── decal_geisha.jpg │ ├── default.css │ ├── foghull.html │ ├── fur.html │ ├── fur.jpg │ ├── general-directives.html │ ├── index.html │ ├── light-emitting-shaders.html │ ├── lightstyles.html │ ├── lightstyles.jpg │ ├── nav.png │ ├── navlow.png │ ├── navtop.png │ ├── preface.html │ ├── q3map-global-directives.html │ ├── q3map-surface-parameter-directives.html │ ├── q3map2.gif │ ├── qer_alphafunc.jpg │ ├── ql_32.png │ ├── quake-editor-radiant-directives.html │ ├── shader-concepts.html │ ├── sky01.jpg │ ├── sky02.jpg │ ├── sky03.jpg │ ├── sky04.jpg │ ├── sky05.jpg │ ├── stage-directives.html │ ├── tcmodscale.png │ ├── terrain-and-alphamod-blends.html │ ├── texture-creation.html │ ├── title.gif │ ├── titleImage.jpg │ └── triggerable-shader-entities.html ├── stylesheet.css └── ticket.png ├── download-gamepacks.sh ├── generic_cpp.py ├── generic_h.py ├── generic_module.py ├── icons ├── h2data.ico ├── q2map.ico ├── q3map2.ico ├── qdata3.ico ├── radiant-src.png ├── radiant.ico └── radiant_net.ico ├── include ├── aboutmsg.default ├── aboutmsg.h ├── cullable.h ├── editable.h ├── iarchive.h ├── ibrush.h ├── icamera.h ├── idatastream.h ├── ieclass.h ├── ientity.h ├── ifilesystem.h ├── ifiletypes.h ├── ifilter.h ├── igl.h ├── iglrender.h ├── igtkgl.h ├── iimage.h ├── imap.h ├── imodel.h ├── ipatch.h ├── iplugin.h ├── ireference.h ├── irender.h ├── iscenegraph.h ├── iscriplib.h ├── iselection.h ├── ishaders.h ├── itexdef.h ├── itextstream.h ├── itextures.h ├── itoolbar.h ├── iundo.h ├── mapfile.h ├── modelskin.h ├── moduleobserver.h ├── modulesystem.h ├── nameable.h ├── namespace.h ├── preferencesystem.cpp ├── preferencesystem.h ├── qerplugin.h ├── renderable.h ├── selectable.h ├── stream_version.h ├── version.h └── windowobserver.h ├── install-dlls-fedora.sh ├── install-dlls-msys2-mingw.sh ├── install-dlls.sh ├── install-dylibs.sh ├── install-gamepack.sh ├── install-gamepacks.sh ├── libs ├── archivelib.h ├── assimp │ ├── .clang-format │ ├── .editorconfig │ ├── BUILDBINARIES_EXAMPLE.bat │ ├── Build.md │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CREDITS │ ├── CodeConventions.md │ ├── Dockerfile │ ├── LICENSE │ ├── README │ ├── Readme.md │ ├── 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 │ │ │ ├── BaseImporter.cpp │ │ │ ├── BaseProcess.cpp │ │ │ ├── BaseProcess.h │ │ │ ├── Bitmap.cpp │ │ │ ├── CreateAnimMesh.cpp │ │ │ ├── DefaultIOStream.cpp │ │ │ ├── DefaultIOSystem.cpp │ │ │ ├── DefaultLogger.cpp │ │ │ ├── DefaultProgressHandler.h │ │ │ ├── Exceptional.cpp │ │ │ ├── Exporter.cpp │ │ │ ├── FileLogStream.h │ │ │ ├── FileSystemFilter.h │ │ │ ├── IFF.h │ │ │ ├── Importer.cpp │ │ │ ├── Importer.h │ │ │ ├── ImporterRegistry.cpp │ │ │ ├── PolyTools.h │ │ │ ├── PostStepRegistry.cpp │ │ │ ├── RemoveComments.cpp │ │ │ ├── SGSpatialSort.cpp │ │ │ ├── SceneCombiner.cpp │ │ │ ├── ScenePreprocessor.cpp │ │ │ ├── ScenePreprocessor.h │ │ │ ├── ScenePrivate.h │ │ │ ├── SkeletonMeshBuilder.cpp │ │ │ ├── SpatialSort.cpp │ │ │ ├── StandardShapes.cpp │ │ │ ├── StdOStreamLogStream.h │ │ │ ├── Subdivision.cpp │ │ │ ├── TargetAnimation.cpp │ │ │ ├── TargetAnimation.h │ │ │ ├── Version.cpp │ │ │ ├── VertexTriangleAdjacency.cpp │ │ │ ├── VertexTriangleAdjacency.h │ │ │ ├── Win32DebugLogStream.h │ │ │ ├── ZipArchiveIOSystem.cpp │ │ │ ├── assbin_chunks.h │ │ │ ├── material.cpp │ │ │ ├── revision.h │ │ │ ├── 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 │ │ │ └── resource.h │ ├── 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 │ │ │ │ └── internal_utils.cmake │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── AdvancedGuide.md │ │ │ │ ├── DevGuide.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── Primer.md │ │ │ │ ├── PumpManual.md │ │ │ │ ├── Samples.md │ │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ │ ├── V1_5_Documentation.md │ │ │ │ ├── V1_5_FAQ.md │ │ │ │ ├── V1_5_Primer.md │ │ │ │ ├── V1_5_PumpManual.md │ │ │ │ ├── V1_5_XcodeGuide.md │ │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ │ ├── V1_6_Documentation.md │ │ │ │ ├── V1_6_FAQ.md │ │ │ │ ├── V1_6_Primer.md │ │ │ │ ├── V1_6_PumpManual.md │ │ │ │ ├── V1_6_Samples.md │ │ │ │ ├── V1_6_XcodeGuide.md │ │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ │ ├── V1_7_Documentation.md │ │ │ │ ├── V1_7_FAQ.md │ │ │ │ ├── V1_7_Primer.md │ │ │ │ ├── V1_7_PumpManual.md │ │ │ │ ├── V1_7_Samples.md │ │ │ │ ├── V1_7_XcodeGuide.md │ │ │ │ └── XcodeGuide.md │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── gtest.m4 │ │ │ ├── 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 │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ ├── release_docs.py │ │ │ │ ├── test │ │ │ │ │ └── Makefile │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ ├── test │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ ├── gtest-message_test.cc │ │ │ │ ├── gtest-options_test.cc │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-port_test.cc │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ ├── gtest_color_test.py │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_output_test.py │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── 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 │ │ │ ├── contrib │ │ │ │ └── foreach.hpp │ │ │ ├── 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 │ ├── doc │ │ ├── AssimpCmdDoc_Html │ │ │ ├── AssimpCmdDoc.chm │ │ │ └── dragonsplash.png │ │ ├── AssimpDoc_Html │ │ │ ├── AnimationOverview.png │ │ │ ├── AnimationOverview.svg │ │ │ ├── AssimpDoc.chm │ │ │ └── dragonsplash.png │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── Doxyfile_Cmd │ │ ├── Fileformats.md │ │ ├── Preamble.txt │ │ ├── architecture │ │ │ ├── Assimp_Arch_Import.class.violet.html │ │ │ ├── Assimp_Arch_export.class.violet.html │ │ │ ├── assimp-process.png │ │ │ ├── assimp.object.violet.html │ │ │ ├── assimp_usecase.ucase.violet.html │ │ │ ├── exporter.png │ │ │ ├── process.class.violet.html │ │ │ └── usecases.png │ │ ├── datastructure.xml │ │ ├── dox.h │ │ └── dox_cmd.h │ ├── fuzz │ │ └── assimp_fuzzer.cc │ ├── include │ │ └── assimp │ │ │ ├── .editorconfig │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── packaging │ │ ├── windows-innosetup │ │ │ ├── LICENSE.rtf │ │ │ ├── WEB │ │ │ ├── howto-build-setup.txt │ │ │ ├── readme_installer.txt │ │ │ ├── readme_installer_vieweronly.txt │ │ │ ├── script_vieweronly.iss │ │ │ ├── script_x64.iss │ │ │ └── script_x86.iss │ │ └── windows-mkzip │ │ │ ├── bin_readme.txt │ │ │ ├── mkfinal.bat │ │ │ └── mkrev.bat │ ├── port │ │ ├── AndroidJNI │ │ │ ├── AndroidJNIIOSystem.cpp │ │ │ ├── BundledAssetIOSystem.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── README.md │ │ ├── AssimpDelphi │ │ │ ├── Readme.txt │ │ │ ├── aiColor4D.pas │ │ │ ├── aiMaterial.pas │ │ │ ├── aiMatrix3x3.pas │ │ │ ├── aiMatrix4x4.pas │ │ │ ├── aiMesh.pas │ │ │ ├── aiQuaternion.pas │ │ │ ├── aiScene.pas │ │ │ ├── aiTexture.pas │ │ │ ├── aiTypes.pas │ │ │ ├── aiVector2D.pas │ │ │ ├── aiVector3D.pas │ │ │ └── assimp.pas │ │ ├── AssimpNET │ │ │ └── Readme.md │ │ ├── AssimpPascal │ │ │ └── Readme.md │ │ ├── PyAssimp │ │ │ ├── 3d_viewer_screenshot.png │ │ │ ├── README.md │ │ │ ├── README.rst │ │ │ ├── gen │ │ │ │ ├── materialgen.py │ │ │ │ └── structsgen.py │ │ │ ├── pyassimp │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── errors.py │ │ │ │ ├── formats.py │ │ │ │ ├── helper.py │ │ │ │ ├── material.py │ │ │ │ ├── postprocess.py │ │ │ │ └── structs.py │ │ │ ├── scripts │ │ │ │ ├── 3d_viewer.py │ │ │ │ ├── 3d_viewer_py3.py │ │ │ │ ├── README.md │ │ │ │ ├── fixed_pipeline_3d_viewer.py │ │ │ │ ├── quicktest.py │ │ │ │ ├── sample.py │ │ │ │ └── transformations.py │ │ │ └── setup.py │ │ ├── assimp_rs │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── camera │ │ │ │ └── mod.rs │ │ │ │ ├── core │ │ │ │ └── mod.rs │ │ │ │ ├── errors │ │ │ │ └── mod.rs │ │ │ │ ├── formats │ │ │ │ └── mod.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── material │ │ │ │ └── mod.rs │ │ │ │ ├── postprocess │ │ │ │ └── mod.rs │ │ │ │ ├── shims │ │ │ │ └── mod.rs │ │ │ │ ├── socket │ │ │ │ └── mod.rs │ │ │ │ └── structs │ │ │ │ ├── anim │ │ │ │ ├── anim.rs │ │ │ │ └── mod.rs │ │ │ │ ├── blob │ │ │ │ ├── blob.rs │ │ │ │ └── mod.rs │ │ │ │ ├── bone │ │ │ │ ├── bone.rs │ │ │ │ └── mod.rs │ │ │ │ ├── camera │ │ │ │ ├── camera.rs │ │ │ │ └── mod.rs │ │ │ │ ├── color │ │ │ │ ├── color.rs │ │ │ │ └── mod.rs │ │ │ │ ├── face │ │ │ │ ├── face.rs │ │ │ │ └── mod.rs │ │ │ │ ├── key │ │ │ │ ├── key.rs │ │ │ │ └── mod.rs │ │ │ │ ├── light │ │ │ │ ├── light.rs │ │ │ │ └── mod.rs │ │ │ │ ├── material │ │ │ │ ├── material.rs │ │ │ │ └── mod.rs │ │ │ │ ├── matrix │ │ │ │ ├── matrix.rs │ │ │ │ └── mod.rs │ │ │ │ ├── memory │ │ │ │ ├── memory.rs │ │ │ │ └── mod.rs │ │ │ │ ├── mesh │ │ │ │ ├── mesh.rs │ │ │ │ └── mod.rs │ │ │ │ ├── meta │ │ │ │ ├── meta.rs │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── node │ │ │ │ ├── mod.rs │ │ │ │ └── node.rs │ │ │ │ ├── plane │ │ │ │ ├── mod.rs │ │ │ │ └── plane.rs │ │ │ │ ├── quaternion │ │ │ │ ├── mod.rs │ │ │ │ └── quaternion.rs │ │ │ │ ├── ray │ │ │ │ ├── mod.rs │ │ │ │ └── ray.rs │ │ │ │ ├── scene │ │ │ │ ├── mod.rs │ │ │ │ └── scene.rs │ │ │ │ ├── string │ │ │ │ ├── mod.rs │ │ │ │ └── string.rs │ │ │ │ ├── texture │ │ │ │ ├── mod.rs │ │ │ │ └── texture.rs │ │ │ │ ├── transform │ │ │ │ ├── mod.rs │ │ │ │ └── transform.rs │ │ │ │ ├── vec │ │ │ │ ├── mod.rs │ │ │ │ └── vec.rs │ │ │ │ └── vertex │ │ │ │ ├── mod.rs │ │ │ │ └── vertex.rs │ │ ├── dAssimp │ │ │ └── README │ │ ├── iOS │ │ │ ├── IPHONEOS_ARM64E_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_ARM64_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_ARMV6_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_ARMV7S_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_ARMV7_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_I386_TOOLCHAIN.cmake │ │ │ ├── IPHONEOS_X86_64_TOOLCHAIN.cmake │ │ │ ├── README.md │ │ │ └── build.sh │ │ ├── jassimp │ │ │ ├── README │ │ │ ├── build.xml │ │ │ ├── jassimp-native │ │ │ │ ├── Android.mk │ │ │ │ └── src │ │ │ │ │ ├── jassimp.cpp │ │ │ │ │ └── jassimp.h │ │ │ └── jassimp │ │ │ │ └── src │ │ │ │ └── jassimp │ │ │ │ ├── AiAnimBehavior.java │ │ │ │ ├── AiAnimation.java │ │ │ │ ├── AiBlendMode.java │ │ │ │ ├── AiBone.java │ │ │ │ ├── AiBoneWeight.java │ │ │ │ ├── AiBuiltInWrapperProvider.java │ │ │ │ ├── AiCamera.java │ │ │ │ ├── AiClassLoaderIOSystem.java │ │ │ │ ├── AiColor.java │ │ │ │ ├── AiConfig.java │ │ │ │ ├── AiConfigOptions.java │ │ │ │ ├── AiIOStream.java │ │ │ │ ├── AiIOSystem.java │ │ │ │ ├── AiInputStreamIOStream.java │ │ │ │ ├── AiLight.java │ │ │ │ ├── AiLightType.java │ │ │ │ ├── AiMaterial.java │ │ │ │ ├── AiMatrix4f.java │ │ │ │ ├── AiMesh.java │ │ │ │ ├── AiMeshAnim.java │ │ │ │ ├── AiMetadataEntry.java │ │ │ │ ├── AiNode.java │ │ │ │ ├── AiNodeAnim.java │ │ │ │ ├── AiPostProcessSteps.java │ │ │ │ ├── AiPrimitiveType.java │ │ │ │ ├── AiProgressHandler.java │ │ │ │ ├── AiQuaternion.java │ │ │ │ ├── AiScene.java │ │ │ │ ├── AiSceneFlag.java │ │ │ │ ├── AiShadingMode.java │ │ │ │ ├── AiTextureInfo.java │ │ │ │ ├── AiTextureMapMode.java │ │ │ │ ├── AiTextureMapping.java │ │ │ │ ├── AiTextureOp.java │ │ │ │ ├── AiTextureType.java │ │ │ │ ├── AiVector.java │ │ │ │ ├── AiWrapperProvider.java │ │ │ │ ├── JaiDebug.java │ │ │ │ ├── Jassimp.java │ │ │ │ ├── JassimpConfig.java │ │ │ │ ├── JassimpLibraryLoader.java │ │ │ │ └── package-info.java │ │ └── swig │ │ │ ├── DONOTUSEYET │ │ │ ├── assimp.i │ │ │ ├── d │ │ │ ├── build.sh │ │ │ └── generate.sh │ │ │ └── interface │ │ │ ├── DefaultLogger.i │ │ │ ├── IOStream.i │ │ │ ├── IOSystem.i │ │ │ ├── LogStream.i │ │ │ ├── Logger.i │ │ │ ├── NullLogger.i │ │ │ ├── aiAnim.i │ │ │ ├── aiAssert.i │ │ │ ├── aiCamera.i │ │ │ ├── aiColor4D.i │ │ │ ├── aiConfig.i │ │ │ ├── aiDefines.i │ │ │ ├── aiFileIO.i │ │ │ ├── aiLight.i │ │ │ ├── aiMaterial.i │ │ │ ├── aiMatrix3x3.i │ │ │ ├── aiMatrix4x4.i │ │ │ ├── aiMesh.i │ │ │ ├── aiPostProcess.i │ │ │ ├── aiQuaternion.i │ │ │ ├── aiScene.i │ │ │ ├── aiTexture.i │ │ │ ├── aiTypes.i │ │ │ ├── aiVector2D.i │ │ │ ├── aiVector3D.i │ │ │ ├── aiVersion.i │ │ │ └── assimp.i │ ├── revision.h.in │ ├── samples │ │ ├── README │ │ ├── SharedCode │ │ │ ├── UTFConverter.cpp │ │ │ └── UTFConverter.h │ │ ├── SimpleAssimpViewX │ │ │ ├── English.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainMenu.xib │ │ │ │ └── MyDocument.xib │ │ │ ├── ModelLoaderHelperClasses.h │ │ │ ├── ModelLoaderHelperClasses.mm │ │ │ ├── MyDocument.h │ │ │ ├── MyDocument.mm │ │ │ ├── MyDocument.xcdatamodel │ │ │ │ ├── elements │ │ │ │ └── layout │ │ │ ├── README │ │ │ ├── SimpleAssimpViewX-Info.plist │ │ │ ├── SimpleAssimpViewX.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── vade.mode1v3 │ │ │ │ └── vade.pbxuser │ │ │ ├── SimpleAssimpViewX_Prefix.pch │ │ │ ├── include │ │ │ │ └── copy_assimp_headers_here.txt │ │ │ └── main.m │ │ ├── SimpleOpenGL │ │ │ ├── CMakeLists.txt │ │ │ ├── Sample_SimpleOpenGL.c │ │ │ ├── SimpleOpenGL.sln │ │ │ └── SimpleOpenGL.vcproj │ │ ├── SimpleTexturedDirectx11 │ │ │ ├── CMakeLists.txt │ │ │ └── SimpleTexturedDirectx11 │ │ │ │ ├── Mesh.h │ │ │ │ ├── ModelLoader.cpp │ │ │ │ ├── ModelLoader.h │ │ │ │ ├── PixelShader.hlsl │ │ │ │ ├── SafeRelease.hpp │ │ │ │ ├── TextureLoader.cpp │ │ │ │ ├── TextureLoader.h │ │ │ │ ├── VertexShader.hlsl │ │ │ │ └── main.cpp │ │ └── SimpleTexturedOpenGL │ │ │ ├── CMakeLists.txt │ │ │ ├── SimpleTexturedOpenGL.sln │ │ │ └── SimpleTexturedOpenGL │ │ │ ├── SimpleTexturedOpenGL.vcproj │ │ │ └── src │ │ │ └── model_loading.cpp │ ├── scripts │ │ ├── BlenderImporter │ │ │ ├── BlenderScene.cpp.template │ │ │ ├── BlenderSceneGen.h.template │ │ │ └── genblenddna.py │ │ ├── OgreImporter │ │ │ └── assimp.tpl │ │ ├── StepImporter │ │ │ ├── CppGenerator.py │ │ │ ├── ExpressReader.py │ │ │ ├── IFCReaderGen.cpp.template │ │ │ ├── IFCReaderGen.h.template │ │ │ ├── StepReaderGen.cpp.template │ │ │ ├── StepReaderGen.h.template │ │ │ ├── extract_step_token.py │ │ │ ├── genentitylist.sh │ │ │ ├── ifc_entitylist.txt │ │ │ ├── part403ts_wg3n2635mim_lf.exp │ │ │ ├── schema_ap203e2_mim_lf.exp │ │ │ ├── schema_ifc2x3.exp │ │ │ └── step_entitylist.txt │ │ ├── adjust_header_paths.sh │ │ └── android_crosscompile │ │ │ └── make_android.bat │ └── tools │ │ ├── assimp_cmd │ │ ├── CMakeLists.txt │ │ ├── CompareDump.cpp │ │ ├── Export.cpp │ │ ├── ImageExtractor.cpp │ │ ├── Info.cpp │ │ ├── Main.cpp │ │ ├── Main.h │ │ ├── WriteDump.cpp │ │ ├── assimp_cmd.rc │ │ ├── generic_inserter.hpp │ │ └── resource.h │ │ ├── assimp_view │ │ ├── AnimEvaluator.cpp │ │ ├── AnimEvaluator.h │ │ ├── AssetHelper.h │ │ ├── Background.cpp │ │ ├── Background.h │ │ ├── CMakeLists.txt │ │ ├── Camera.h │ │ ├── Display.cpp │ │ ├── Display.h │ │ ├── HUD.png │ │ ├── HUDMask.png │ │ ├── HelpDialog.cpp │ │ ├── Input.cpp │ │ ├── LogDisplay.cpp │ │ ├── LogDisplay.h │ │ ├── LogWindow.cpp │ │ ├── LogWindow.h │ │ ├── Material.cpp │ │ ├── MaterialManager.h │ │ ├── MeshRenderer.cpp │ │ ├── MeshRenderer.h │ │ ├── MessageProc.cpp │ │ ├── NOTE@help.rtf.txt │ │ ├── Normals.cpp │ │ ├── RenderOptions.h │ │ ├── SceneAnimator.cpp │ │ ├── SceneAnimator.h │ │ ├── Shaders.cpp │ │ ├── Shaders.h │ │ ├── assimp_view.cpp │ │ ├── assimp_view.h │ │ ├── assimp_view.rc │ │ ├── banner.bmp │ │ ├── banner_pure.bmp │ │ ├── base.PNG │ │ ├── base_anim.bmp │ │ ├── base_display.bmp │ │ ├── base_inter.bmp │ │ ├── base_rendering.bmp │ │ ├── base_stats.bmp │ │ ├── fx.bmp │ │ ├── help.rtf │ │ ├── n.bmp │ │ ├── resource.h │ │ ├── root.bmp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── test.xcf │ │ ├── text1.bin │ │ ├── tx.bmp │ │ └── txi.bmp │ │ ├── coverity │ │ └── assimp_modeling.cpp │ │ ├── make │ │ ├── build_env_win32.bat │ │ └── make_all_win32_x64.bat │ │ └── shared │ │ ├── assimp_tools_icon.ico │ │ ├── assimp_tools_icon.png │ │ ├── assimp_tools_icon.svg │ │ └── default_icon.xcf ├── bytebool.h ├── bytestreamutils.h ├── character.h ├── commandlib.cpp ├── commandlib.h ├── container │ ├── array.cpp │ ├── array.h │ ├── cache.h │ ├── container.h │ ├── hashfunc.h │ ├── hashtable.cpp │ ├── hashtable.h │ └── stack.h ├── convert.h ├── crnlib │ ├── crnlib.cpp │ ├── crnlib.h │ └── crunch │ │ └── inc │ │ ├── crn_decomp.h │ │ ├── crn_defs.h │ │ ├── crnlib.h │ │ └── dds_defs.h ├── ddslib.h ├── ddslib │ └── ddslib.c ├── debugging │ ├── debugging.cpp │ └── debugging.h ├── dragplanes.h ├── eclasslib.h ├── entitylib.h ├── entityxml.h ├── etclib.c ├── etclib.h ├── filematch.c ├── filematch.h ├── fs_filesystem.h ├── fs_path.h ├── generic │ ├── arrayrange.h │ ├── bitfield.h │ ├── callback.cpp │ ├── callback.h │ ├── constant.cpp │ ├── constant.h │ ├── enumeration.h │ ├── functional.h │ ├── object.cpp │ ├── object.h │ ├── reference.h │ ├── referencecounted.h │ ├── static.cpp │ ├── static.h │ └── vector.h ├── gtkutil │ ├── accelerator.cpp │ ├── accelerator.h │ ├── accelerator_translate.h │ ├── clipboard.cpp │ ├── clipboard.h │ ├── combobox.h │ ├── cursor.h │ ├── dialog.cpp │ ├── dialog.h │ ├── entry.cpp │ ├── entry.h │ ├── fbo.h │ ├── filechooser.cpp │ ├── filechooser.h │ ├── glfont.cpp │ ├── glfont.h │ ├── glwidget.cpp │ ├── glwidget.h │ ├── guisettings.cpp │ ├── guisettings.h │ ├── idledraw.cpp │ ├── idledraw.h │ ├── image.cpp │ ├── image.h │ ├── lineedit.h │ ├── menu.cpp │ ├── menu.h │ ├── messagebox.cpp │ ├── messagebox.h │ ├── mousepresses.h │ ├── nonmodal.cpp │ ├── nonmodal.h │ ├── spinbox.h │ ├── toolbar.cpp │ ├── toolbar.h │ ├── widget.cpp │ ├── widget.h │ ├── xorrectangle.cpp │ └── xorrectangle.h ├── imagelib.h ├── instancelib.h ├── l_net │ ├── l_net.c │ ├── l_net.h │ ├── l_net_wins.c │ └── l_net_wins.h ├── layers.h ├── maplib.h ├── math │ ├── aabb.h │ ├── curve.h │ ├── expression.cpp │ ├── expression.h │ ├── frustum.h │ ├── line.h │ ├── matrix.h │ ├── pi.h │ ├── plane.h │ ├── quaternion.h │ ├── vector.h │ └── vectorfwd.h ├── mathlib.h ├── mathlib │ ├── bbox.c │ ├── line.c │ ├── m4x4.c │ ├── mathlib.c │ └── ray.c ├── md5lib.h ├── md5lib │ └── md5lib.c ├── memory │ ├── allocator.cpp │ └── allocator.h ├── moduleobservers.h ├── modulesystem │ ├── moduleregistry.h │ ├── modulesmap.h │ ├── singletonmodule.cpp │ └── singletonmodule.h ├── os │ ├── dir.h │ ├── file.h │ └── path.h ├── picomodel.h ├── picomodel │ ├── lwo │ │ ├── clip.c │ │ ├── envelope.c │ │ ├── list.c │ │ ├── lwio.c │ │ ├── lwo2.c │ │ ├── lwo2.h │ │ ├── lwob.c │ │ ├── pntspols.c │ │ ├── surface.c │ │ ├── vecmath.c │ │ └── vmap.c │ ├── picointernal.c │ ├── picointernal.h │ ├── picomodel.c │ ├── picomodules.c │ ├── pm_3ds.c │ ├── pm_ase.c │ ├── pm_fm.c │ ├── pm_fm.h │ ├── pm_lwo.c │ ├── pm_md2.c │ ├── pm_md3.c │ ├── pm_mdc.c │ ├── pm_ms3d.c │ ├── pm_obj.c │ └── pm_terrain.c ├── pivot.h ├── profile │ ├── file.cpp │ ├── file.h │ ├── profile.cpp │ ├── profile.h │ └── profile2.h ├── quickhull │ ├── .gitignore │ ├── ConvexHull.hpp │ ├── HalfEdgeMesh.hpp │ ├── MathUtils.hpp │ ├── QuickHull.cpp │ ├── QuickHull.hpp │ ├── README.md │ ├── Structs │ │ ├── Mesh.hpp │ │ ├── Plane.hpp │ │ ├── Pool.hpp │ │ ├── Ray.hpp │ │ ├── Vector3.hpp │ │ └── VertexDataSource.hpp │ └── Tests │ │ ├── CMakeLists.txt │ │ ├── QuickHullTests.cpp │ │ ├── QuickHullTests.hpp │ │ └── main.cpp ├── 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 │ ├── uri.h │ └── writer.h ├── rect_t.h ├── render.h ├── scenelib.h ├── script │ ├── scripttokeniser.h │ └── scripttokenwriter.h ├── selectionlib.h ├── shaderlib.h ├── signal │ ├── isignal.h │ ├── signal.cpp │ ├── signal.h │ └── signalfwd.h ├── splines │ ├── math_angles.cpp │ ├── math_angles.h │ ├── math_matrix.cpp │ ├── math_matrix.h │ ├── math_quaternion.cpp │ ├── math_quaternion.h │ ├── math_vector.cpp │ ├── math_vector.h │ ├── q_parse.cpp │ ├── q_shared.cpp │ ├── q_shared.h │ ├── splines.cpp │ ├── splines.h │ ├── util_list.h │ ├── util_str.cpp │ └── util_str.h ├── str.h ├── stream │ ├── filestream.h │ ├── memstream.h │ ├── stringstream.h │ ├── textfilestream.h │ └── textstream.h ├── string │ ├── pooledstring.cpp │ ├── pooledstring.h │ ├── string.cpp │ ├── string.h │ └── stringfwd.h ├── stringio.h ├── texturelib.h ├── timer.h ├── transformlib.h ├── traverselib.h ├── typesystem.h ├── undolib.h ├── uniquenames.h ├── versionlib.h ├── webplib │ ├── tiny_webp.h │ ├── webplib.cpp │ └── webplib.h └── xml │ ├── ixml.cpp │ ├── ixml.h │ ├── xmlelement.cpp │ ├── xmlelement.h │ ├── xmlparser.cpp │ ├── xmlparser.h │ ├── xmltextags.cpp │ ├── xmltextags.h │ ├── xmlwriter.cpp │ └── xmlwriter.h ├── merge-from-zerowing.sh ├── mingw-Makefile.conf ├── mingw-Makefile.inc ├── mingw-fedora-Makefile.conf ├── mingw-radiantdeps-Makefile.inc ├── msys2-Makefile.conf ├── plugins ├── archivepak │ ├── archive.cpp │ ├── archive.h │ ├── archivepak.def │ ├── pak.cpp │ ├── pak.h │ ├── plugin.cpp │ └── plugin.h ├── archivevpk │ ├── archive.cpp │ ├── archive.h │ ├── archivevpk.def │ ├── plugin.cpp │ └── plugin.h ├── archivewad │ ├── archive.cpp │ ├── archive.h │ ├── archivewad.def │ ├── plugin.cpp │ ├── plugin.h │ ├── wad.cpp │ └── wad.h ├── archivezip │ ├── archive.cpp │ ├── archive.h │ ├── archivezip.def │ ├── pkzip.cpp │ ├── pkzip.h │ ├── plugin.cpp │ ├── plugin.h │ ├── zlibstream.cpp │ └── zlibstream.h ├── assmodel │ ├── mdlimage.cpp │ ├── mdlimage.h │ ├── model.cpp │ ├── model.h │ ├── plugin.cpp │ └── plugin.h ├── config.mk ├── entity │ ├── angle.cpp │ ├── angle.h │ ├── angles.cpp │ ├── angles.h │ ├── colour.cpp │ ├── colour.h │ ├── curve.cpp │ ├── curve.h │ ├── doom3group.cpp │ ├── doom3group.h │ ├── eclassmodel.cpp │ ├── eclassmodel.h │ ├── entity.cpp │ ├── entity.h │ ├── entityq3.def │ ├── filters.cpp │ ├── filters.h │ ├── generic.cpp │ ├── generic.h │ ├── group.cpp │ ├── group.h │ ├── keyobservers.cpp │ ├── keyobservers.h │ ├── light.cpp │ ├── light.h │ ├── miscmodel.cpp │ ├── miscmodel.h │ ├── model.cpp │ ├── model.h │ ├── modelskinkey.cpp │ ├── modelskinkey.h │ ├── namedentity.cpp │ ├── namedentity.h │ ├── namekeys.cpp │ ├── namekeys.h │ ├── origin.cpp │ ├── origin.h │ ├── plugin.cpp │ ├── plugin.h │ ├── rotation.cpp │ ├── rotation.h │ ├── scale.cpp │ ├── scale.h │ ├── skincache.cpp │ ├── skincache.h │ ├── targetable.cpp │ └── targetable.h ├── image │ ├── bmp.cpp │ ├── bmp.h │ ├── crn.cpp │ ├── crn.h │ ├── dds.cpp │ ├── dds.h │ ├── image.cpp │ ├── image.h │ ├── imageq3.def │ ├── jpeg.cpp │ ├── jpeg.h │ ├── ktx.cpp │ ├── ktx.h │ ├── pcx.cpp │ ├── pcx.h │ ├── tga.cpp │ ├── tga.h │ ├── webp.cpp │ └── webp.h ├── imagehl │ ├── hlw.cpp │ ├── hlw.h │ ├── imagehl.cpp │ ├── imagehl.def │ ├── imagehl.h │ ├── imagehl.txt │ ├── mip.cpp │ ├── mip.h │ ├── sprite.cpp │ └── sprite.h ├── imagepng │ ├── imagepng.def │ ├── plugin.cpp │ └── plugin.h ├── imageq2 │ ├── imageq2.cpp │ ├── imageq2.def │ ├── imageq2.h │ ├── wal.cpp │ ├── wal.h │ ├── wal32.cpp │ └── wal32.h ├── imagevtf │ ├── imagevtf.cpp │ ├── imagevtf.def │ ├── imagevtf.h │ ├── vtf.cpp │ └── vtf.h ├── mapq3 │ ├── mapq3.def │ ├── parse.cpp │ ├── parse.h │ ├── plugin.cpp │ ├── plugin.h │ ├── write.cpp │ └── write.h ├── mapvmf │ ├── mapvmf.def │ ├── plugin.cpp │ └── plugin.h ├── mapxml │ ├── mapxml.def │ ├── plugin.cpp │ ├── plugin.h │ ├── xmlparse.cpp │ ├── xmlparse.h │ ├── xmlwrite.cpp │ └── xmlwrite.h ├── md3model │ ├── doc │ │ └── md3-design.txt │ ├── ident.h │ ├── md2.cpp │ ├── md2.h │ ├── md3.cpp │ ├── md3.h │ ├── md3normals.cpp │ ├── md3normals.h │ ├── md5.cpp │ ├── md5.h │ ├── mdc.cpp │ ├── mdc.h │ ├── mdl.cpp │ ├── mdl.h │ ├── mdlformat.cpp │ ├── mdlformat.h │ ├── mdlimage.cpp │ ├── mdlimage.h │ ├── mdlnormals.cpp │ ├── mdlnormals.h │ ├── model.cpp │ ├── model.h │ ├── modelmd3.def │ ├── plugin.cpp │ └── plugin.h ├── model │ ├── bitmaps │ │ ├── model_reload_entity.bmp │ │ └── picomodel.bmp │ ├── model.cpp │ ├── model.h │ ├── modelpico.def │ ├── plugin.cpp │ └── plugin.h ├── sample │ ├── sample.cpp │ ├── sample.def │ └── sample.h ├── shaders │ ├── plugin.cpp │ ├── plugin.h │ ├── shaders.cpp │ ├── shaders.h │ ├── shadershl.def │ └── shadersq3.def ├── sourcemodel │ ├── mdl.cpp │ ├── mdl.h │ ├── model.cpp │ ├── model.h │ ├── plugin.cpp │ ├── plugin.h │ └── sourcemodel.def ├── spritemodel │ ├── plugin.cpp │ ├── plugin.h │ ├── spritemodel.cpp │ ├── spritemodel.def │ └── spritemodel.h ├── textool │ ├── .cvswrappers │ ├── 2DView.cpp │ ├── 2DView.h │ ├── ControlPointsManager.cpp │ ├── ControlPointsManager.h │ ├── Doc │ │ ├── .cvswrappers │ │ ├── Image2.jpg │ │ └── TexTool.html │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TexTool.cpp │ ├── TexTool.def │ ├── TexTool.rc │ ├── changelog.txt │ └── resource.h └── vfspk3 │ ├── archive.cpp │ ├── archive.h │ ├── vfs.cpp │ ├── vfs.h │ ├── vfspk3.cpp │ ├── vfspk3.h │ └── vfsq3.def ├── radiant ├── autosave.cpp ├── autosave.h ├── brush.cpp ├── brush.h ├── brush_primit.cpp ├── brush_primit.h ├── brushmanip.cpp ├── brushmanip.h ├── brushmodule.cpp ├── brushmodule.h ├── brushnode.cpp ├── brushnode.h ├── brushtokens.cpp ├── brushtokens.h ├── brushxml.cpp ├── brushxml.h ├── build.cpp ├── build.h ├── camwindow.cpp ├── camwindow.h ├── clippertool.cpp ├── clippertool.h ├── colors.cpp ├── colors.h ├── commands.cpp ├── commands.h ├── console.cpp ├── console.h ├── csg.cpp ├── csg.h ├── dialog.cpp ├── dialog.h ├── eclass.cpp ├── eclass.h ├── eclass_def.cpp ├── eclass_def.h ├── eclass_doom3.cpp ├── eclass_doom3.h ├── eclass_fgd.cpp ├── eclass_fgd.h ├── eclass_xml.cpp ├── eclass_xml.h ├── entity.cpp ├── entity.h ├── entityinspector.cpp ├── entityinspector.h ├── entitylist.cpp ├── entitylist.h ├── environment.cpp ├── environment.h ├── error.cpp ├── error.h ├── feedback.cpp ├── feedback.h ├── filetypes.cpp ├── filetypes.h ├── filterbar.cpp ├── filterbar.h ├── filters.cpp ├── filters.h ├── findtexturedialog.cpp ├── findtexturedialog.h ├── glwidget.cpp ├── glwidget.h ├── grid.cpp ├── grid.h ├── groupdialog.cpp ├── groupdialog.h ├── gtkdlgs.cpp ├── gtkdlgs.h ├── gtkmisc.cpp ├── gtkmisc.h ├── help.cpp ├── help.h ├── image.cpp ├── image.h ├── layerswindow.cpp ├── layerswindow.h ├── main.cpp ├── main.h ├── mainframe.cpp ├── mainframe.h ├── map.cpp ├── map.h ├── modelwindow.cpp ├── modelwindow.h ├── mru.cpp ├── mru.h ├── nullmodel.cpp ├── nullmodel.h ├── parse.cpp ├── parse.h ├── patch.cpp ├── patch.h ├── patchdialog.cpp ├── patchdialog.h ├── patchmanip.cpp ├── patchmanip.h ├── patchmodule.cpp ├── patchmodule.h ├── plugin.cpp ├── plugin.h ├── pluginapi.cpp ├── pluginapi.h ├── pluginmanager.cpp ├── pluginmanager.h ├── pluginmenu.cpp ├── pluginmenu.h ├── plugintoolbar.cpp ├── plugintoolbar.h ├── points.cpp ├── points.h ├── preferencedictionary.cpp ├── preferencedictionary.h ├── preferences.cpp ├── preferences.h ├── qe3.cpp ├── qe3.h ├── qgl.cpp ├── qgl.h ├── radiant.ico ├── radiant.rc ├── radiant_old.ico ├── referencecache.cpp ├── referencecache.h ├── renderer.cpp ├── renderer.h ├── renderstate.cpp ├── renderstate.h ├── resource.h ├── scenegraph.cpp ├── scenegraph.h ├── select.cpp ├── select.h ├── selection.cpp ├── selection.h ├── server.cpp ├── server.h ├── sockets.cpp ├── sockets.h ├── stacktrace.cpp ├── stacktrace.h ├── surfacedialog.cpp ├── surfacedialog.h ├── texmanip.cpp ├── texmanip.h ├── textureentry.cpp ├── textureentry.h ├── textures.cpp ├── textures.h ├── texwindow.cpp ├── texwindow.h ├── theme.cpp ├── theme.h ├── tools.cpp ├── tools.h ├── treemodel.cpp ├── treemodel.h ├── undo.cpp ├── undo.h ├── url.cpp ├── url.h ├── view.cpp ├── view.h ├── watchbsp.cpp ├── watchbsp.h ├── winding.cpp ├── winding.h ├── windowobservers.cpp ├── windowobservers.h ├── xmlstuff.cpp ├── xmlstuff.h ├── xywindow.cpp └── xywindow.h ├── regression_tests └── q3map2 │ ├── base_winding │ ├── README.txt │ ├── base_winding_logging.patch │ └── maps │ │ └── base_winding.map │ ├── coarse_snap_normal │ ├── README.txt │ └── maps │ │ └── coarse_snap_normal.map │ ├── decal_misalignment │ ├── README.txt │ ├── maps │ │ └── decal_misalignment.map │ └── scripts │ │ └── radiant_regression_tests.shader │ ├── degenerate_winding │ ├── README.txt │ └── maps │ │ └── degenerate_winding.map │ ├── degenerate_winding2 │ ├── README.txt │ └── maps │ │ └── degenerate_winding2.map │ ├── degenerate_winding3 │ ├── README.txt │ └── maps │ │ └── degenerate_winding3.map │ ├── disappearing_sliver │ ├── README.txt │ ├── maps │ │ └── disappearing_sliver.map │ └── winding_logging.patch │ ├── disappearing_sliver2 │ ├── README.txt │ └── maps │ │ └── disappearing_sliver2.map │ ├── disappearing_sliver3 │ ├── NOTES.txt │ ├── README.txt │ └── maps │ │ └── disappearing_sliver3.map │ ├── duplicate_plane │ ├── README.txt │ └── maps │ │ └── duplicate_plane.map │ ├── model_clipping_45_degrees │ ├── README.txt │ ├── maps │ │ └── model_clipping_45_degrees.map │ ├── models │ │ └── mapobjects │ │ │ └── wedges │ │ │ ├── wedge_45.ase │ │ │ ├── wedge_shallow.ase │ │ │ └── wedge_steep.ase │ └── scripts │ │ └── radiant_regression_tests.shader │ ├── patch_seam │ ├── README.txt │ ├── maps │ │ └── patch_seam.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── green.tga │ │ └── tile.tga │ ├── piercing_triangle │ ├── README.txt │ └── maps │ │ └── piercing_triangle.map │ ├── plane_aliasing │ ├── README.txt │ └── maps │ │ └── plane_aliasing.map │ ├── segmentation_fault │ ├── README.txt │ └── maps │ │ └── segmentation_fault.map │ ├── snap_plane │ ├── README.txt │ └── maps │ │ └── snap_plane.map │ ├── sparkly_seam │ ├── README.txt │ └── maps │ │ └── sparkly_seam.map │ └── tiny_structural_brush │ ├── README.txt │ └── maps │ └── tiny_structural_brush.map ├── setup ├── apple │ ├── .gitignore │ ├── Makefile │ ├── NetRadiant.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── radiant │ │ │ └── Resources │ │ │ ├── etc │ │ │ ├── fonts │ │ │ │ └── fonts.conf │ │ │ ├── gtk-2.0 │ │ │ │ └── gtkrc │ │ │ └── pango │ │ │ │ └── pangorc │ │ │ ├── lib │ │ │ └── .turd │ │ │ ├── radiant.icns │ │ │ └── share │ │ │ └── gtk-2.0 │ │ │ ├── icons │ │ │ └── .turd │ │ │ └── themes │ │ │ └── .turd │ └── README.md └── data │ ├── tools-png │ ├── bitmaps │ │ ├── arrow_right.png │ │ ├── brush_flip_hor.png │ │ ├── brush_flip_vert.png │ │ ├── brush_rotate_anti.png │ │ ├── brush_rotate_clock.png │ │ ├── cap_bevel.png │ │ ├── cap_cylinder.png │ │ ├── cap_endcap.png │ │ ├── cap_ibevel.png │ │ ├── cap_iendcap.png │ │ ├── check_mark.png │ │ ├── console.png │ │ ├── copy.png │ │ ├── csgtool_diagonal.png │ │ ├── csgtool_expand.png │ │ ├── csgtool_extrude.png │ │ ├── csgtool_pull.png │ │ ├── csgtool_removeinner.png │ │ ├── csgtool_shrink.png │ │ ├── csgtool_wrap.png │ │ ├── curve_cap.png │ │ ├── ellipsis.png │ │ ├── entities.png │ │ ├── eye_closed.png │ │ ├── eye_open.png │ │ ├── f-caulk.png │ │ ├── f-clip.png │ │ ├── f-details.png │ │ ├── f-entities.png │ │ ├── f-funcgroups.png │ │ ├── f-hide.png │ │ ├── f-hint.png │ │ ├── f-lights.png │ │ ├── f-liquids.png │ │ ├── f-models.png │ │ ├── f-region.png │ │ ├── f-reset.png │ │ ├── f-sky.png │ │ ├── f-structural.png │ │ ├── f-translucent.png │ │ ├── f-triggers.png │ │ ├── f-world.png │ │ ├── file_open.png │ │ ├── file_save.png │ │ ├── icon.png │ │ ├── logo.png │ │ ├── minus.png │ │ ├── modify_edges.png │ │ ├── modify_faces.png │ │ ├── modify_vertices.png │ │ ├── notex.png │ │ ├── patch_wireframe.png │ │ ├── plus.png │ │ ├── redo.png │ │ ├── refresh_models.png │ │ ├── select_clipper.png │ │ ├── select_mouseresize.png │ │ ├── select_mouserotate.png │ │ ├── select_mousescale.png │ │ ├── select_mousetransform.png │ │ ├── select_mousetranslate.png │ │ ├── select_mouseuv.png │ │ ├── selection_csgmerge.png │ │ ├── selection_csgsubtract.png │ │ ├── selection_makeroom.png │ │ ├── selection_selectinside.png │ │ ├── selection_selecttouching.png │ │ ├── shadernotex.png │ │ ├── splash.png │ │ ├── status_brush.png │ │ ├── status_entity.png │ │ ├── texbro_gtk-find-and-replace.png │ │ ├── texbro_refresh.png │ │ ├── texbro_view.png │ │ ├── texture_browser.png │ │ ├── texture_lock.png │ │ ├── texture_vertexlock.png │ │ ├── undo.png │ │ ├── view_change.png │ │ ├── view_cubicclipping.png │ │ ├── view_entity.png │ │ ├── window1.png │ │ ├── window2.png │ │ ├── window3.png │ │ └── window4.png │ └── plugins │ │ └── bitmaps │ │ ├── bobtoolz_caulk.png │ │ ├── bobtoolz_cleanup.png │ │ ├── bobtoolz_cleanup_old.png │ │ ├── bobtoolz_dropent.png │ │ ├── bobtoolz_merge.png │ │ ├── bobtoolz_merge_old.png │ │ ├── bobtoolz_poly.png │ │ ├── bobtoolz_poly_old.png │ │ ├── bobtoolz_split.png │ │ ├── bobtoolz_split_old.png │ │ ├── bobtoolz_splitcol.png │ │ ├── bobtoolz_splitrow.png │ │ ├── bobtoolz_trainpathplot.png │ │ ├── bobtoolz_treeplanter.png │ │ └── bobtoolz_turnedge.png │ ├── tools-src │ ├── black.png │ ├── brush_flipx.png │ ├── brush_flipy.png │ ├── brush_flipz.png │ ├── brush_rotatex.png │ ├── brush_rotatey.png │ ├── brush_rotatez.png │ ├── dontselectcurve.png │ ├── dontselectmodel.png │ ├── f-decals.png │ ├── f-invert.png │ ├── icon.svg │ ├── icon_net.png │ ├── icon_sourceradiant.svg │ ├── lightinspector.png │ ├── logo_net.png │ ├── noFalloff.png │ ├── patch_bend.png │ ├── patch_drilldown.png │ ├── patch_insdel.png │ ├── patch_showboundingbox.png │ ├── patch_weld.png │ ├── popup_selection.png │ ├── scalelockx.png │ ├── scalelocky.png │ ├── scalelockz.png │ ├── selection_makehollow.png │ ├── selection_selectcompletetall.png │ ├── selection_selectcompletetall_old.png │ ├── selection_selectpartialtall.png │ ├── selection_selectpartialtall_old.png │ ├── show_entities.png │ ├── splash.map │ ├── splash.xcf │ ├── splash_net.png │ ├── textures_popup.png │ ├── view_cameratoggle.png │ ├── view_cameraupdate.png │ ├── white.png │ ├── window1.png │ ├── window2.png │ ├── window3.png │ └── window4.png │ └── tools │ ├── bitmaps │ ├── MyriadPro-Regular.ttf │ ├── arrow_left.svg │ ├── arrow_left_right.svg │ ├── arrow_right.svg │ ├── brush_flip_hor.svg │ ├── brush_flip_vert.svg │ ├── brush_rotate_anti.svg │ ├── brush_rotate_clock.svg │ ├── cap_bevel.svg │ ├── cap_cylinder.svg │ ├── cap_endcap.svg │ ├── cap_ibevel.svg │ ├── cap_iendcap.svg │ ├── check_mark.svg │ ├── console.svg │ ├── copy.svg │ ├── csgtool_caulk.svg │ ├── csgtool_diagonal.svg │ ├── csgtool_expand.svg │ ├── csgtool_extrude.svg │ ├── csgtool_pull.svg │ ├── csgtool_removeinner.svg │ ├── csgtool_shrink.svg │ ├── csgtool_wrap.svg │ ├── curve_cap.svg │ ├── delete.svg │ ├── ellipsis.svg │ ├── entities.svg │ ├── eye_closed.svg │ ├── eye_open.svg │ ├── f-caulk.svg │ ├── f-clip.svg │ ├── f-details.svg │ ├── f-entities.svg │ ├── f-funcgroups.svg │ ├── f-hide.svg │ ├── f-hint.svg │ ├── f-lights.svg │ ├── f-liquids.svg │ ├── f-models.svg │ ├── f-patches.svg │ ├── f-pointentities.svg │ ├── f-region.svg │ ├── f-reset.svg │ ├── f-sky.svg │ ├── f-structural.svg │ ├── f-translucent.svg │ ├── f-triggers.svg │ ├── f-world.svg │ ├── file_open.svg │ ├── file_save.svg │ ├── index.theme │ ├── logo.svg │ ├── minus.svg │ ├── modify_edges.svg │ ├── modify_faces.svg │ ├── modify_vertices.svg │ ├── nomodel.png │ ├── notex.png │ ├── plus.svg │ ├── radiant.ico │ ├── redo.svg │ ├── refresh_models.svg │ ├── refresh_modelstree.svg │ ├── search.svg │ ├── search_from_start.svg │ ├── select.svg │ ├── select_clipper.svg │ ├── select_mouseresize.svg │ ├── select_mouserotate.svg │ ├── select_mousescale.svg │ ├── select_mousetransform.svg │ ├── select_mousetranslate.svg │ ├── select_mouseuv.svg │ ├── selection_csgmerge.svg │ ├── selection_csgsubtract.svg │ ├── selection_makeroom.svg │ ├── selection_selectinside.svg │ ├── selection_selecttouching.svg │ ├── shadernotex.png │ ├── splash.svg │ ├── status_brush.svg │ ├── status_entity.svg │ ├── status_patch.svg │ ├── texbro_find-replace.svg │ ├── texbro_refresh.svg │ ├── texbro_view.svg │ ├── texture_browser.svg │ ├── texture_lock.svg │ ├── texture_vertexlock.svg │ ├── undo.svg │ ├── view_change.svg │ ├── view_cubicclipping.svg │ ├── window1.svg │ ├── window2.svg │ ├── window3.svg │ └── window4.svg │ ├── gl │ ├── lighting_DBS_omni_fp.glsl │ ├── lighting_DBS_omni_vp.glsl │ ├── skybox_fp.glsl │ ├── skybox_vp.glsl │ ├── zfill_fp.glsl │ └── zfill_vp.glsl │ ├── global.xlink │ ├── plugins │ ├── bitmaps │ │ ├── bobtoolz_cleanup.svg │ │ ├── bobtoolz_dropent.svg │ │ ├── bobtoolz_merge.svg │ │ ├── bobtoolz_poly.svg │ │ ├── bobtoolz_split.svg │ │ ├── bobtoolz_splitcol.svg │ │ ├── bobtoolz_splitrow.svg │ │ ├── bobtoolz_trainpathplot.svg │ │ ├── bobtoolz_treeplanter.svg │ │ ├── bobtoolz_turnedge.svg │ │ ├── ufoai_actorclip.png │ │ ├── ufoai_level1.png │ │ ├── ufoai_level2.png │ │ ├── ufoai_level3.png │ │ ├── ufoai_level4.png │ │ ├── ufoai_level5.png │ │ ├── ufoai_level6.png │ │ ├── ufoai_level7.png │ │ ├── ufoai_level8.png │ │ ├── ufoai_nodraw.png │ │ ├── ufoai_stepon.png │ │ └── ufoai_weaponclip.png │ └── bt │ │ ├── bt-el1.txt │ │ ├── bt-el2.txt │ │ ├── door-tex-trim.txt │ │ ├── door-tex.txt │ │ └── tp_ent.txt │ ├── qt.conf │ ├── quake3.exclude │ ├── quakelive.exclude │ └── themes │ ├── _colors │ ├── Adwaita Dark.json │ ├── Black and Green.json │ ├── Blender Dark.json │ ├── Blender Lighter.json │ ├── Green.json │ ├── Maya.Max.Lightwave Emulation.json │ ├── Q3Radiant Original.json │ └── QE4 Original.json │ ├── dark.qss │ └── darker.qss ├── tools ├── mbspc │ ├── Makefile │ ├── README │ ├── botlib │ │ ├── aasfile.h │ │ ├── be_aas.h │ │ ├── be_aas_bsp.h │ │ ├── be_aas_bspq3.c │ │ ├── be_aas_cluster.c │ │ ├── be_aas_cluster.h │ │ ├── be_aas_def.h │ │ ├── be_aas_funcs.h │ │ ├── be_aas_move.c │ │ ├── be_aas_move.h │ │ ├── be_aas_optimize.c │ │ ├── be_aas_optimize.h │ │ ├── be_aas_reach.c │ │ ├── be_aas_reach.h │ │ ├── be_aas_sample.c │ │ ├── be_aas_sample.h │ │ ├── be_interface.h │ │ ├── botlib.h │ │ ├── l_libvar.c │ │ ├── l_libvar.h │ │ ├── l_log.c │ │ ├── l_log.h │ │ ├── l_memory.h │ │ ├── l_precomp.c │ │ ├── l_precomp.h │ │ ├── l_script.c │ │ ├── l_script.h │ │ ├── l_struct.c │ │ └── l_struct.h │ ├── mbspc.html │ ├── mbspc │ │ ├── aas_areamerging.c │ │ ├── aas_areamerging.h │ │ ├── aas_cfg.c │ │ ├── aas_cfg.h │ │ ├── aas_create.c │ │ ├── aas_create.h │ │ ├── aas_edgemelting.c │ │ ├── aas_edgemelting.h │ │ ├── aas_facemerging.c │ │ ├── aas_facemerging.h │ │ ├── aas_file.c │ │ ├── aas_file.h │ │ ├── aas_gsubdiv.c │ │ ├── aas_gsubdiv.h │ │ ├── aas_map.c │ │ ├── aas_map.h │ │ ├── aas_prunenodes.c │ │ ├── aas_prunenodes.h │ │ ├── aas_store.c │ │ ├── aas_store.h │ │ ├── aasfile.h │ │ ├── be_aas_bspc.c │ │ ├── be_aas_bspc.h │ │ ├── brushbsp.c │ │ ├── bspc.c │ │ ├── cfgq3.c │ │ ├── csg.c │ │ ├── faces.c │ │ ├── gldraw.c │ │ ├── glfile.c │ │ ├── l_bsp_ent.c │ │ ├── l_bsp_ent.h │ │ ├── l_bsp_hl.c │ │ ├── l_bsp_hl.h │ │ ├── l_bsp_q1.c │ │ ├── l_bsp_q1.h │ │ ├── l_bsp_q2.c │ │ ├── l_bsp_q2.h │ │ ├── l_bsp_q3.c │ │ ├── l_bsp_q3.h │ │ ├── l_bsp_sin.c │ │ ├── l_bsp_sin.h │ │ ├── l_cmd.c │ │ ├── l_cmd.h │ │ ├── l_log.c │ │ ├── l_log.h │ │ ├── l_math.c │ │ ├── l_math.h │ │ ├── l_mem.c │ │ ├── l_mem.h │ │ ├── l_poly.c │ │ ├── l_poly.h │ │ ├── l_qfiles.c │ │ ├── l_qfiles.h │ │ ├── l_threads.c │ │ ├── l_threads.h │ │ ├── l_utils.c │ │ ├── l_utils.h │ │ ├── leakfile.c │ │ ├── map.c │ │ ├── map_hl.c │ │ ├── map_q1.c │ │ ├── map_q2.c │ │ ├── map_q3.c │ │ ├── map_sin.c │ │ ├── nodraw.c │ │ ├── portals.c │ │ ├── prtfile.c │ │ ├── q2files.h │ │ ├── q3files.h │ │ ├── qbsp.h │ │ ├── qfiles.h │ │ ├── sinfiles.h │ │ ├── textures.c │ │ ├── tree.c │ │ └── writebsp.c │ └── qcommon │ │ ├── cm_load.c │ │ ├── cm_local.h │ │ ├── cm_patch.c │ │ ├── cm_patch.h │ │ ├── cm_polylib.h │ │ ├── cm_public.h │ │ ├── cm_test.c │ │ ├── cm_trace.c │ │ ├── md4.c │ │ ├── q_platform.h │ │ ├── q_shared.h │ │ ├── qcommon.h │ │ ├── qfiles.h │ │ ├── surfaceflags.h │ │ ├── unzip.c │ │ └── unzip.h ├── quake2 │ ├── common │ │ ├── bspfile.c │ │ ├── bspfile.h │ │ ├── cmdlib.c │ │ ├── cmdlib.h │ │ ├── inout.c │ │ ├── inout.h │ │ ├── l3dslib.c │ │ ├── l3dslib.h │ │ ├── lbmlib.c │ │ ├── lbmlib.h │ │ ├── mathlib.c │ │ ├── mathlib.h │ │ ├── md4.c │ │ ├── md4.h │ │ ├── path_init.c │ │ ├── polylib.c │ │ ├── polylib.h │ │ ├── q2_threads.h │ │ ├── qfiles.h │ │ ├── scriplib.c │ │ ├── scriplib.h │ │ ├── threads.c │ │ ├── trilib.c │ │ └── trilib.h │ ├── extra │ │ ├── COPYING.txt │ │ ├── Unpack │ │ │ ├── Unpack.dsp │ │ │ ├── Unpack.dsw │ │ │ └── Unpack.java │ │ ├── bsp │ │ │ ├── bsp.mak │ │ │ ├── bspinfo3 │ │ │ │ ├── bspinfo3.c │ │ │ │ └── makefile │ │ │ ├── qbsp3 │ │ │ │ ├── brushbsp.c │ │ │ │ ├── csg.c │ │ │ │ ├── faces.c │ │ │ │ ├── gldraw.c │ │ │ │ ├── glfile.c │ │ │ │ ├── leakfile.c │ │ │ │ ├── makefile │ │ │ │ ├── map.c │ │ │ │ ├── nodraw.c │ │ │ │ ├── portals.c │ │ │ │ ├── prtfile.c │ │ │ │ ├── qbsp.h │ │ │ │ ├── qbsp3.c │ │ │ │ ├── textures.c │ │ │ │ ├── tree.c │ │ │ │ └── writebsp.c │ │ │ ├── qrad3 │ │ │ │ ├── lightmap.c │ │ │ │ ├── makefile │ │ │ │ ├── patches.c │ │ │ │ ├── qrad.h │ │ │ │ ├── qrad3.c │ │ │ │ └── trace.c │ │ │ └── qvis3 │ │ │ │ ├── flow.c │ │ │ │ ├── makefile │ │ │ │ ├── qvis3.c │ │ │ │ └── vis.h │ │ ├── common │ │ │ ├── bspfile.c │ │ │ ├── bspfile.h │ │ │ ├── cmdlib.c │ │ │ ├── cmdlib.h │ │ │ ├── l3dslib.c │ │ │ ├── l3dslib.h │ │ │ ├── lbmlib.c │ │ │ ├── lbmlib.h │ │ │ ├── mathlib.c │ │ │ ├── mathlib.h │ │ │ ├── mdfour.c │ │ │ ├── mdfour.h │ │ │ ├── polylib.c │ │ │ ├── polylib.h │ │ │ ├── qfiles.h │ │ │ ├── scriplib.c │ │ │ ├── scriplib.h │ │ │ ├── threads.c │ │ │ ├── threads.h │ │ │ ├── trilib.c │ │ │ └── trilib.h │ │ ├── qdata │ │ │ ├── anorms.h │ │ │ ├── images.c │ │ │ ├── makefile │ │ │ ├── models.c │ │ │ ├── qdata.c │ │ │ ├── qdata.dsp │ │ │ ├── qdata.dsw │ │ │ ├── qdata.h │ │ │ ├── qdata.mak │ │ │ ├── sprites.c │ │ │ ├── tables.c │ │ │ └── video.c │ │ ├── qe4 │ │ │ ├── brush.c │ │ │ ├── brush.h │ │ │ ├── bspfile.h │ │ │ ├── camera.c │ │ │ ├── camera.h │ │ │ ├── cmdlib.c │ │ │ ├── cmdlib.h │ │ │ ├── csg.c │ │ │ ├── drag.c │ │ │ ├── eclass.c │ │ │ ├── entity.c │ │ │ ├── entity.h │ │ │ ├── entityw.h │ │ │ ├── glingr.h │ │ │ ├── icon1.ico │ │ │ ├── lbmlib.c │ │ │ ├── lbmlib.h │ │ │ ├── makefile │ │ │ ├── map.c │ │ │ ├── map.h │ │ │ ├── mathlib.c │ │ │ ├── mathlib.h │ │ │ ├── mru.c │ │ │ ├── mru.h │ │ │ ├── parse.c │ │ │ ├── parse.h │ │ │ ├── points.c │ │ │ ├── q.bmp │ │ │ ├── qe3.c │ │ │ ├── qe3.h │ │ │ ├── qe4.mak │ │ │ ├── qedefs.h │ │ │ ├── qfiles.h │ │ │ ├── resource.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── textures.c │ │ │ ├── textures.h │ │ │ ├── toolbar1.bmp │ │ │ ├── vertsel.c │ │ │ ├── view.h │ │ │ ├── win_cam.c │ │ │ ├── win_dlg.c │ │ │ ├── win_ent.c │ │ │ ├── win_main.c │ │ │ ├── win_qe3.aps │ │ │ ├── win_qe3.c │ │ │ ├── win_qe3.rc │ │ │ ├── win_xy.c │ │ │ ├── win_z.c │ │ │ ├── xy.c │ │ │ ├── xy.h │ │ │ ├── z.c │ │ │ └── z.h │ │ └── texpaint │ │ │ ├── docs.txt │ │ │ ├── resource.h │ │ │ ├── texmake.aps │ │ │ ├── texmake.rc │ │ │ ├── texpaint.c │ │ │ ├── texpaint.h │ │ │ ├── texpaint.mak │ │ │ ├── win_cam.c │ │ │ ├── win_main.c │ │ │ ├── win_pal.c │ │ │ └── win_skin.c │ ├── q2map │ │ ├── brushbsp.c │ │ ├── csg.c │ │ ├── faces.c │ │ ├── flow.c │ │ ├── gldraw.c │ │ ├── glfile.c │ │ ├── leakfile.c │ │ ├── lightmap.c │ │ ├── main.c │ │ ├── map.c │ │ ├── nodraw.c │ │ ├── patches.c │ │ ├── portals.c │ │ ├── prtfile.c │ │ ├── q2map.h │ │ ├── qbsp.c │ │ ├── qbsp.h │ │ ├── qrad.c │ │ ├── qrad.h │ │ ├── qvis.c │ │ ├── qvis.h │ │ ├── textures.c │ │ ├── trace.c │ │ ├── tree.c │ │ └── writebsp.c │ ├── qdata │ │ ├── anorms.h │ │ ├── images.c │ │ ├── makefile │ │ ├── models.c │ │ ├── qdata.c │ │ ├── qdata.h │ │ ├── sprites.c │ │ ├── tables.c │ │ └── video.c │ └── qdata_heretic2 │ │ ├── adpcm.h │ │ ├── animcomp.c │ │ ├── animcomp.h │ │ ├── anorms.h │ │ ├── book.c │ │ ├── common │ │ ├── bspfile.c │ │ ├── bspfile.h │ │ ├── cmdlib.c │ │ ├── cmdlib.h │ │ ├── her2_threads.h │ │ ├── inout.c │ │ ├── inout.h │ │ ├── l3dslib.c │ │ ├── l3dslib.h │ │ ├── lbmlib.c │ │ ├── lbmlib.h │ │ ├── mathlib.c │ │ ├── mathlib.h │ │ ├── md4.c │ │ ├── md4.h │ │ ├── path_init.c │ │ ├── polylib.c │ │ ├── polylib.h │ │ ├── qfiles.c │ │ ├── qfiles.h │ │ ├── scriplib.c │ │ ├── scriplib.h │ │ ├── threads.c │ │ ├── token.c │ │ ├── token.h │ │ ├── trilib.c │ │ └── trilib.h │ │ ├── fmodels.c │ │ ├── icon1.ico │ │ ├── images.c │ │ ├── jointed.c │ │ ├── jointed.h │ │ ├── joints.h │ │ ├── models.c │ │ ├── pics.c │ │ ├── qcommon │ │ ├── angles.h │ │ ├── arrayedlist.h │ │ ├── flex.h │ │ ├── fmodel.h │ │ ├── h2common.h │ │ ├── placement.h │ │ ├── q_typedef.h │ │ ├── qfiles.h │ │ ├── reference.c │ │ ├── reference.h │ │ ├── resourcemanager.c │ │ ├── resourcemanager.h │ │ ├── skeletons.c │ │ └── skeletons.h │ │ ├── qd_fmodel.h │ │ ├── qd_skeletons.c │ │ ├── qd_skeletons.h │ │ ├── qdata.c │ │ ├── qdata.h │ │ ├── resource.h │ │ ├── script1.aps │ │ ├── script1.rc │ │ ├── sprites.c │ │ ├── svdcmp.c │ │ ├── tables.c │ │ ├── tmix.c │ │ └── video.c └── quake3 │ ├── common │ ├── bitflags.h │ ├── cmdlib.cpp │ ├── cmdlib.h │ ├── inout.cpp │ ├── inout.h │ ├── inout_xml.h │ ├── jpeg.cpp │ ├── maxworld.h │ ├── md4.cpp │ ├── md4.h │ ├── miniz.cpp │ ├── miniz.h │ ├── mutex.cpp │ ├── mutex.h │ ├── polylib.cpp │ ├── polylib.h │ ├── qimagelib.cpp │ ├── qimagelib.h │ ├── qmath.h │ ├── qpathops.h │ ├── qspatial.h │ ├── qstringops.h │ ├── qthreads.h │ ├── scriplib.cpp │ ├── scriplib.h │ ├── stringfixedsize.h │ ├── threads.cpp │ ├── unsortedset.h │ ├── unzip.cpp │ ├── unzip.h │ ├── vfs.cpp │ └── vfs.h │ ├── q3map2 │ ├── .patchsets │ ├── autopk3.cpp │ ├── autopk3.h │ ├── brush.cpp │ ├── bsp.cpp │ ├── bspfile_abstract.cpp │ ├── bspfile_abstract.h │ ├── bspfile_ibsp.cpp │ ├── bspfile_ibsp.h │ ├── bspfile_rbsp.cpp │ ├── bspfile_rbsp.h │ ├── changelog.q3map1 │ ├── changelog.q3map2.txt │ ├── convert_ase.cpp │ ├── convert_bsp.cpp │ ├── convert_json.cpp │ ├── convert_map.cpp │ ├── convert_obj.cpp │ ├── convert_obj.h │ ├── decals.cpp │ ├── exportents.cpp │ ├── facebsp.cpp │ ├── fog.cpp │ ├── games.cpp │ ├── games.h │ ├── help.cpp │ ├── image.cpp │ ├── leakfile.cpp │ ├── light.cpp │ ├── light_bounce.cpp │ ├── light_trace.cpp │ ├── light_ydnar.cpp │ ├── lightmaps_ydnar.cpp │ ├── listen.pl │ ├── main.cpp │ ├── map.cpp │ ├── mesh.cpp │ ├── minimap.cpp │ ├── model.cpp │ ├── model.h │ ├── patch.cpp │ ├── path_init.cpp │ ├── portals.cpp │ ├── prtfile.cpp │ ├── q3map2.h │ ├── q3map2.ico │ ├── q3map2.rc │ ├── q3map2_fsr_newfiles │ │ └── q3map2_fsr_svn158.patch │ ├── shaders.cpp │ ├── shaders.h │ ├── surface.cpp │ ├── surface_extra.cpp │ ├── surface_extra.h │ ├── surface_foliage.cpp │ ├── surface_fur.cpp │ ├── surface_meta.cpp │ ├── tjunction.cpp │ ├── tjunction.h │ ├── tree.cpp │ ├── vis.cpp │ ├── vis.h │ ├── visflow.cpp │ ├── visflow.h │ └── writebsp.cpp │ └── q3maporigin2originbrush.pl └── uncrustify.cfg /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.cproject -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/d1_trainstation_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.github/d1_trainstation_02.png -------------------------------------------------------------------------------- /.github/ep1_citadel_02b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.github/ep1_citadel_02b.png -------------------------------------------------------------------------------- /.github/testchmb_a_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.github/testchmb_a_00.png -------------------------------------------------------------------------------- /.github/testroom_standards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.github/testroom_standards.png -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.gitignore -------------------------------------------------------------------------------- /.patchsets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.patchsets -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/.project -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COMPILING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/COMPILING -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.idsoftware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/ChangeLog.idsoftware -------------------------------------------------------------------------------- /DoxyConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/DoxyConfig -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/Doxyfile -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/GPL -------------------------------------------------------------------------------- /LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/LGPL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/Makefile.conf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/TODO -------------------------------------------------------------------------------- /appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/appimage.sh -------------------------------------------------------------------------------- /branch-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/branch-manager -------------------------------------------------------------------------------- /cmake/default_build_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/cmake/default_build_menu.xml -------------------------------------------------------------------------------- /cmake/gamepack-multi.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/cmake/gamepack-multi.xml.in -------------------------------------------------------------------------------- /cmake/gamepack-single.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/cmake/gamepack-single.xml.in -------------------------------------------------------------------------------- /conftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/conftest.cpp -------------------------------------------------------------------------------- /contrib/bkgrnd2d/bkgrnd2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bkgrnd2d/bkgrnd2d.cpp -------------------------------------------------------------------------------- /contrib/bkgrnd2d/bkgrnd2d.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bkgrnd2d/bkgrnd2d.def -------------------------------------------------------------------------------- /contrib/bkgrnd2d/bkgrnd2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bkgrnd2d/bkgrnd2d.h -------------------------------------------------------------------------------- /contrib/bkgrnd2d/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bkgrnd2d/dialog.cpp -------------------------------------------------------------------------------- /contrib/bkgrnd2d/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bkgrnd2d/dialog.h -------------------------------------------------------------------------------- /contrib/bkgrnd2d/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bkgrnd2d/plugin.cpp -------------------------------------------------------------------------------- /contrib/bkgrnd2d/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bkgrnd2d/plugin.h -------------------------------------------------------------------------------- /contrib/bobtoolz/CPortals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/CPortals.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DBobView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DBobView.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DBrush.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DBrush.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DEPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DEPair.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DEPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DEPair.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DEntity.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DMap.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DMap.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DPatch.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DPatch.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DPlane.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DPlane.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DPoint.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DPoint.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DShape.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DShape.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DWinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/DWinding.h -------------------------------------------------------------------------------- /contrib/bobtoolz/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/StdAfx.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/StdAfx.h -------------------------------------------------------------------------------- /contrib/bobtoolz/bobToolz-GTK.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | extern QWidget *g_pRadiantWnd; 5 | -------------------------------------------------------------------------------- /contrib/bobtoolz/bobToolz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/bobToolz.h -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/bt-el2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/bobtoolz/lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/lists.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/lists.h -------------------------------------------------------------------------------- /contrib/bobtoolz/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/misc.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/misc.h -------------------------------------------------------------------------------- /contrib/bobtoolz/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/resource.h -------------------------------------------------------------------------------- /contrib/bobtoolz/shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/shapes.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/shapes.h -------------------------------------------------------------------------------- /contrib/bobtoolz/visfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/bobtoolz/visfind.h -------------------------------------------------------------------------------- /contrib/camera/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/camera.cpp -------------------------------------------------------------------------------- /contrib/camera/camera.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/camera.def -------------------------------------------------------------------------------- /contrib/camera/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/camera.h -------------------------------------------------------------------------------- /contrib/camera/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/dialogs.cpp -------------------------------------------------------------------------------- /contrib/camera/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/dialogs.h -------------------------------------------------------------------------------- /contrib/camera/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/listener.cpp -------------------------------------------------------------------------------- /contrib/camera/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/listener.h -------------------------------------------------------------------------------- /contrib/camera/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/misc.cpp -------------------------------------------------------------------------------- /contrib/camera/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/misc.h -------------------------------------------------------------------------------- /contrib/camera/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/renderer.cpp -------------------------------------------------------------------------------- /contrib/camera/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/camera/renderer.h -------------------------------------------------------------------------------- /contrib/gtkgensurf/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/gtkgensurf/CHANGES -------------------------------------------------------------------------------- /contrib/gtkgensurf/dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/gtkgensurf/dec.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/gtkgensurf/face.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/gtkgensurf/font.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/gtkgensurf/view.cpp -------------------------------------------------------------------------------- /contrib/hydratoolz/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/hydratoolz/plugin.h -------------------------------------------------------------------------------- /contrib/meshtex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/.gitignore -------------------------------------------------------------------------------- /contrib/meshtex/COMPILING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/COMPILING -------------------------------------------------------------------------------- /contrib/meshtex/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/Doxyfile -------------------------------------------------------------------------------- /contrib/meshtex/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/HISTORY -------------------------------------------------------------------------------- /contrib/meshtex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/LICENSE -------------------------------------------------------------------------------- /contrib/meshtex/MainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/MainMenu.h -------------------------------------------------------------------------------- /contrib/meshtex/PluginUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/PluginUI.h -------------------------------------------------------------------------------- /contrib/meshtex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/README.md -------------------------------------------------------------------------------- /contrib/meshtex/meshtex.def: -------------------------------------------------------------------------------- 1 | LIBRARY "meshtex" 2 | EXPORTS 3 | Radiant_RegisterModules @1 -------------------------------------------------------------------------------- /contrib/meshtex/meshtex.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/meshtex.rc -------------------------------------------------------------------------------- /contrib/meshtex/meshtex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/meshtex.sln -------------------------------------------------------------------------------- /contrib/meshtex/modules.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/modules.dox -------------------------------------------------------------------------------- /contrib/meshtex/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/meshtex/resource.h -------------------------------------------------------------------------------- /contrib/prtview/PrtView.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/prtview/PrtView.aps -------------------------------------------------------------------------------- /contrib/prtview/PrtView.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/prtview/PrtView.def -------------------------------------------------------------------------------- /contrib/prtview/PrtView.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/prtview/PrtView.txt -------------------------------------------------------------------------------- /contrib/prtview/portals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/prtview/portals.cpp -------------------------------------------------------------------------------- /contrib/prtview/portals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/prtview/portals.h -------------------------------------------------------------------------------- /contrib/prtview/prtview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/prtview/prtview.cpp -------------------------------------------------------------------------------- /contrib/prtview/prtview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/prtview/prtview.h -------------------------------------------------------------------------------- /contrib/sunplug/sunplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/sunplug/sunplug.cpp -------------------------------------------------------------------------------- /contrib/sunplug/sunplug.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/sunplug/sunplug.def -------------------------------------------------------------------------------- /contrib/sunplug/sunplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/sunplug/sunplug.h -------------------------------------------------------------------------------- /contrib/ufoaiplug/ufoai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/ufoaiplug/ufoai.cpp -------------------------------------------------------------------------------- /contrib/ufoaiplug/ufoai.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/ufoaiplug/ufoai.def -------------------------------------------------------------------------------- /contrib/ufoaiplug/ufoai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/contrib/ufoaiplug/ufoai.h -------------------------------------------------------------------------------- /cross-Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/cross-Makefile.conf -------------------------------------------------------------------------------- /docs/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/application.css -------------------------------------------------------------------------------- /docs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/application.js -------------------------------------------------------------------------------- /docs/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/attachment.png -------------------------------------------------------------------------------- /docs/balloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/balloons.png -------------------------------------------------------------------------------- /docs/changelog-custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/changelog-custom.txt -------------------------------------------------------------------------------- /docs/clipline-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/clipline-small.png -------------------------------------------------------------------------------- /docs/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/controls.js -------------------------------------------------------------------------------- /docs/document-zipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/document-zipper.png -------------------------------------------------------------------------------- /docs/documents-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/documents-text.png -------------------------------------------------------------------------------- /docs/dotproduct-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/dotproduct-small.jpg -------------------------------------------------------------------------------- /docs/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/dragdrop.js -------------------------------------------------------------------------------- /docs/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/effects.js -------------------------------------------------------------------------------- /docs/exposure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/exposure.jpg -------------------------------------------------------------------------------- /docs/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/external.png -------------------------------------------------------------------------------- /docs/floodlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/floodlight.jpg -------------------------------------------------------------------------------- /docs/fsr_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/fsr_readme.txt -------------------------------------------------------------------------------- /docs/header_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/header_gradient.png -------------------------------------------------------------------------------- /docs/help-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/help-top.png -------------------------------------------------------------------------------- /docs/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/history.png -------------------------------------------------------------------------------- /docs/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/house.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jstoolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/jstoolbar.css -------------------------------------------------------------------------------- /docs/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/lightning.png -------------------------------------------------------------------------------- /docs/mbspc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/mbspc.html -------------------------------------------------------------------------------- /docs/mouse shortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/mouse shortcuts.txt -------------------------------------------------------------------------------- /docs/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/newspaper.png -------------------------------------------------------------------------------- /docs/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/projects.png -------------------------------------------------------------------------------- /docs/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/prototype.js -------------------------------------------------------------------------------- /docs/safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/safe.png -------------------------------------------------------------------------------- /docs/scm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/scm.css -------------------------------------------------------------------------------- /docs/shaderManual/decal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/decal.jpg -------------------------------------------------------------------------------- /docs/shaderManual/fur.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/fur.html -------------------------------------------------------------------------------- /docs/shaderManual/fur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/fur.jpg -------------------------------------------------------------------------------- /docs/shaderManual/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/nav.png -------------------------------------------------------------------------------- /docs/shaderManual/ql_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/ql_32.png -------------------------------------------------------------------------------- /docs/shaderManual/sky01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/sky01.jpg -------------------------------------------------------------------------------- /docs/shaderManual/sky02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/sky02.jpg -------------------------------------------------------------------------------- /docs/shaderManual/sky03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/sky03.jpg -------------------------------------------------------------------------------- /docs/shaderManual/sky04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/sky04.jpg -------------------------------------------------------------------------------- /docs/shaderManual/sky05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/sky05.jpg -------------------------------------------------------------------------------- /docs/shaderManual/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/shaderManual/title.gif -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /docs/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/docs/ticket.png -------------------------------------------------------------------------------- /download-gamepacks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/download-gamepacks.sh -------------------------------------------------------------------------------- /generic_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/generic_cpp.py -------------------------------------------------------------------------------- /generic_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/generic_h.py -------------------------------------------------------------------------------- /generic_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/generic_module.py -------------------------------------------------------------------------------- /icons/h2data.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/icons/h2data.ico -------------------------------------------------------------------------------- /icons/q2map.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/icons/q2map.ico -------------------------------------------------------------------------------- /icons/q3map2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/icons/q3map2.ico -------------------------------------------------------------------------------- /icons/qdata3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/icons/qdata3.ico -------------------------------------------------------------------------------- /icons/radiant-src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/icons/radiant-src.png -------------------------------------------------------------------------------- /icons/radiant.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/icons/radiant.ico -------------------------------------------------------------------------------- /icons/radiant_net.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/icons/radiant_net.ico -------------------------------------------------------------------------------- /include/aboutmsg.default: -------------------------------------------------------------------------------- 1 | Custom build based on trunk -------------------------------------------------------------------------------- /include/aboutmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/aboutmsg.h -------------------------------------------------------------------------------- /include/cullable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/cullable.h -------------------------------------------------------------------------------- /include/editable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/editable.h -------------------------------------------------------------------------------- /include/iarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iarchive.h -------------------------------------------------------------------------------- /include/ibrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ibrush.h -------------------------------------------------------------------------------- /include/icamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/icamera.h -------------------------------------------------------------------------------- /include/idatastream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/idatastream.h -------------------------------------------------------------------------------- /include/ieclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ieclass.h -------------------------------------------------------------------------------- /include/ientity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ientity.h -------------------------------------------------------------------------------- /include/ifilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ifilesystem.h -------------------------------------------------------------------------------- /include/ifiletypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ifiletypes.h -------------------------------------------------------------------------------- /include/ifilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ifilter.h -------------------------------------------------------------------------------- /include/igl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/igl.h -------------------------------------------------------------------------------- /include/iglrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iglrender.h -------------------------------------------------------------------------------- /include/igtkgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/igtkgl.h -------------------------------------------------------------------------------- /include/iimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iimage.h -------------------------------------------------------------------------------- /include/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/imap.h -------------------------------------------------------------------------------- /include/imodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/imodel.h -------------------------------------------------------------------------------- /include/ipatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ipatch.h -------------------------------------------------------------------------------- /include/iplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iplugin.h -------------------------------------------------------------------------------- /include/ireference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ireference.h -------------------------------------------------------------------------------- /include/irender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/irender.h -------------------------------------------------------------------------------- /include/iscenegraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iscenegraph.h -------------------------------------------------------------------------------- /include/iscriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iscriplib.h -------------------------------------------------------------------------------- /include/iselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iselection.h -------------------------------------------------------------------------------- /include/ishaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/ishaders.h -------------------------------------------------------------------------------- /include/itexdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/itexdef.h -------------------------------------------------------------------------------- /include/itextstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/itextstream.h -------------------------------------------------------------------------------- /include/itextures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/itextures.h -------------------------------------------------------------------------------- /include/itoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/itoolbar.h -------------------------------------------------------------------------------- /include/iundo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/iundo.h -------------------------------------------------------------------------------- /include/mapfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/mapfile.h -------------------------------------------------------------------------------- /include/modelskin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/modelskin.h -------------------------------------------------------------------------------- /include/moduleobserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/moduleobserver.h -------------------------------------------------------------------------------- /include/modulesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/modulesystem.h -------------------------------------------------------------------------------- /include/nameable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/nameable.h -------------------------------------------------------------------------------- /include/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/namespace.h -------------------------------------------------------------------------------- /include/preferencesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/preferencesystem.h -------------------------------------------------------------------------------- /include/qerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/qerplugin.h -------------------------------------------------------------------------------- /include/renderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/renderable.h -------------------------------------------------------------------------------- /include/selectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/selectable.h -------------------------------------------------------------------------------- /include/stream_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/stream_version.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/version.h -------------------------------------------------------------------------------- /include/windowobserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/include/windowobserver.h -------------------------------------------------------------------------------- /install-dlls-fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/install-dlls-fedora.sh -------------------------------------------------------------------------------- /install-dlls-msys2-mingw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/install-dlls-msys2-mingw.sh -------------------------------------------------------------------------------- /install-dlls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/install-dlls.sh -------------------------------------------------------------------------------- /install-dylibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/install-dylibs.sh -------------------------------------------------------------------------------- /install-gamepack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/install-gamepack.sh -------------------------------------------------------------------------------- /install-gamepacks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/install-gamepacks.sh -------------------------------------------------------------------------------- /libs/archivelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/archivelib.h -------------------------------------------------------------------------------- /libs/assimp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/.clang-format -------------------------------------------------------------------------------- /libs/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/.editorconfig -------------------------------------------------------------------------------- /libs/assimp/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/Build.md -------------------------------------------------------------------------------- /libs/assimp/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/CHANGES -------------------------------------------------------------------------------- /libs/assimp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/assimp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/assimp/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/CREDITS -------------------------------------------------------------------------------- /libs/assimp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/Dockerfile -------------------------------------------------------------------------------- /libs/assimp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/LICENSE -------------------------------------------------------------------------------- /libs/assimp/README: -------------------------------------------------------------------------------- 1 | See Readme.md 2 | -------------------------------------------------------------------------------- /libs/assimp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/Readme.md -------------------------------------------------------------------------------- /libs/assimp/assimp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/assimp.pc.in -------------------------------------------------------------------------------- /libs/assimp/contrib/gtest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/doc/Doxyfile.in -------------------------------------------------------------------------------- /libs/assimp/doc/dox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/doc/dox.h -------------------------------------------------------------------------------- /libs/assimp/doc/dox_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/doc/dox_cmd.h -------------------------------------------------------------------------------- /libs/assimp/port/PyAssimp/pyassimp/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/camera/mod.rs: -------------------------------------------------------------------------------- 1 | pub use self::structs::{Camera}; 2 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/core/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/errors/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/formats/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/material/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/postprocess/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/shims/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/socket/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/blob/blob.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/blob/mod.rs: -------------------------------------------------------------------------------- 1 | mod blob; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/bone/bone.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/bone/mod.rs: -------------------------------------------------------------------------------- 1 | mod bone; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/camera/camera.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/camera/mod.rs: -------------------------------------------------------------------------------- 1 | mod camera; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/face/face.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/face/mod.rs: -------------------------------------------------------------------------------- 1 | mod face; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/key/key.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/key/mod.rs: -------------------------------------------------------------------------------- 1 | mod key; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/light/light.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/light/mod.rs: -------------------------------------------------------------------------------- 1 | mod light; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/material/material.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/material/mod.rs: -------------------------------------------------------------------------------- 1 | mod material; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/mesh/mesh.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/mesh/mod.rs: -------------------------------------------------------------------------------- 1 | mod mesh; 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/meta/meta.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/meta/mod.rs: -------------------------------------------------------------------------------- 1 | mod meta; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/node/mod.rs: -------------------------------------------------------------------------------- 1 | mod node; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/node/node.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/plane/mod.rs: -------------------------------------------------------------------------------- 1 | mod plane; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/ray/mod.rs: -------------------------------------------------------------------------------- 1 | mod ray; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/ray/ray.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/scene/mod.rs: -------------------------------------------------------------------------------- 1 | mod scene; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/scene/scene.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/transform/mod.rs: -------------------------------------------------------------------------------- 1 | mod transform; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/transform/transform.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/vec/mod.rs: -------------------------------------------------------------------------------- 1 | mod vec; 2 | 3 | -------------------------------------------------------------------------------- /libs/assimp/port/assimp_rs/src/structs/vertex/vertex.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/assimp/revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/revision.h.in -------------------------------------------------------------------------------- /libs/assimp/samples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/assimp/samples/README -------------------------------------------------------------------------------- /libs/assimp/samples/SimpleAssimpViewX/include/copy_assimp_headers_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/bytebool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/bytebool.h -------------------------------------------------------------------------------- /libs/bytestreamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/bytestreamutils.h -------------------------------------------------------------------------------- /libs/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/character.h -------------------------------------------------------------------------------- /libs/commandlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/commandlib.cpp -------------------------------------------------------------------------------- /libs/commandlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/commandlib.h -------------------------------------------------------------------------------- /libs/container/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/container/array.cpp -------------------------------------------------------------------------------- /libs/container/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/container/array.h -------------------------------------------------------------------------------- /libs/container/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/container/cache.h -------------------------------------------------------------------------------- /libs/container/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/container/container.h -------------------------------------------------------------------------------- /libs/container/hashfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/container/hashfunc.h -------------------------------------------------------------------------------- /libs/container/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/container/hashtable.h -------------------------------------------------------------------------------- /libs/container/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/container/stack.h -------------------------------------------------------------------------------- /libs/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/convert.h -------------------------------------------------------------------------------- /libs/crnlib/crnlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/crnlib/crnlib.cpp -------------------------------------------------------------------------------- /libs/crnlib/crnlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/crnlib/crnlib.h -------------------------------------------------------------------------------- /libs/ddslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/ddslib.h -------------------------------------------------------------------------------- /libs/ddslib/ddslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/ddslib/ddslib.c -------------------------------------------------------------------------------- /libs/debugging/debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/debugging/debugging.h -------------------------------------------------------------------------------- /libs/dragplanes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/dragplanes.h -------------------------------------------------------------------------------- /libs/eclasslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/eclasslib.h -------------------------------------------------------------------------------- /libs/entitylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/entitylib.h -------------------------------------------------------------------------------- /libs/entityxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/entityxml.h -------------------------------------------------------------------------------- /libs/etclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/etclib.c -------------------------------------------------------------------------------- /libs/etclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/etclib.h -------------------------------------------------------------------------------- /libs/filematch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/filematch.c -------------------------------------------------------------------------------- /libs/filematch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/filematch.h -------------------------------------------------------------------------------- /libs/fs_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/fs_filesystem.h -------------------------------------------------------------------------------- /libs/fs_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/fs_path.h -------------------------------------------------------------------------------- /libs/generic/arrayrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/arrayrange.h -------------------------------------------------------------------------------- /libs/generic/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/bitfield.h -------------------------------------------------------------------------------- /libs/generic/callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/callback.cpp -------------------------------------------------------------------------------- /libs/generic/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/callback.h -------------------------------------------------------------------------------- /libs/generic/constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/constant.cpp -------------------------------------------------------------------------------- /libs/generic/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/constant.h -------------------------------------------------------------------------------- /libs/generic/enumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/enumeration.h -------------------------------------------------------------------------------- /libs/generic/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/functional.h -------------------------------------------------------------------------------- /libs/generic/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/object.cpp -------------------------------------------------------------------------------- /libs/generic/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/object.h -------------------------------------------------------------------------------- /libs/generic/reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/reference.h -------------------------------------------------------------------------------- /libs/generic/static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/static.cpp -------------------------------------------------------------------------------- /libs/generic/static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/static.h -------------------------------------------------------------------------------- /libs/generic/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/generic/vector.h -------------------------------------------------------------------------------- /libs/gtkutil/accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/accelerator.h -------------------------------------------------------------------------------- /libs/gtkutil/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/clipboard.cpp -------------------------------------------------------------------------------- /libs/gtkutil/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/clipboard.h -------------------------------------------------------------------------------- /libs/gtkutil/combobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/combobox.h -------------------------------------------------------------------------------- /libs/gtkutil/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/cursor.h -------------------------------------------------------------------------------- /libs/gtkutil/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/dialog.cpp -------------------------------------------------------------------------------- /libs/gtkutil/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/dialog.h -------------------------------------------------------------------------------- /libs/gtkutil/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/entry.cpp -------------------------------------------------------------------------------- /libs/gtkutil/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/entry.h -------------------------------------------------------------------------------- /libs/gtkutil/fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/fbo.h -------------------------------------------------------------------------------- /libs/gtkutil/filechooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/filechooser.h -------------------------------------------------------------------------------- /libs/gtkutil/glfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/glfont.cpp -------------------------------------------------------------------------------- /libs/gtkutil/glfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/glfont.h -------------------------------------------------------------------------------- /libs/gtkutil/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/glwidget.cpp -------------------------------------------------------------------------------- /libs/gtkutil/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/glwidget.h -------------------------------------------------------------------------------- /libs/gtkutil/guisettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/guisettings.h -------------------------------------------------------------------------------- /libs/gtkutil/idledraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/idledraw.cpp -------------------------------------------------------------------------------- /libs/gtkutil/idledraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/idledraw.h -------------------------------------------------------------------------------- /libs/gtkutil/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/image.cpp -------------------------------------------------------------------------------- /libs/gtkutil/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/image.h -------------------------------------------------------------------------------- /libs/gtkutil/lineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/lineedit.h -------------------------------------------------------------------------------- /libs/gtkutil/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/menu.cpp -------------------------------------------------------------------------------- /libs/gtkutil/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/menu.h -------------------------------------------------------------------------------- /libs/gtkutil/messagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/messagebox.cpp -------------------------------------------------------------------------------- /libs/gtkutil/messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/messagebox.h -------------------------------------------------------------------------------- /libs/gtkutil/mousepresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/mousepresses.h -------------------------------------------------------------------------------- /libs/gtkutil/nonmodal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/nonmodal.cpp -------------------------------------------------------------------------------- /libs/gtkutil/nonmodal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/nonmodal.h -------------------------------------------------------------------------------- /libs/gtkutil/spinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/spinbox.h -------------------------------------------------------------------------------- /libs/gtkutil/toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/toolbar.cpp -------------------------------------------------------------------------------- /libs/gtkutil/toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/toolbar.h -------------------------------------------------------------------------------- /libs/gtkutil/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/widget.cpp -------------------------------------------------------------------------------- /libs/gtkutil/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/widget.h -------------------------------------------------------------------------------- /libs/gtkutil/xorrectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/gtkutil/xorrectangle.h -------------------------------------------------------------------------------- /libs/imagelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/imagelib.h -------------------------------------------------------------------------------- /libs/instancelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/instancelib.h -------------------------------------------------------------------------------- /libs/l_net/l_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/l_net/l_net.c -------------------------------------------------------------------------------- /libs/l_net/l_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/l_net/l_net.h -------------------------------------------------------------------------------- /libs/l_net/l_net_wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/l_net/l_net_wins.c -------------------------------------------------------------------------------- /libs/l_net/l_net_wins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/l_net/l_net_wins.h -------------------------------------------------------------------------------- /libs/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/layers.h -------------------------------------------------------------------------------- /libs/maplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/maplib.h -------------------------------------------------------------------------------- /libs/math/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/aabb.h -------------------------------------------------------------------------------- /libs/math/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/curve.h -------------------------------------------------------------------------------- /libs/math/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/expression.cpp -------------------------------------------------------------------------------- /libs/math/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/expression.h -------------------------------------------------------------------------------- /libs/math/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/frustum.h -------------------------------------------------------------------------------- /libs/math/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/line.h -------------------------------------------------------------------------------- /libs/math/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/matrix.h -------------------------------------------------------------------------------- /libs/math/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/pi.h -------------------------------------------------------------------------------- /libs/math/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/plane.h -------------------------------------------------------------------------------- /libs/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/quaternion.h -------------------------------------------------------------------------------- /libs/math/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/vector.h -------------------------------------------------------------------------------- /libs/math/vectorfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/math/vectorfwd.h -------------------------------------------------------------------------------- /libs/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/mathlib.h -------------------------------------------------------------------------------- /libs/mathlib/bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/mathlib/bbox.c -------------------------------------------------------------------------------- /libs/mathlib/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/mathlib/line.c -------------------------------------------------------------------------------- /libs/mathlib/m4x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/mathlib/m4x4.c -------------------------------------------------------------------------------- /libs/mathlib/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/mathlib/mathlib.c -------------------------------------------------------------------------------- /libs/mathlib/ray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/mathlib/ray.c -------------------------------------------------------------------------------- /libs/md5lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/md5lib.h -------------------------------------------------------------------------------- /libs/md5lib/md5lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/md5lib/md5lib.c -------------------------------------------------------------------------------- /libs/memory/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/memory/allocator.cpp -------------------------------------------------------------------------------- /libs/memory/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/memory/allocator.h -------------------------------------------------------------------------------- /libs/moduleobservers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/moduleobservers.h -------------------------------------------------------------------------------- /libs/os/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/os/dir.h -------------------------------------------------------------------------------- /libs/os/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/os/file.h -------------------------------------------------------------------------------- /libs/os/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/os/path.h -------------------------------------------------------------------------------- /libs/picomodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel.h -------------------------------------------------------------------------------- /libs/picomodel/lwo/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/lwo/clip.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/lwo/list.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/lwo/lwio.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/lwo/lwo2.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/lwo/lwo2.h -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/lwo/lwob.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/vmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/lwo/vmap.c -------------------------------------------------------------------------------- /libs/picomodel/picomodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/picomodel.c -------------------------------------------------------------------------------- /libs/picomodel/pm_3ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_3ds.c -------------------------------------------------------------------------------- /libs/picomodel/pm_ase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_ase.c -------------------------------------------------------------------------------- /libs/picomodel/pm_fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_fm.c -------------------------------------------------------------------------------- /libs/picomodel/pm_fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_fm.h -------------------------------------------------------------------------------- /libs/picomodel/pm_lwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_lwo.c -------------------------------------------------------------------------------- /libs/picomodel/pm_md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_md2.c -------------------------------------------------------------------------------- /libs/picomodel/pm_md3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_md3.c -------------------------------------------------------------------------------- /libs/picomodel/pm_mdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_mdc.c -------------------------------------------------------------------------------- /libs/picomodel/pm_ms3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_ms3d.c -------------------------------------------------------------------------------- /libs/picomodel/pm_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_obj.c -------------------------------------------------------------------------------- /libs/picomodel/pm_terrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/picomodel/pm_terrain.c -------------------------------------------------------------------------------- /libs/pivot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/pivot.h -------------------------------------------------------------------------------- /libs/profile/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/profile/file.cpp -------------------------------------------------------------------------------- /libs/profile/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/profile/file.h -------------------------------------------------------------------------------- /libs/profile/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/profile/profile.cpp -------------------------------------------------------------------------------- /libs/profile/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/profile/profile.h -------------------------------------------------------------------------------- /libs/profile/profile2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/profile/profile2.h -------------------------------------------------------------------------------- /libs/quickhull/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/quickhull/.gitignore -------------------------------------------------------------------------------- /libs/quickhull/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/quickhull/README.md -------------------------------------------------------------------------------- /libs/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/allocators.h -------------------------------------------------------------------------------- /libs/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/document.h -------------------------------------------------------------------------------- /libs/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/encodings.h -------------------------------------------------------------------------------- /libs/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/error/en.h -------------------------------------------------------------------------------- /libs/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/fwd.h -------------------------------------------------------------------------------- /libs/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/pointer.h -------------------------------------------------------------------------------- /libs/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /libs/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/reader.h -------------------------------------------------------------------------------- /libs/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/schema.h -------------------------------------------------------------------------------- /libs/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/stream.h -------------------------------------------------------------------------------- /libs/rapidjson/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/uri.h -------------------------------------------------------------------------------- /libs/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rapidjson/writer.h -------------------------------------------------------------------------------- /libs/rect_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/rect_t.h -------------------------------------------------------------------------------- /libs/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/render.h -------------------------------------------------------------------------------- /libs/scenelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/scenelib.h -------------------------------------------------------------------------------- /libs/selectionlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/selectionlib.h -------------------------------------------------------------------------------- /libs/shaderlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/shaderlib.h -------------------------------------------------------------------------------- /libs/signal/isignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/signal/isignal.h -------------------------------------------------------------------------------- /libs/signal/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/signal/signal.cpp -------------------------------------------------------------------------------- /libs/signal/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/signal/signal.h -------------------------------------------------------------------------------- /libs/signal/signalfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/signal/signalfwd.h -------------------------------------------------------------------------------- /libs/splines/math_angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/math_angles.h -------------------------------------------------------------------------------- /libs/splines/math_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/math_matrix.h -------------------------------------------------------------------------------- /libs/splines/math_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/math_vector.h -------------------------------------------------------------------------------- /libs/splines/q_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/q_parse.cpp -------------------------------------------------------------------------------- /libs/splines/q_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/q_shared.cpp -------------------------------------------------------------------------------- /libs/splines/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/q_shared.h -------------------------------------------------------------------------------- /libs/splines/splines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/splines.cpp -------------------------------------------------------------------------------- /libs/splines/splines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/splines.h -------------------------------------------------------------------------------- /libs/splines/util_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/util_list.h -------------------------------------------------------------------------------- /libs/splines/util_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/util_str.cpp -------------------------------------------------------------------------------- /libs/splines/util_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/splines/util_str.h -------------------------------------------------------------------------------- /libs/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/str.h -------------------------------------------------------------------------------- /libs/stream/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/stream/filestream.h -------------------------------------------------------------------------------- /libs/stream/memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/stream/memstream.h -------------------------------------------------------------------------------- /libs/stream/stringstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/stream/stringstream.h -------------------------------------------------------------------------------- /libs/stream/textstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/stream/textstream.h -------------------------------------------------------------------------------- /libs/string/pooledstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/string/pooledstring.h -------------------------------------------------------------------------------- /libs/string/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/string/string.cpp -------------------------------------------------------------------------------- /libs/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/string/string.h -------------------------------------------------------------------------------- /libs/string/stringfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/string/stringfwd.h -------------------------------------------------------------------------------- /libs/stringio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/stringio.h -------------------------------------------------------------------------------- /libs/texturelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/texturelib.h -------------------------------------------------------------------------------- /libs/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/timer.h -------------------------------------------------------------------------------- /libs/transformlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/transformlib.h -------------------------------------------------------------------------------- /libs/traverselib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/traverselib.h -------------------------------------------------------------------------------- /libs/typesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/typesystem.h -------------------------------------------------------------------------------- /libs/undolib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/undolib.h -------------------------------------------------------------------------------- /libs/uniquenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/uniquenames.h -------------------------------------------------------------------------------- /libs/versionlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/versionlib.h -------------------------------------------------------------------------------- /libs/webplib/tiny_webp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/webplib/tiny_webp.h -------------------------------------------------------------------------------- /libs/webplib/webplib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/webplib/webplib.cpp -------------------------------------------------------------------------------- /libs/webplib/webplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/webplib/webplib.h -------------------------------------------------------------------------------- /libs/xml/ixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/ixml.cpp -------------------------------------------------------------------------------- /libs/xml/ixml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/ixml.h -------------------------------------------------------------------------------- /libs/xml/xmlelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmlelement.cpp -------------------------------------------------------------------------------- /libs/xml/xmlelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmlelement.h -------------------------------------------------------------------------------- /libs/xml/xmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmlparser.cpp -------------------------------------------------------------------------------- /libs/xml/xmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmlparser.h -------------------------------------------------------------------------------- /libs/xml/xmltextags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmltextags.cpp -------------------------------------------------------------------------------- /libs/xml/xmltextags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmltextags.h -------------------------------------------------------------------------------- /libs/xml/xmlwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmlwriter.cpp -------------------------------------------------------------------------------- /libs/xml/xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/libs/xml/xmlwriter.h -------------------------------------------------------------------------------- /merge-from-zerowing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/merge-from-zerowing.sh -------------------------------------------------------------------------------- /mingw-Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/mingw-Makefile.conf -------------------------------------------------------------------------------- /mingw-Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/mingw-Makefile.inc -------------------------------------------------------------------------------- /mingw-fedora-Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/mingw-fedora-Makefile.conf -------------------------------------------------------------------------------- /msys2-Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/msys2-Makefile.conf -------------------------------------------------------------------------------- /plugins/archivepak/pak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivepak/pak.cpp -------------------------------------------------------------------------------- /plugins/archivepak/pak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivepak/pak.h -------------------------------------------------------------------------------- /plugins/archivepak/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivepak/plugin.h -------------------------------------------------------------------------------- /plugins/archivevpk/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivevpk/plugin.h -------------------------------------------------------------------------------- /plugins/archivewad/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivewad/plugin.h -------------------------------------------------------------------------------- /plugins/archivewad/wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivewad/wad.cpp -------------------------------------------------------------------------------- /plugins/archivewad/wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivewad/wad.h -------------------------------------------------------------------------------- /plugins/archivezip/pkzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivezip/pkzip.h -------------------------------------------------------------------------------- /plugins/archivezip/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/archivezip/plugin.h -------------------------------------------------------------------------------- /plugins/assmodel/mdlimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/assmodel/mdlimage.h -------------------------------------------------------------------------------- /plugins/assmodel/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/assmodel/model.cpp -------------------------------------------------------------------------------- /plugins/assmodel/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/assmodel/model.h -------------------------------------------------------------------------------- /plugins/assmodel/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/assmodel/plugin.cpp -------------------------------------------------------------------------------- /plugins/assmodel/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/assmodel/plugin.h -------------------------------------------------------------------------------- /plugins/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/config.mk -------------------------------------------------------------------------------- /plugins/entity/angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/angle.cpp -------------------------------------------------------------------------------- /plugins/entity/angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/angle.h -------------------------------------------------------------------------------- /plugins/entity/angles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/angles.cpp -------------------------------------------------------------------------------- /plugins/entity/angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/angles.h -------------------------------------------------------------------------------- /plugins/entity/colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/colour.cpp -------------------------------------------------------------------------------- /plugins/entity/colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/colour.h -------------------------------------------------------------------------------- /plugins/entity/curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/curve.cpp -------------------------------------------------------------------------------- /plugins/entity/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/curve.h -------------------------------------------------------------------------------- /plugins/entity/doom3group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/doom3group.h -------------------------------------------------------------------------------- /plugins/entity/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/entity.cpp -------------------------------------------------------------------------------- /plugins/entity/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/entity.h -------------------------------------------------------------------------------- /plugins/entity/entityq3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/entityq3.def -------------------------------------------------------------------------------- /plugins/entity/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/filters.cpp -------------------------------------------------------------------------------- /plugins/entity/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/filters.h -------------------------------------------------------------------------------- /plugins/entity/generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/generic.cpp -------------------------------------------------------------------------------- /plugins/entity/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/generic.h -------------------------------------------------------------------------------- /plugins/entity/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/group.cpp -------------------------------------------------------------------------------- /plugins/entity/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/group.h -------------------------------------------------------------------------------- /plugins/entity/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/light.cpp -------------------------------------------------------------------------------- /plugins/entity/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/light.h -------------------------------------------------------------------------------- /plugins/entity/miscmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/miscmodel.h -------------------------------------------------------------------------------- /plugins/entity/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/model.cpp -------------------------------------------------------------------------------- /plugins/entity/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/model.h -------------------------------------------------------------------------------- /plugins/entity/namekeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/namekeys.cpp -------------------------------------------------------------------------------- /plugins/entity/namekeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/namekeys.h -------------------------------------------------------------------------------- /plugins/entity/origin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/origin.cpp -------------------------------------------------------------------------------- /plugins/entity/origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/origin.h -------------------------------------------------------------------------------- /plugins/entity/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/plugin.cpp -------------------------------------------------------------------------------- /plugins/entity/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/plugin.h -------------------------------------------------------------------------------- /plugins/entity/rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/rotation.cpp -------------------------------------------------------------------------------- /plugins/entity/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/rotation.h -------------------------------------------------------------------------------- /plugins/entity/scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/scale.cpp -------------------------------------------------------------------------------- /plugins/entity/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/scale.h -------------------------------------------------------------------------------- /plugins/entity/skincache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/skincache.h -------------------------------------------------------------------------------- /plugins/entity/targetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/entity/targetable.h -------------------------------------------------------------------------------- /plugins/image/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/bmp.cpp -------------------------------------------------------------------------------- /plugins/image/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/bmp.h -------------------------------------------------------------------------------- /plugins/image/crn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/crn.cpp -------------------------------------------------------------------------------- /plugins/image/crn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/crn.h -------------------------------------------------------------------------------- /plugins/image/dds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/dds.cpp -------------------------------------------------------------------------------- /plugins/image/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/dds.h -------------------------------------------------------------------------------- /plugins/image/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/image.cpp -------------------------------------------------------------------------------- /plugins/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/image.h -------------------------------------------------------------------------------- /plugins/image/imageq3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/imageq3.def -------------------------------------------------------------------------------- /plugins/image/jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/jpeg.cpp -------------------------------------------------------------------------------- /plugins/image/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/jpeg.h -------------------------------------------------------------------------------- /plugins/image/ktx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/ktx.cpp -------------------------------------------------------------------------------- /plugins/image/ktx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/ktx.h -------------------------------------------------------------------------------- /plugins/image/pcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/pcx.cpp -------------------------------------------------------------------------------- /plugins/image/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/pcx.h -------------------------------------------------------------------------------- /plugins/image/tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/tga.cpp -------------------------------------------------------------------------------- /plugins/image/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/tga.h -------------------------------------------------------------------------------- /plugins/image/webp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/webp.cpp -------------------------------------------------------------------------------- /plugins/image/webp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/image/webp.h -------------------------------------------------------------------------------- /plugins/imagehl/hlw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/hlw.cpp -------------------------------------------------------------------------------- /plugins/imagehl/hlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/hlw.h -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/imagehl.cpp -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/imagehl.def -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/imagehl.h -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/imagehl.txt -------------------------------------------------------------------------------- /plugins/imagehl/mip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/mip.cpp -------------------------------------------------------------------------------- /plugins/imagehl/mip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/mip.h -------------------------------------------------------------------------------- /plugins/imagehl/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/sprite.cpp -------------------------------------------------------------------------------- /plugins/imagehl/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagehl/sprite.h -------------------------------------------------------------------------------- /plugins/imagepng/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagepng/plugin.cpp -------------------------------------------------------------------------------- /plugins/imagepng/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagepng/plugin.h -------------------------------------------------------------------------------- /plugins/imageq2/imageq2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imageq2/imageq2.cpp -------------------------------------------------------------------------------- /plugins/imageq2/imageq2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imageq2/imageq2.def -------------------------------------------------------------------------------- /plugins/imageq2/imageq2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imageq2/imageq2.h -------------------------------------------------------------------------------- /plugins/imageq2/wal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imageq2/wal.cpp -------------------------------------------------------------------------------- /plugins/imageq2/wal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imageq2/wal.h -------------------------------------------------------------------------------- /plugins/imageq2/wal32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imageq2/wal32.cpp -------------------------------------------------------------------------------- /plugins/imageq2/wal32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imageq2/wal32.h -------------------------------------------------------------------------------- /plugins/imagevtf/imagevtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagevtf/imagevtf.h -------------------------------------------------------------------------------- /plugins/imagevtf/vtf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagevtf/vtf.cpp -------------------------------------------------------------------------------- /plugins/imagevtf/vtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/imagevtf/vtf.h -------------------------------------------------------------------------------- /plugins/mapq3/mapq3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapq3/mapq3.def -------------------------------------------------------------------------------- /plugins/mapq3/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapq3/parse.cpp -------------------------------------------------------------------------------- /plugins/mapq3/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapq3/parse.h -------------------------------------------------------------------------------- /plugins/mapq3/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapq3/plugin.cpp -------------------------------------------------------------------------------- /plugins/mapq3/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapq3/plugin.h -------------------------------------------------------------------------------- /plugins/mapq3/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapq3/write.cpp -------------------------------------------------------------------------------- /plugins/mapq3/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapq3/write.h -------------------------------------------------------------------------------- /plugins/mapvmf/mapvmf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapvmf/mapvmf.def -------------------------------------------------------------------------------- /plugins/mapvmf/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapvmf/plugin.cpp -------------------------------------------------------------------------------- /plugins/mapvmf/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapvmf/plugin.h -------------------------------------------------------------------------------- /plugins/mapxml/mapxml.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapxml/mapxml.def -------------------------------------------------------------------------------- /plugins/mapxml/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapxml/plugin.cpp -------------------------------------------------------------------------------- /plugins/mapxml/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapxml/plugin.h -------------------------------------------------------------------------------- /plugins/mapxml/xmlparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapxml/xmlparse.cpp -------------------------------------------------------------------------------- /plugins/mapxml/xmlparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapxml/xmlparse.h -------------------------------------------------------------------------------- /plugins/mapxml/xmlwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapxml/xmlwrite.cpp -------------------------------------------------------------------------------- /plugins/mapxml/xmlwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/mapxml/xmlwrite.h -------------------------------------------------------------------------------- /plugins/md3model/ident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/ident.h -------------------------------------------------------------------------------- /plugins/md3model/md2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/md2.cpp -------------------------------------------------------------------------------- /plugins/md3model/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/md2.h -------------------------------------------------------------------------------- /plugins/md3model/md3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/md3.cpp -------------------------------------------------------------------------------- /plugins/md3model/md3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/md3.h -------------------------------------------------------------------------------- /plugins/md3model/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/md5.cpp -------------------------------------------------------------------------------- /plugins/md3model/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/md5.h -------------------------------------------------------------------------------- /plugins/md3model/mdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/mdc.cpp -------------------------------------------------------------------------------- /plugins/md3model/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/mdc.h -------------------------------------------------------------------------------- /plugins/md3model/mdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/mdl.cpp -------------------------------------------------------------------------------- /plugins/md3model/mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/mdl.h -------------------------------------------------------------------------------- /plugins/md3model/mdlimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/mdlimage.h -------------------------------------------------------------------------------- /plugins/md3model/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/model.cpp -------------------------------------------------------------------------------- /plugins/md3model/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/model.h -------------------------------------------------------------------------------- /plugins/md3model/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/plugin.cpp -------------------------------------------------------------------------------- /plugins/md3model/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/md3model/plugin.h -------------------------------------------------------------------------------- /plugins/model/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/model/model.cpp -------------------------------------------------------------------------------- /plugins/model/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/model/model.h -------------------------------------------------------------------------------- /plugins/model/modelpico.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/model/modelpico.def -------------------------------------------------------------------------------- /plugins/model/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/model/plugin.cpp -------------------------------------------------------------------------------- /plugins/model/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/model/plugin.h -------------------------------------------------------------------------------- /plugins/sample/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/sample/sample.cpp -------------------------------------------------------------------------------- /plugins/sample/sample.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/sample/sample.def -------------------------------------------------------------------------------- /plugins/sample/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/sample/sample.h -------------------------------------------------------------------------------- /plugins/shaders/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/shaders/plugin.cpp -------------------------------------------------------------------------------- /plugins/shaders/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/shaders/plugin.h -------------------------------------------------------------------------------- /plugins/shaders/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/shaders/shaders.cpp -------------------------------------------------------------------------------- /plugins/shaders/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/shaders/shaders.h -------------------------------------------------------------------------------- /plugins/sourcemodel/mdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/sourcemodel/mdl.cpp -------------------------------------------------------------------------------- /plugins/sourcemodel/mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/sourcemodel/mdl.h -------------------------------------------------------------------------------- /plugins/sourcemodel/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/sourcemodel/model.h -------------------------------------------------------------------------------- /plugins/textool/2DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/2DView.cpp -------------------------------------------------------------------------------- /plugins/textool/2DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/2DView.h -------------------------------------------------------------------------------- /plugins/textool/Doc/.cvswrappers: -------------------------------------------------------------------------------- 1 | *.jpg -m 'COPY' -k 'b' 2 | -------------------------------------------------------------------------------- /plugins/textool/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/StdAfx.cpp -------------------------------------------------------------------------------- /plugins/textool/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/StdAfx.h -------------------------------------------------------------------------------- /plugins/textool/TexTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/TexTool.cpp -------------------------------------------------------------------------------- /plugins/textool/TexTool.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/TexTool.def -------------------------------------------------------------------------------- /plugins/textool/TexTool.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/TexTool.rc -------------------------------------------------------------------------------- /plugins/textool/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/textool/resource.h -------------------------------------------------------------------------------- /plugins/vfspk3/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/vfspk3/archive.cpp -------------------------------------------------------------------------------- /plugins/vfspk3/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/vfspk3/archive.h -------------------------------------------------------------------------------- /plugins/vfspk3/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/vfspk3/vfs.cpp -------------------------------------------------------------------------------- /plugins/vfspk3/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/vfspk3/vfs.h -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/vfspk3/vfspk3.cpp -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/vfspk3/vfspk3.h -------------------------------------------------------------------------------- /plugins/vfspk3/vfsq3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/plugins/vfspk3/vfsq3.def -------------------------------------------------------------------------------- /radiant/autosave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/autosave.cpp -------------------------------------------------------------------------------- /radiant/autosave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/autosave.h -------------------------------------------------------------------------------- /radiant/brush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brush.cpp -------------------------------------------------------------------------------- /radiant/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brush.h -------------------------------------------------------------------------------- /radiant/brush_primit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brush_primit.cpp -------------------------------------------------------------------------------- /radiant/brush_primit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brush_primit.h -------------------------------------------------------------------------------- /radiant/brushmanip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushmanip.cpp -------------------------------------------------------------------------------- /radiant/brushmanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushmanip.h -------------------------------------------------------------------------------- /radiant/brushmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushmodule.cpp -------------------------------------------------------------------------------- /radiant/brushmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushmodule.h -------------------------------------------------------------------------------- /radiant/brushnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushnode.cpp -------------------------------------------------------------------------------- /radiant/brushnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushnode.h -------------------------------------------------------------------------------- /radiant/brushtokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushtokens.cpp -------------------------------------------------------------------------------- /radiant/brushtokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushtokens.h -------------------------------------------------------------------------------- /radiant/brushxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushxml.cpp -------------------------------------------------------------------------------- /radiant/brushxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/brushxml.h -------------------------------------------------------------------------------- /radiant/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/build.cpp -------------------------------------------------------------------------------- /radiant/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/build.h -------------------------------------------------------------------------------- /radiant/camwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/camwindow.cpp -------------------------------------------------------------------------------- /radiant/camwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/camwindow.h -------------------------------------------------------------------------------- /radiant/clippertool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/clippertool.cpp -------------------------------------------------------------------------------- /radiant/clippertool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/clippertool.h -------------------------------------------------------------------------------- /radiant/colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/colors.cpp -------------------------------------------------------------------------------- /radiant/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/colors.h -------------------------------------------------------------------------------- /radiant/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/commands.cpp -------------------------------------------------------------------------------- /radiant/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/commands.h -------------------------------------------------------------------------------- /radiant/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/console.cpp -------------------------------------------------------------------------------- /radiant/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/console.h -------------------------------------------------------------------------------- /radiant/csg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/csg.cpp -------------------------------------------------------------------------------- /radiant/csg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/csg.h -------------------------------------------------------------------------------- /radiant/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/dialog.cpp -------------------------------------------------------------------------------- /radiant/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/dialog.h -------------------------------------------------------------------------------- /radiant/eclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass.cpp -------------------------------------------------------------------------------- /radiant/eclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass.h -------------------------------------------------------------------------------- /radiant/eclass_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_def.cpp -------------------------------------------------------------------------------- /radiant/eclass_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_def.h -------------------------------------------------------------------------------- /radiant/eclass_doom3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_doom3.cpp -------------------------------------------------------------------------------- /radiant/eclass_doom3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_doom3.h -------------------------------------------------------------------------------- /radiant/eclass_fgd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_fgd.cpp -------------------------------------------------------------------------------- /radiant/eclass_fgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_fgd.h -------------------------------------------------------------------------------- /radiant/eclass_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_xml.cpp -------------------------------------------------------------------------------- /radiant/eclass_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/eclass_xml.h -------------------------------------------------------------------------------- /radiant/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/entity.cpp -------------------------------------------------------------------------------- /radiant/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/entity.h -------------------------------------------------------------------------------- /radiant/entityinspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/entityinspector.cpp -------------------------------------------------------------------------------- /radiant/entityinspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/entityinspector.h -------------------------------------------------------------------------------- /radiant/entitylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/entitylist.cpp -------------------------------------------------------------------------------- /radiant/entitylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/entitylist.h -------------------------------------------------------------------------------- /radiant/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/environment.cpp -------------------------------------------------------------------------------- /radiant/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/environment.h -------------------------------------------------------------------------------- /radiant/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/error.cpp -------------------------------------------------------------------------------- /radiant/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/error.h -------------------------------------------------------------------------------- /radiant/feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/feedback.cpp -------------------------------------------------------------------------------- /radiant/feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/feedback.h -------------------------------------------------------------------------------- /radiant/filetypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/filetypes.cpp -------------------------------------------------------------------------------- /radiant/filetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/filetypes.h -------------------------------------------------------------------------------- /radiant/filterbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/filterbar.cpp -------------------------------------------------------------------------------- /radiant/filterbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/filterbar.h -------------------------------------------------------------------------------- /radiant/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/filters.cpp -------------------------------------------------------------------------------- /radiant/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/filters.h -------------------------------------------------------------------------------- /radiant/findtexturedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/findtexturedialog.h -------------------------------------------------------------------------------- /radiant/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/glwidget.cpp -------------------------------------------------------------------------------- /radiant/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/glwidget.h -------------------------------------------------------------------------------- /radiant/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/grid.cpp -------------------------------------------------------------------------------- /radiant/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/grid.h -------------------------------------------------------------------------------- /radiant/groupdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/groupdialog.cpp -------------------------------------------------------------------------------- /radiant/groupdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/groupdialog.h -------------------------------------------------------------------------------- /radiant/gtkdlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/gtkdlgs.cpp -------------------------------------------------------------------------------- /radiant/gtkdlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/gtkdlgs.h -------------------------------------------------------------------------------- /radiant/gtkmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/gtkmisc.cpp -------------------------------------------------------------------------------- /radiant/gtkmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/gtkmisc.h -------------------------------------------------------------------------------- /radiant/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/help.cpp -------------------------------------------------------------------------------- /radiant/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/help.h -------------------------------------------------------------------------------- /radiant/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/image.cpp -------------------------------------------------------------------------------- /radiant/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/image.h -------------------------------------------------------------------------------- /radiant/layerswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/layerswindow.cpp -------------------------------------------------------------------------------- /radiant/layerswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/layerswindow.h -------------------------------------------------------------------------------- /radiant/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/main.cpp -------------------------------------------------------------------------------- /radiant/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/main.h -------------------------------------------------------------------------------- /radiant/mainframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/mainframe.cpp -------------------------------------------------------------------------------- /radiant/mainframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/mainframe.h -------------------------------------------------------------------------------- /radiant/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/map.cpp -------------------------------------------------------------------------------- /radiant/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/map.h -------------------------------------------------------------------------------- /radiant/modelwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/modelwindow.cpp -------------------------------------------------------------------------------- /radiant/modelwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/modelwindow.h -------------------------------------------------------------------------------- /radiant/mru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/mru.cpp -------------------------------------------------------------------------------- /radiant/mru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/mru.h -------------------------------------------------------------------------------- /radiant/nullmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/nullmodel.cpp -------------------------------------------------------------------------------- /radiant/nullmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/nullmodel.h -------------------------------------------------------------------------------- /radiant/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/parse.cpp -------------------------------------------------------------------------------- /radiant/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/parse.h -------------------------------------------------------------------------------- /radiant/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patch.cpp -------------------------------------------------------------------------------- /radiant/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patch.h -------------------------------------------------------------------------------- /radiant/patchdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patchdialog.cpp -------------------------------------------------------------------------------- /radiant/patchdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patchdialog.h -------------------------------------------------------------------------------- /radiant/patchmanip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patchmanip.cpp -------------------------------------------------------------------------------- /radiant/patchmanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patchmanip.h -------------------------------------------------------------------------------- /radiant/patchmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patchmodule.cpp -------------------------------------------------------------------------------- /radiant/patchmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/patchmodule.h -------------------------------------------------------------------------------- /radiant/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/plugin.cpp -------------------------------------------------------------------------------- /radiant/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/plugin.h -------------------------------------------------------------------------------- /radiant/pluginapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/pluginapi.cpp -------------------------------------------------------------------------------- /radiant/pluginapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/pluginapi.h -------------------------------------------------------------------------------- /radiant/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/pluginmanager.cpp -------------------------------------------------------------------------------- /radiant/pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/pluginmanager.h -------------------------------------------------------------------------------- /radiant/pluginmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/pluginmenu.cpp -------------------------------------------------------------------------------- /radiant/pluginmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/pluginmenu.h -------------------------------------------------------------------------------- /radiant/plugintoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/plugintoolbar.cpp -------------------------------------------------------------------------------- /radiant/plugintoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/plugintoolbar.h -------------------------------------------------------------------------------- /radiant/points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/points.cpp -------------------------------------------------------------------------------- /radiant/points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/points.h -------------------------------------------------------------------------------- /radiant/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/preferences.cpp -------------------------------------------------------------------------------- /radiant/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/preferences.h -------------------------------------------------------------------------------- /radiant/qe3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/qe3.cpp -------------------------------------------------------------------------------- /radiant/qe3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/qe3.h -------------------------------------------------------------------------------- /radiant/qgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/qgl.cpp -------------------------------------------------------------------------------- /radiant/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/qgl.h -------------------------------------------------------------------------------- /radiant/radiant.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/radiant.ico -------------------------------------------------------------------------------- /radiant/radiant.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/radiant.rc -------------------------------------------------------------------------------- /radiant/radiant_old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/radiant_old.ico -------------------------------------------------------------------------------- /radiant/referencecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/referencecache.cpp -------------------------------------------------------------------------------- /radiant/referencecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/referencecache.h -------------------------------------------------------------------------------- /radiant/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/renderer.cpp -------------------------------------------------------------------------------- /radiant/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/renderer.h -------------------------------------------------------------------------------- /radiant/renderstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/renderstate.cpp -------------------------------------------------------------------------------- /radiant/renderstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/renderstate.h -------------------------------------------------------------------------------- /radiant/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/resource.h -------------------------------------------------------------------------------- /radiant/scenegraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/scenegraph.cpp -------------------------------------------------------------------------------- /radiant/scenegraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/scenegraph.h -------------------------------------------------------------------------------- /radiant/select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/select.cpp -------------------------------------------------------------------------------- /radiant/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/select.h -------------------------------------------------------------------------------- /radiant/selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/selection.cpp -------------------------------------------------------------------------------- /radiant/selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/selection.h -------------------------------------------------------------------------------- /radiant/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/server.cpp -------------------------------------------------------------------------------- /radiant/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/server.h -------------------------------------------------------------------------------- /radiant/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/sockets.cpp -------------------------------------------------------------------------------- /radiant/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/sockets.h -------------------------------------------------------------------------------- /radiant/stacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/stacktrace.cpp -------------------------------------------------------------------------------- /radiant/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/stacktrace.h -------------------------------------------------------------------------------- /radiant/surfacedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/surfacedialog.cpp -------------------------------------------------------------------------------- /radiant/surfacedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/surfacedialog.h -------------------------------------------------------------------------------- /radiant/texmanip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/texmanip.cpp -------------------------------------------------------------------------------- /radiant/texmanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/texmanip.h -------------------------------------------------------------------------------- /radiant/textureentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/textureentry.cpp -------------------------------------------------------------------------------- /radiant/textureentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/textureentry.h -------------------------------------------------------------------------------- /radiant/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/textures.cpp -------------------------------------------------------------------------------- /radiant/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/textures.h -------------------------------------------------------------------------------- /radiant/texwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/texwindow.cpp -------------------------------------------------------------------------------- /radiant/texwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/texwindow.h -------------------------------------------------------------------------------- /radiant/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/theme.cpp -------------------------------------------------------------------------------- /radiant/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/theme.h -------------------------------------------------------------------------------- /radiant/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/tools.cpp -------------------------------------------------------------------------------- /radiant/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/tools.h -------------------------------------------------------------------------------- /radiant/treemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/treemodel.cpp -------------------------------------------------------------------------------- /radiant/treemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/treemodel.h -------------------------------------------------------------------------------- /radiant/undo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/undo.cpp -------------------------------------------------------------------------------- /radiant/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/undo.h -------------------------------------------------------------------------------- /radiant/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/url.cpp -------------------------------------------------------------------------------- /radiant/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/url.h -------------------------------------------------------------------------------- /radiant/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/view.cpp -------------------------------------------------------------------------------- /radiant/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/view.h -------------------------------------------------------------------------------- /radiant/watchbsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/watchbsp.cpp -------------------------------------------------------------------------------- /radiant/watchbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/watchbsp.h -------------------------------------------------------------------------------- /radiant/winding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/winding.cpp -------------------------------------------------------------------------------- /radiant/winding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/winding.h -------------------------------------------------------------------------------- /radiant/windowobservers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/windowobservers.cpp -------------------------------------------------------------------------------- /radiant/windowobservers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/windowobservers.h -------------------------------------------------------------------------------- /radiant/xmlstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/xmlstuff.cpp -------------------------------------------------------------------------------- /radiant/xmlstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/xmlstuff.h -------------------------------------------------------------------------------- /radiant/xywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/xywindow.cpp -------------------------------------------------------------------------------- /radiant/xywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/radiant/xywindow.h -------------------------------------------------------------------------------- /setup/apple/.gitignore: -------------------------------------------------------------------------------- 1 | target/* 2 | -------------------------------------------------------------------------------- /setup/apple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/setup/apple/Makefile -------------------------------------------------------------------------------- /setup/apple/NetRadiant.app/Contents/Resources/etc/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/apple/NetRadiant.app/Contents/Resources/etc/pango/pangorc: -------------------------------------------------------------------------------- 1 | [Pango] -------------------------------------------------------------------------------- /setup/apple/NetRadiant.app/Contents/Resources/lib/.turd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/apple/NetRadiant.app/Contents/Resources/share/gtk-2.0/icons/.turd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/apple/NetRadiant.app/Contents/Resources/share/gtk-2.0/themes/.turd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/apple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/setup/apple/README.md -------------------------------------------------------------------------------- /setup/data/tools/plugins/bt/bt-el2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/data/tools/qt.conf: -------------------------------------------------------------------------------- 1 | [Platforms] 2 | WindowsArguments = darkmode=1,dpiawareness=1 -------------------------------------------------------------------------------- /tools/mbspc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/Makefile -------------------------------------------------------------------------------- /tools/mbspc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/README -------------------------------------------------------------------------------- /tools/mbspc/botlib/be_aas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/botlib/be_aas.h -------------------------------------------------------------------------------- /tools/mbspc/botlib/botlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/botlib/botlib.h -------------------------------------------------------------------------------- /tools/mbspc/botlib/l_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/botlib/l_log.c -------------------------------------------------------------------------------- /tools/mbspc/botlib/l_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/botlib/l_log.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc.html -------------------------------------------------------------------------------- /tools/mbspc/mbspc/aas_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/aas_cfg.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/aas_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/aas_cfg.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/aas_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/aas_map.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/aas_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/aas_map.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/aasfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/aasfile.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/bspc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/bspc.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/cfgq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/cfgq3.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/csg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/csg.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/faces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/faces.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/gldraw.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/glfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/glfile.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_cmd.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_cmd.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_log.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_log.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_math.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_math.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_mem.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_mem.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_poly.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_poly.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_utils.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/l_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/l_utils.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/map.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/map_hl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/map_hl.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/map_q1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/map_q1.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/map_q2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/map_q2.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/map_q3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/map_q3.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/map_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/map_sin.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/nodraw.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/portals.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/prtfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/prtfile.c -------------------------------------------------------------------------------- /tools/mbspc/mbspc/q2files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/q2files.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/q3files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/q3files.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/qbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/qbsp.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/qfiles.h -------------------------------------------------------------------------------- /tools/mbspc/mbspc/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/mbspc/tree.c -------------------------------------------------------------------------------- /tools/mbspc/qcommon/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/qcommon/md4.c -------------------------------------------------------------------------------- /tools/mbspc/qcommon/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/qcommon/unzip.c -------------------------------------------------------------------------------- /tools/mbspc/qcommon/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/mbspc/qcommon/unzip.h -------------------------------------------------------------------------------- /tools/quake2/common/inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/common/inout.c -------------------------------------------------------------------------------- /tools/quake2/common/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/common/inout.h -------------------------------------------------------------------------------- /tools/quake2/common/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/common/md4.c -------------------------------------------------------------------------------- /tools/quake2/common/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/common/md4.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/extra/qe4/xy.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/xy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/extra/qe4/xy.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/extra/qe4/z.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/extra/qe4/z.h -------------------------------------------------------------------------------- /tools/quake2/q2map/csg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/csg.c -------------------------------------------------------------------------------- /tools/quake2/q2map/faces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/faces.c -------------------------------------------------------------------------------- /tools/quake2/q2map/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/flow.c -------------------------------------------------------------------------------- /tools/quake2/q2map/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/gldraw.c -------------------------------------------------------------------------------- /tools/quake2/q2map/glfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/glfile.c -------------------------------------------------------------------------------- /tools/quake2/q2map/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/main.c -------------------------------------------------------------------------------- /tools/quake2/q2map/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/map.c -------------------------------------------------------------------------------- /tools/quake2/q2map/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/nodraw.c -------------------------------------------------------------------------------- /tools/quake2/q2map/q2map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/q2map.h -------------------------------------------------------------------------------- /tools/quake2/q2map/qbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/qbsp.c -------------------------------------------------------------------------------- /tools/quake2/q2map/qbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/qbsp.h -------------------------------------------------------------------------------- /tools/quake2/q2map/qrad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/qrad.c -------------------------------------------------------------------------------- /tools/quake2/q2map/qrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/qrad.h -------------------------------------------------------------------------------- /tools/quake2/q2map/qvis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/qvis.c -------------------------------------------------------------------------------- /tools/quake2/q2map/qvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/qvis.h -------------------------------------------------------------------------------- /tools/quake2/q2map/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/trace.c -------------------------------------------------------------------------------- /tools/quake2/q2map/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/q2map/tree.c -------------------------------------------------------------------------------- /tools/quake2/qdata/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/anorms.h -------------------------------------------------------------------------------- /tools/quake2/qdata/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/images.c -------------------------------------------------------------------------------- /tools/quake2/qdata/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/makefile -------------------------------------------------------------------------------- /tools/quake2/qdata/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/models.c -------------------------------------------------------------------------------- /tools/quake2/qdata/qdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/qdata.c -------------------------------------------------------------------------------- /tools/quake2/qdata/qdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/qdata.h -------------------------------------------------------------------------------- /tools/quake2/qdata/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/tables.c -------------------------------------------------------------------------------- /tools/quake2/qdata/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake2/qdata/video.c -------------------------------------------------------------------------------- /tools/quake3/common/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/inout.h -------------------------------------------------------------------------------- /tools/quake3/common/md4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/md4.cpp -------------------------------------------------------------------------------- /tools/quake3/common/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/md4.h -------------------------------------------------------------------------------- /tools/quake3/common/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/miniz.h -------------------------------------------------------------------------------- /tools/quake3/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/mutex.h -------------------------------------------------------------------------------- /tools/quake3/common/qmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/qmath.h -------------------------------------------------------------------------------- /tools/quake3/common/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/unzip.h -------------------------------------------------------------------------------- /tools/quake3/common/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/vfs.cpp -------------------------------------------------------------------------------- /tools/quake3/common/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/common/vfs.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/q3map2/bsp.cpp -------------------------------------------------------------------------------- /tools/quake3/q3map2/fog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/q3map2/fog.cpp -------------------------------------------------------------------------------- /tools/quake3/q3map2/games.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/q3map2/games.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/q3map2/map.cpp -------------------------------------------------------------------------------- /tools/quake3/q3map2/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/q3map2/model.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/q3map2/vis.cpp -------------------------------------------------------------------------------- /tools/quake3/q3map2/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/tools/quake3/q3map2/vis.h -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erysdren/SourceRadiant/HEAD/uncrustify.cfg --------------------------------------------------------------------------------