├── .gitignore ├── CMake ├── DEMCMakeUtils.cmake ├── DEMGame.cmake ├── DEMLow.cmake ├── DEMRPG.cmake ├── requirements.txt ├── tools-vs2017x86.bat ├── tools-vs2019x86.bat ├── tools-vs2022x86.bat ├── update_source_lists.py └── utils │ ├── __init__.py │ └── utils.py ├── CMakeLists.txt ├── DEM ├── Game │ └── src │ │ ├── AI │ │ ├── AILevel.cpp │ │ ├── AILevel.h │ │ ├── AIStateComponent.h │ │ ├── ActionSystems.cpp │ │ ├── Behaviour │ │ │ ├── BehaviourSystems.cpp │ │ │ ├── BehaviourTreeAsset.cpp │ │ │ ├── BehaviourTreeAsset.h │ │ │ ├── BehaviourTreeAssetLoader.cpp │ │ │ ├── BehaviourTreeAssetLoader.h │ │ │ ├── BehaviourTreeComponent.h │ │ │ ├── BehaviourTreePlayer.cpp │ │ │ ├── BehaviourTreePlayer.h │ │ │ └── Nodes │ │ │ │ ├── BehaviourTreeCondition.cpp │ │ │ │ ├── BehaviourTreeCondition.h │ │ │ │ ├── BehaviourTreeExecuteAbility.cpp │ │ │ │ ├── BehaviourTreeExecuteAbility.h │ │ │ │ ├── BehaviourTreeMove.cpp │ │ │ │ ├── BehaviourTreeMove.h │ │ │ │ ├── BehaviourTreeSelectClosestActor.cpp │ │ │ │ ├── BehaviourTreeSelectClosestActor.h │ │ │ │ ├── BehaviourTreeSelectRandomPosition.cpp │ │ │ │ ├── BehaviourTreeSelectRandomPosition.h │ │ │ │ ├── BehaviourTreeSelector.cpp │ │ │ │ ├── BehaviourTreeSelector.h │ │ │ │ ├── BehaviourTreeSequence.cpp │ │ │ │ ├── BehaviourTreeSequence.h │ │ │ │ ├── BehaviourTreeTurn.cpp │ │ │ │ ├── BehaviourTreeTurn.h │ │ │ │ ├── BehaviourTreeWaitTime.cpp │ │ │ │ └── BehaviourTreeWaitTime.h │ │ ├── Blackboard.h │ │ ├── Command.h │ │ ├── CommandQueueComponent.h │ │ ├── CommandStackComponent.h │ │ ├── FormationManager.cpp │ │ ├── FormationManager.h │ │ ├── MoveInteraction.cpp │ │ ├── MoveInteraction.h │ │ ├── Movement │ │ │ ├── CharacterControlSystem.cpp │ │ │ ├── SteerAction.cpp │ │ │ └── SteerAction.h │ │ ├── Navigation │ │ │ ├── NavAgentComponent.h │ │ │ ├── NavAgentSettings.cpp │ │ │ ├── NavAgentSettings.h │ │ │ ├── NavAgentSettingsLoaderHRD.cpp │ │ │ ├── NavAgentSettingsLoaderHRD.h │ │ │ ├── NavControllerComponent.h │ │ │ ├── NavFwd.h │ │ │ ├── NavMap.cpp │ │ │ ├── NavMap.h │ │ │ ├── NavMesh.cpp │ │ │ ├── NavMesh.h │ │ │ ├── NavMeshDebugDraw.cpp │ │ │ ├── NavMeshDebugDraw.h │ │ │ ├── NavMeshLoaderNM.cpp │ │ │ ├── NavMeshLoaderNM.h │ │ │ ├── NavigationSystem.cpp │ │ │ ├── PathRequestQueue.cpp │ │ │ ├── PathRequestQueue.h │ │ │ └── TraversalAction.h │ │ ├── Parameter.h │ │ └── Perception │ │ │ ├── Perception.h │ │ │ ├── PerceptionSystems.cpp │ │ │ ├── SoundSensorComponent.h │ │ │ ├── SoundStimulus.h │ │ │ ├── VisibleComponent.h │ │ │ └── VisionSensorComponent.h │ │ ├── Animation │ │ ├── AnimationComponent.h │ │ ├── TimelineTask.cpp │ │ └── TimelineTask.h │ │ ├── App │ │ ├── AppFSM.cpp │ │ ├── AppFSM.h │ │ ├── AppStateVideo.cpp │ │ ├── AppStateVideo.h │ │ └── StateHandler.h │ │ ├── Game │ │ ├── ECS │ │ │ ├── ComponentObserver.h │ │ │ ├── ComponentStorage.h │ │ │ ├── Components │ │ │ │ └── EventsComponent.h │ │ │ ├── Entity.h │ │ │ ├── EntityMap.h │ │ │ ├── EntityTemplate.h │ │ │ ├── EntityTemplateLoader.cpp │ │ │ ├── EntityTemplateLoader.h │ │ │ ├── GameWorld.cpp │ │ │ └── GameWorld.h │ │ ├── GameLevel.cpp │ │ ├── GameLevel.h │ │ ├── GameSession.cpp │ │ ├── GameSession.h │ │ ├── GameState.h │ │ ├── GameStateManager.cpp │ │ ├── GameStateManager.h │ │ ├── GameVarStorage.h │ │ ├── Interaction │ │ │ ├── Ability.cpp │ │ │ ├── Ability.h │ │ │ ├── AbilityExecutionSystem.cpp │ │ │ ├── AbilityInstance.h │ │ │ ├── Interaction.cpp │ │ │ ├── Interaction.h │ │ │ ├── InteractionContext.h │ │ │ ├── InteractionManager.cpp │ │ │ ├── InteractionManager.h │ │ │ ├── InteractionTool.h │ │ │ ├── ScriptedAbility.cpp │ │ │ ├── ScriptedAbility.h │ │ │ ├── ScriptedInteraction.cpp │ │ │ ├── ScriptedInteraction.h │ │ │ ├── SelectInteraction.cpp │ │ │ ├── SelectInteraction.h │ │ │ ├── SelectableComponent.h │ │ │ ├── Zone.cpp │ │ │ └── Zone.h │ │ ├── Objects │ │ │ ├── SmartObject.cpp │ │ │ ├── SmartObject.h │ │ │ ├── SmartObjectComponent.h │ │ │ ├── SmartObjectLoader.cpp │ │ │ ├── SmartObjectLoader.h │ │ │ └── SmartObjectSystem.cpp │ │ └── SessionVars.h │ │ ├── Physics │ │ ├── CharacterControllerComponent.h │ │ ├── PhysicsSystems.cpp │ │ └── RigidBodyComponent.h │ │ ├── Scene │ │ ├── SceneComponent.h │ │ └── SceneSystems.cpp │ │ └── Scripting │ │ ├── Command.cpp │ │ ├── Command.h │ │ ├── CommandList.cpp │ │ ├── CommandList.h │ │ ├── Condition.cpp │ │ ├── Condition.h │ │ ├── Flow │ │ ├── FlowAsset.h │ │ ├── FlowAssetLoader.cpp │ │ ├── FlowAssetLoader.h │ │ ├── FlowCommon.h │ │ ├── FlowPlayer.cpp │ │ ├── FlowPlayer.h │ │ ├── HubAction.cpp │ │ ├── HubAction.h │ │ ├── LuaStringAction.cpp │ │ ├── LuaStringAction.h │ │ ├── SetVarAction.cpp │ │ └── SetVarAction.h │ │ ├── LogicRegistry.cpp │ │ ├── LogicRegistry.h │ │ ├── ScriptCondition.cpp │ │ ├── ScriptCondition.h │ │ ├── SolGame.cpp │ │ └── SolGame.h ├── Low │ └── src │ │ ├── Animation │ │ ├── AnimationBlender.cpp │ │ ├── AnimationBlender.h │ │ ├── AnimationClip.cpp │ │ ├── AnimationClip.h │ │ ├── AnimationController.cpp │ │ ├── AnimationController.h │ │ ├── AnimationLoaderANM.cpp │ │ ├── AnimationLoaderANM.h │ │ ├── AnimationSampler.cpp │ │ ├── AnimationSampler.h │ │ ├── Graph │ │ │ ├── AnimGraphNode.cpp │ │ │ ├── AnimGraphNode.h │ │ │ ├── BlendSpace1D.cpp │ │ │ ├── BlendSpace1D.h │ │ │ ├── BlendSpace2D.cpp │ │ │ ├── BlendSpace2D.h │ │ │ ├── BoolSelectorNode.cpp │ │ │ ├── BoolSelectorNode.h │ │ │ ├── ClipPlayerNode.cpp │ │ │ ├── ClipPlayerNode.h │ │ │ ├── FloatSelectorNode.cpp │ │ │ ├── FloatSelectorNode.h │ │ │ ├── IntSelectorNode.cpp │ │ │ ├── IntSelectorNode.h │ │ │ ├── SelectorNodeBase.cpp │ │ │ ├── SelectorNodeBase.h │ │ │ ├── SpeedModifierNode.cpp │ │ │ ├── SpeedModifierNode.h │ │ │ ├── StringSelectorNode.cpp │ │ │ └── StringSelectorNode.h │ │ ├── Inertialization.cpp │ │ ├── Inertialization.h │ │ ├── MappedPoseOutput.h │ │ ├── PoseBuffer.cpp │ │ ├── PoseBuffer.h │ │ ├── PoseOutput.h │ │ ├── PoseRecorder.h │ │ ├── Skeleton.cpp │ │ ├── Skeleton.h │ │ ├── SkeletonInfo.cpp │ │ ├── SkeletonInfo.h │ │ ├── StaticPose.cpp │ │ ├── StaticPose.h │ │ └── Timeline │ │ │ ├── AnimatedPoseClip.cpp │ │ │ ├── AnimatedPoseClip.h │ │ │ ├── CompositePoseClip.cpp │ │ │ ├── CompositePoseClip.h │ │ │ ├── EventClip.cpp │ │ │ ├── EventClip.h │ │ │ ├── PoseClipBase.cpp │ │ │ ├── PoseClipBase.h │ │ │ ├── PoseTrack.cpp │ │ │ ├── PoseTrack.h │ │ │ ├── StaticPoseClip.cpp │ │ │ ├── StaticPoseClip.h │ │ │ ├── TimelinePlayer.cpp │ │ │ ├── TimelinePlayer.h │ │ │ ├── TimelineTrack.h │ │ │ ├── TimelineTrackGroup.cpp │ │ │ ├── TimelineTrackGroup.h │ │ │ ├── TimelineTrackLoaderANM.cpp │ │ │ ├── TimelineTrackLoaderANM.h │ │ │ ├── TimelineTrackLoaderHRD.cpp │ │ │ └── TimelineTrackLoaderHRD.h │ │ ├── Core │ │ ├── Application.cpp │ │ ├── Application.h │ │ ├── ApplicationState.h │ │ ├── CoreServer.cpp │ │ ├── CoreServer.h │ │ ├── Factory.cpp │ │ ├── Factory.h │ │ ├── Object.cpp │ │ ├── Object.h │ │ ├── RTTI.h │ │ ├── RTTIBaseClass.h │ │ ├── TimeSource.cpp │ │ └── TimeSource.h │ │ ├── Data │ │ ├── Algorithms.h │ │ ├── ArrayUtils.h │ │ ├── Buffer.cpp │ │ ├── Buffer.h │ │ ├── CategorizationTraits.h │ │ ├── Data.cpp │ │ ├── Data.h │ │ ├── DataArray.cpp │ │ ├── DataArray.h │ │ ├── DataScheme.cpp │ │ ├── DataScheme.h │ │ ├── DynamicEnum.h │ │ ├── Enum.h │ │ ├── FixedArray.h │ │ ├── FixedOrderMap.h │ │ ├── Flags.h │ │ ├── FourCC.h │ │ ├── FunctionTraits.h │ │ ├── HRDParser.cpp │ │ ├── HRDParser.h │ │ ├── HandleArray.h │ │ ├── Hash.h │ │ ├── LineBuffer.h │ │ ├── List.h │ │ ├── LuaTextResolver.cpp │ │ ├── LuaTextResolver.h │ │ ├── MemberAccess.h │ │ ├── Metadata.h │ │ ├── MurmurHash3.h │ │ ├── Param.h │ │ ├── Params.cpp │ │ ├── Params.h │ │ ├── ParamsTextResolver.cpp │ │ ├── ParamsTextResolver.h │ │ ├── ParamsUtils.cpp │ │ ├── ParamsUtils.h │ │ ├── Ptr.h │ │ ├── QuadTree.h │ │ ├── RefCounted.h │ │ ├── Regions.h │ │ ├── RingBuffer.h │ │ ├── SerializeToBinary.h │ │ ├── SerializeToParams.h │ │ ├── Singleton.h │ │ ├── SparseArray.hpp │ │ ├── SparseArray2.hpp │ │ ├── StringID.cpp │ │ ├── StringID.h │ │ ├── StringIDStorage.cpp │ │ ├── StringIDStorage.h │ │ ├── StringTokenizer.h │ │ ├── StringUtils.cpp │ │ ├── StringUtils.h │ │ ├── SuperFastHash.h │ │ ├── TextResolver.cpp │ │ ├── TextResolver.h │ │ ├── Type.h │ │ ├── TypeTraits.h │ │ ├── VarStorage.h │ │ ├── VarStorageTextResolver.h │ │ └── XMLDocument.h │ │ ├── Debug │ │ ├── DebugDraw.cpp │ │ ├── DebugDraw.h │ │ ├── DebugUtils.cpp │ │ ├── DebugUtils.h │ │ ├── LuaConsole.cpp │ │ ├── LuaConsole.h │ │ ├── Profiler.h │ │ ├── RenderPhaseDebugDraw.cpp │ │ ├── RenderPhaseDebugDraw.h │ │ ├── WatcherWindow.cpp │ │ └── WatcherWindow.h │ │ ├── Events │ │ ├── Connection.h │ │ ├── Event.h │ │ ├── EventBase.h │ │ ├── EventDispatcher.cpp │ │ ├── EventDispatcher.h │ │ ├── EventHandler.h │ │ ├── EventID.h │ │ ├── EventNative.h │ │ ├── EventOutput.h │ │ ├── EventOutputBuffer.h │ │ ├── EventOutputDispatcher.h │ │ ├── EventServer.cpp │ │ ├── EventServer.h │ │ ├── EventsFwd.h │ │ └── Signal.h │ │ ├── Frame │ │ ├── CameraAttribute.cpp │ │ ├── CameraAttribute.h │ │ ├── CameraController.cpp │ │ ├── CameraController.h │ │ ├── GPURenderablePicker.cpp │ │ ├── GPURenderablePicker.h │ │ ├── GraphicsResourceManager.cpp │ │ ├── GraphicsResourceManager.h │ │ ├── GraphicsScene.cpp │ │ ├── GraphicsScene.h │ │ ├── LightAttribute.cpp │ │ ├── LightAttribute.h │ │ ├── Lights │ │ │ ├── DirectionalLightAttribute.cpp │ │ │ ├── DirectionalLightAttribute.h │ │ │ ├── IBLAmbientLightAttribute.cpp │ │ │ ├── IBLAmbientLightAttribute.h │ │ │ ├── PointLightAttribute.cpp │ │ │ ├── PointLightAttribute.h │ │ │ ├── SpotLightAttribute.cpp │ │ │ └── SpotLightAttribute.h │ │ ├── RenderPath.cpp │ │ ├── RenderPath.h │ │ ├── RenderPhase.cpp │ │ ├── RenderPhase.h │ │ ├── RenderPhaseGeometry.cpp │ │ ├── RenderPhaseGeometry.h │ │ ├── RenderableAttribute.cpp │ │ ├── RenderableAttribute.h │ │ ├── Renderables │ │ │ ├── ModelAttribute.cpp │ │ │ ├── ModelAttribute.h │ │ │ ├── SkyboxAttribute.cpp │ │ │ ├── SkyboxAttribute.h │ │ │ ├── TerrainAttribute.cpp │ │ │ └── TerrainAttribute.h │ │ ├── SkinAttribute.cpp │ │ ├── SkinAttribute.h │ │ ├── SkinProcessorAttribute.cpp │ │ ├── SkinProcessorAttribute.h │ │ ├── View.cpp │ │ └── View.h │ │ ├── IO │ │ ├── BinaryReader.cpp │ │ ├── BinaryReader.h │ │ ├── BinaryWriter.cpp │ │ ├── BinaryWriter.h │ │ ├── FS │ │ │ ├── FileSystemNPK.cpp │ │ │ ├── FileSystemNPK.h │ │ │ ├── FileSystemNative.cpp │ │ │ ├── FileSystemNative.h │ │ │ ├── NpkTOC.h │ │ │ └── NpkTOCEntry.h │ │ ├── FSBrowser.cpp │ │ ├── FSBrowser.h │ │ ├── FileSystem.h │ │ ├── HRDWriter.cpp │ │ ├── HRDWriter.h │ │ ├── IOFwd.h │ │ ├── IOServer.cpp │ │ ├── IOServer.h │ │ ├── PathUtils.cpp │ │ ├── PathUtils.h │ │ ├── Stream.h │ │ ├── Streams │ │ │ ├── FileStream.cpp │ │ │ ├── FileStream.h │ │ │ ├── MemStream.cpp │ │ │ ├── MemStream.h │ │ │ ├── ScopedStream.cpp │ │ │ └── ScopedStream.h │ │ ├── TextReader.cpp │ │ └── TextReader.h │ │ ├── Input │ │ ├── ControlLayout.cpp │ │ ├── ControlLayout.h │ │ ├── Input.cpp │ │ ├── InputConditionAnyOfEvents.cpp │ │ ├── InputConditionAnyOfEvents.h │ │ ├── InputConditionAnyOfStates.cpp │ │ ├── InputConditionAnyOfStates.h │ │ ├── InputConditionComboEvent.cpp │ │ ├── InputConditionComboEvent.h │ │ ├── InputConditionComboState.cpp │ │ ├── InputConditionComboState.h │ │ ├── InputConditionDown.cpp │ │ ├── InputConditionDown.h │ │ ├── InputConditionEvent.h │ │ ├── InputConditionEventTemplate.cpp │ │ ├── InputConditionEventTemplate.h │ │ ├── InputConditionHold.cpp │ │ ├── InputConditionHold.h │ │ ├── InputConditionMove.cpp │ │ ├── InputConditionMove.h │ │ ├── InputConditionPressed.cpp │ │ ├── InputConditionPressed.h │ │ ├── InputConditionReleased.cpp │ │ ├── InputConditionReleased.h │ │ ├── InputConditionSequence.cpp │ │ ├── InputConditionSequence.h │ │ ├── InputConditionState.h │ │ ├── InputConditionStateTemplate.cpp │ │ ├── InputConditionStateTemplate.h │ │ ├── InputConditionText.cpp │ │ ├── InputConditionText.h │ │ ├── InputConditionUp.cpp │ │ ├── InputConditionUp.h │ │ ├── InputDevice.h │ │ ├── InputEvents.h │ │ ├── InputFwd.h │ │ ├── InputTranslator.cpp │ │ └── InputTranslator.h │ │ ├── Jobs │ │ ├── JobSystem.cpp │ │ ├── JobSystem.h │ │ ├── WorkStealingQueue.h │ │ ├── Worker.cpp │ │ └── Worker.h │ │ ├── Math │ │ ├── AABB.cpp │ │ ├── AABB.h │ │ ├── CameraMath.h │ │ ├── DelaunayTriangulation.hpp │ │ ├── EnvelopeCurve.h │ │ ├── Euler.h │ │ ├── EulerAngles.h │ │ ├── Line.h │ │ ├── Math.cpp │ │ ├── Math.h │ │ ├── Matrix33.cpp │ │ ├── Matrix33.h │ │ ├── Matrix44.cpp │ │ ├── Matrix44.h │ │ ├── MatrixDefs.h │ │ ├── PackedNormal.h │ │ ├── Plane.h │ │ ├── Polar.h │ │ ├── Quaternion.cpp │ │ ├── Quaternion.h │ │ ├── SIMDMath.h │ │ ├── Sphere.h │ │ ├── TransformSRT.cpp │ │ ├── TransformSRT.h │ │ ├── Triangle.h │ │ ├── Vector2.cpp │ │ ├── Vector2.h │ │ ├── Vector3.cpp │ │ ├── Vector3.h │ │ ├── Vector3EnvelopeCurve.h │ │ ├── Vector4.cpp │ │ ├── Vector4.h │ │ └── WELL512.h │ │ ├── Physics │ │ ├── BulletConv.h │ │ ├── CollisionAttribute.cpp │ │ ├── CollisionAttribute.h │ │ ├── CollisionLoaderCDLOD.cpp │ │ ├── CollisionLoaderCDLOD.h │ │ ├── CollisionLoaderHRD.cpp │ │ ├── CollisionLoaderHRD.h │ │ ├── CollisionShape.cpp │ │ ├── CollisionShape.h │ │ ├── HeightfieldShape.cpp │ │ ├── HeightfieldShape.h │ │ ├── MovableCollider.cpp │ │ ├── MovableCollider.h │ │ ├── PhysicsDebugDraw.cpp │ │ ├── PhysicsDebugDraw.h │ │ ├── PhysicsLevel.cpp │ │ ├── PhysicsLevel.h │ │ ├── PhysicsMaterial.h │ │ ├── PhysicsObject.cpp │ │ ├── PhysicsObject.h │ │ ├── RigidBody.cpp │ │ ├── RigidBody.h │ │ ├── RigidBodySet.cpp │ │ ├── RigidBodySet.h │ │ ├── StaticCollider.cpp │ │ ├── StaticCollider.h │ │ ├── StaticMeshShape.cpp │ │ ├── StaticMeshShape.h │ │ └── TickListener.h │ │ ├── Render │ │ ├── AnalyticalLight.h │ │ ├── CDLODData.h │ │ ├── CDLODDataLoader.cpp │ │ ├── CDLODDataLoader.h │ │ ├── ConstantBuffer.h │ │ ├── D3D11 │ │ │ ├── D3D11ConstantBuffer.cpp │ │ │ ├── D3D11ConstantBuffer.h │ │ │ ├── D3D11DepthStencilBuffer.cpp │ │ │ ├── D3D11DepthStencilBuffer.h │ │ │ ├── D3D11DisplayDriver.cpp │ │ │ ├── D3D11DisplayDriver.h │ │ │ ├── D3D11DriverFactory.cpp │ │ │ ├── D3D11DriverFactory.h │ │ │ ├── D3D11GPUDriver.cpp │ │ │ ├── D3D11GPUDriver.h │ │ │ ├── D3D11GPUFence.cpp │ │ │ ├── D3D11GPUFence.h │ │ │ ├── D3D11IndexBuffer.cpp │ │ │ ├── D3D11IndexBuffer.h │ │ │ ├── D3D11RenderState.cpp │ │ │ ├── D3D11RenderState.h │ │ │ ├── D3D11RenderTarget.cpp │ │ │ ├── D3D11RenderTarget.h │ │ │ ├── D3D11Sampler.cpp │ │ │ ├── D3D11Sampler.h │ │ │ ├── D3D11Shader.cpp │ │ │ ├── D3D11Shader.h │ │ │ ├── D3D11SwapChain.cpp │ │ │ ├── D3D11SwapChain.h │ │ │ ├── D3D11Texture.cpp │ │ │ ├── D3D11Texture.h │ │ │ ├── D3D11VertexBuffer.cpp │ │ │ ├── D3D11VertexBuffer.h │ │ │ ├── D3D11VertexLayout.cpp │ │ │ ├── D3D11VertexLayout.h │ │ │ ├── USMShaderMetadata.cpp │ │ │ └── USMShaderMetadata.h │ │ ├── D3D9 │ │ │ ├── D3D9ConstantBuffer.cpp │ │ │ ├── D3D9ConstantBuffer.h │ │ │ ├── D3D9DepthStencilBuffer.cpp │ │ │ ├── D3D9DepthStencilBuffer.h │ │ │ ├── D3D9DisplayDriver.cpp │ │ │ ├── D3D9DisplayDriver.h │ │ │ ├── D3D9DriverFactory.cpp │ │ │ ├── D3D9DriverFactory.h │ │ │ ├── D3D9GPUDriver.cpp │ │ │ ├── D3D9GPUDriver.h │ │ │ ├── D3D9IndexBuffer.cpp │ │ │ ├── D3D9IndexBuffer.h │ │ │ ├── D3D9RenderState.cpp │ │ │ ├── D3D9RenderState.h │ │ │ ├── D3D9RenderTarget.cpp │ │ │ ├── D3D9RenderTarget.h │ │ │ ├── D3D9Sampler.cpp │ │ │ ├── D3D9Sampler.h │ │ │ ├── D3D9Shader.cpp │ │ │ ├── D3D9Shader.h │ │ │ ├── D3D9SwapChain.cpp │ │ │ ├── D3D9SwapChain.h │ │ │ ├── D3D9Texture.cpp │ │ │ ├── D3D9Texture.h │ │ │ ├── D3D9VertexBuffer.cpp │ │ │ ├── D3D9VertexBuffer.h │ │ │ ├── D3D9VertexLayout.cpp │ │ │ ├── D3D9VertexLayout.h │ │ │ ├── DEMD3D9.h │ │ │ ├── SM30ShaderMetadata.cpp │ │ │ └── SM30ShaderMetadata.h │ │ ├── DepthStencilBuffer.h │ │ ├── DisplayDriver.h │ │ ├── DisplayMode.h │ │ ├── Effect.cpp │ │ ├── Effect.h │ │ ├── GPUDriver.cpp │ │ ├── GPUDriver.h │ │ ├── GPUFence.h │ │ ├── ImageBasedLight.cpp │ │ ├── ImageBasedLight.h │ │ ├── ImageUtils.cpp │ │ ├── ImageUtils.h │ │ ├── IndexBuffer.h │ │ ├── Light.h │ │ ├── Material.cpp │ │ ├── Material.h │ │ ├── Mesh.cpp │ │ ├── Mesh.h │ │ ├── MeshData.cpp │ │ ├── MeshData.h │ │ ├── MeshGenerators.cpp │ │ ├── MeshGenerators.h │ │ ├── MeshLoaderMSH.cpp │ │ ├── MeshLoaderMSH.h │ │ ├── MeshLoaderNVX2.cpp │ │ ├── MeshLoaderNVX2.h │ │ ├── Model.cpp │ │ ├── Model.h │ │ ├── ModelRenderer.cpp │ │ ├── ModelRenderer.h │ │ ├── RenderFwd.h │ │ ├── RenderQueue.h │ │ ├── RenderState.h │ │ ├── RenderStateDesc.cpp │ │ ├── RenderStateDesc.h │ │ ├── RenderTarget.h │ │ ├── Renderable.h │ │ ├── Renderer.h │ │ ├── Sampler.h │ │ ├── SamplerDesc.cpp │ │ ├── SamplerDesc.h │ │ ├── Shader.h │ │ ├── ShaderConstantInfo.cpp │ │ ├── ShaderConstantInfo.h │ │ ├── ShaderParamStorage.cpp │ │ ├── ShaderParamStorage.h │ │ ├── ShaderParamTable.cpp │ │ ├── ShaderParamTable.h │ │ ├── SkinInfo.cpp │ │ ├── SkinInfo.h │ │ ├── SkinInfoLoaderSKN.cpp │ │ ├── SkinInfoLoaderSKN.h │ │ ├── Skybox.cpp │ │ ├── Skybox.h │ │ ├── SkyboxRenderer.cpp │ │ ├── SkyboxRenderer.h │ │ ├── SwapChain.cpp │ │ ├── SwapChain.h │ │ ├── Technique.cpp │ │ ├── Technique.h │ │ ├── Terrain.cpp │ │ ├── Terrain.h │ │ ├── TerrainRenderer.cpp │ │ ├── TerrainRenderer.h │ │ ├── Texture.cpp │ │ ├── Texture.h │ │ ├── TextureData.cpp │ │ ├── TextureData.h │ │ ├── TextureLoaderCDLOD.cpp │ │ ├── TextureLoaderCDLOD.h │ │ ├── TextureLoaderDDS.cpp │ │ ├── TextureLoaderDDS.h │ │ ├── TextureLoaderTGA.cpp │ │ ├── TextureLoaderTGA.h │ │ ├── VertexBuffer.h │ │ ├── VertexComponent.h │ │ ├── VertexLayout.cpp │ │ ├── VertexLayout.h │ │ └── VideoDriverFactory.h │ │ ├── Resources │ │ ├── DataAssetLoader.h │ │ ├── Resource.cpp │ │ ├── Resource.h │ │ ├── ResourceCreator.h │ │ ├── ResourceLoader.h │ │ ├── ResourceManager.cpp │ │ └── ResourceManager.h │ │ ├── Scene │ │ ├── LODGroup.cpp │ │ ├── LODGroup.h │ │ ├── NodeAttribute.cpp │ │ ├── NodeAttribute.h │ │ ├── SceneNode.cpp │ │ ├── SceneNode.h │ │ ├── SceneNodeLoaderSCN.cpp │ │ └── SceneNodeLoaderSCN.h │ │ ├── Scripting │ │ ├── LuaEventHandler.cpp │ │ ├── LuaEventHandler.h │ │ ├── ScriptAsset.h │ │ ├── ScriptAssetLoader.cpp │ │ ├── ScriptAssetLoader.h │ │ ├── SolLow.cpp │ │ └── SolLow.h │ │ ├── StdCfg.h │ │ ├── StdDEM.h │ │ ├── System │ │ ├── Allocators │ │ │ ├── HalfSafePool.h │ │ │ └── PoolAllocator.h │ │ ├── Memory.cpp │ │ ├── Memory.h │ │ ├── OSFileSystem.h │ │ ├── OSWindow.h │ │ ├── Platform.h │ │ ├── System.cpp │ │ ├── System.h │ │ ├── SystemEvents.h │ │ └── Win32 │ │ │ ├── InputDeviceWin32.h │ │ │ ├── KeyboardWin32.cpp │ │ │ ├── KeyboardWin32.h │ │ │ ├── MouseWin32.cpp │ │ │ ├── MouseWin32.h │ │ │ ├── OSFileSystemWin32.cpp │ │ │ ├── OSFileSystemWin32.h │ │ │ ├── OSWindowWin32.cpp │ │ │ ├── OSWindowWin32.h │ │ │ ├── PlatformWin32.cpp │ │ │ ├── PlatformWin32.h │ │ │ └── SystemWin32.cpp │ │ ├── UI │ │ ├── CEGUI │ │ │ ├── DEMGeometryBuffer.cpp │ │ │ ├── DEMGeometryBuffer.h │ │ │ ├── DEMLogger.cpp │ │ │ ├── DEMLogger.h │ │ │ ├── DEMRenderTarget.cpp │ │ │ ├── DEMRenderTarget.h │ │ │ ├── DEMRenderer.cpp │ │ │ ├── DEMRenderer.h │ │ │ ├── DEMResourceProvider.cpp │ │ │ ├── DEMResourceProvider.h │ │ │ ├── DEMShaderWrapper.cpp │ │ │ ├── DEMShaderWrapper.h │ │ │ ├── DEMTexture.cpp │ │ │ ├── DEMTexture.h │ │ │ ├── DEMTextureTarget.cpp │ │ │ ├── DEMTextureTarget.h │ │ │ ├── DEMViewportTarget.cpp │ │ │ └── DEMViewportTarget.h │ │ ├── RenderPhaseGUI.cpp │ │ ├── RenderPhaseGUI.h │ │ ├── UIContext.cpp │ │ ├── UIContext.h │ │ ├── UIFwd.h │ │ ├── UIServer.cpp │ │ ├── UIServer.h │ │ ├── UIWindow.cpp │ │ └── UIWindow.h │ │ ├── Util │ │ ├── CRC.cpp │ │ ├── MD5.cpp │ │ ├── MD5.h │ │ ├── PFLoop.h │ │ ├── PFLoopAngular.h │ │ ├── PFLoopIntDrv.h │ │ ├── PFLoopQuat.h │ │ ├── PerlinNoise.cpp │ │ ├── TimedFilter.h │ │ ├── UtilFwd.h │ │ └── Utils.h │ │ └── Video │ │ ├── OGGTheoraPlayer.cpp │ │ ├── OGGTheoraPlayer.h │ │ ├── VideoPlayer.cpp │ │ ├── VideoPlayer.h │ │ ├── VideoServer.cpp │ │ └── VideoServer.h └── RPG │ └── src │ ├── AI │ └── PerceptionSystems.cpp │ ├── Character │ ├── AppearanceAsset.h │ ├── AppearanceComponent.h │ ├── Archetype.cpp │ ├── Archetype.h │ ├── BoolStat.cpp │ ├── BoolStat.h │ ├── CharacterSheet.cpp │ ├── CharacterSheet.h │ ├── CharacterStatLogic.cpp │ ├── CharacterStatLogic.h │ ├── NumericStat.cpp │ ├── NumericStat.h │ ├── ParameterModifier.h │ ├── SkillsComponent.h │ ├── SocialComponent.h │ ├── StatsComponent.h │ ├── StatusEffect.h │ ├── StatusEffectLogic.cpp │ └── StatusEffectLogic.h │ ├── Combat │ ├── AttackAbility.cpp │ ├── AttackAbility.h │ ├── CombatUtils.cpp │ ├── CombatUtils.h │ ├── Damage.h │ ├── DestructibleComponent.h │ └── WeaponComponent.h │ ├── Conversation │ ├── BarterAction.cpp │ ├── BarterAction.h │ ├── ChoiceAction.cpp │ ├── ChoiceAction.h │ ├── ConversationManager.cpp │ ├── ConversationManager.h │ ├── ConversationSystem.cpp │ ├── DisengageFromConversationAction.cpp │ ├── DisengageFromConversationAction.h │ ├── EngageInConversationAction.cpp │ ├── EngageInConversationAction.h │ ├── PhraseAction.cpp │ ├── PhraseAction.h │ ├── TalkAbility.cpp │ ├── TalkAbility.h │ └── TalkingComponent.h │ ├── Items │ ├── ArmorComponent.h │ ├── EquipmentChangesComponent.h │ ├── EquipmentComponent.h │ ├── EquipmentScheme.h │ ├── EquipmentSystem.cpp │ ├── EquippableComponent.h │ ├── EquippedComponent.h │ ├── ItemComponent.h │ ├── ItemContainerComponent.h │ ├── ItemCountMonitorComponent.h │ ├── ItemList.cpp │ ├── ItemList.h │ ├── ItemManager.cpp │ ├── ItemManager.h │ ├── ItemStackComponent.h │ ├── ItemUtils.cpp │ ├── ItemUtils.h │ ├── LockpickComponent.h │ ├── PickItemAbility.cpp │ ├── PickItemAbility.h │ ├── VendorComponent.h │ ├── VendorLogic.cpp │ └── VendorLogic.h │ ├── Objects │ ├── LockComponent.h │ ├── LockpickAbility.cpp │ ├── LockpickAbility.h │ └── OwnedComponent.h │ ├── Quests │ ├── QuestData.h │ ├── QuestManager.cpp │ └── QuestManager.h │ ├── Social │ ├── SocialManager.cpp │ ├── SocialManager.h │ ├── SocialUtils.cpp │ └── SocialUtils.h │ └── World │ ├── WorldManager.cpp │ └── WorldManager.h ├── Deps ├── .gitignore ├── CEGUI │ ├── CMakeLists.txt │ ├── COPYING │ ├── README.md │ ├── _ReadmeDep.txt │ ├── cegui │ │ ├── CEGUI-IRRLICHT.pc.in │ │ ├── CEGUI-LUA.pc.in │ │ ├── CEGUI-NULL.pc.in │ │ ├── CEGUI-OGRE.pc.in │ │ ├── CEGUI-OPENGL.pc.in │ │ ├── CEGUI-OPENGL3.pc.in │ │ ├── CEGUI.pc.in │ │ ├── include │ │ │ └── CEGUI │ │ │ │ ├── Affector.h │ │ │ │ ├── AndroidUtils.h │ │ │ │ ├── Animation.h │ │ │ │ ├── AnimationInstance.h │ │ │ │ ├── AnimationManager.h │ │ │ │ ├── Animation_xmlHandler.h │ │ │ │ ├── AspectMode.h │ │ │ │ ├── Base.h │ │ │ │ ├── BitmapImage.h │ │ │ │ ├── BoundSlot.h │ │ │ │ ├── CEGUI.h │ │ │ │ ├── ChainedXMLHandler.h │ │ │ │ ├── Clipboard.h │ │ │ │ ├── Colour.h │ │ │ │ ├── ColourRect.h │ │ │ │ ├── CommonDialogs │ │ │ │ ├── ColourPicker │ │ │ │ │ ├── ColourPicker.h │ │ │ │ │ ├── Controls.h │ │ │ │ │ ├── Conversions.h │ │ │ │ │ └── Types.h │ │ │ │ └── Module.h │ │ │ │ ├── CompositeResourceProvider.h │ │ │ │ ├── Config.h.in │ │ │ │ ├── Config_xmlHandler.h │ │ │ │ ├── CoordConverter.h │ │ │ │ ├── DataContainer.h │ │ │ │ ├── DefaultLogger.h │ │ │ │ ├── DefaultResourceProvider.h │ │ │ │ ├── DynamicModule.h │ │ │ │ ├── Element.h │ │ │ │ ├── Event.h │ │ │ │ ├── EventArgs.h │ │ │ │ ├── EventSet.h │ │ │ │ ├── Exceptions.h │ │ │ │ ├── FactoryModule.h │ │ │ │ ├── FactoryRegisterer.h │ │ │ │ ├── FontManager.h │ │ │ │ ├── ForwardRefs.h │ │ │ │ ├── FreeFunctionSlot.h │ │ │ │ ├── FunctorCopySlot.h │ │ │ │ ├── FunctorPointerSlot.h │ │ │ │ ├── FunctorReferenceBinder.h │ │ │ │ ├── FunctorReferenceSlot.h │ │ │ │ ├── GUIContext.h │ │ │ │ ├── GUILayout_xmlHandler.h │ │ │ │ ├── GeometryBuffer.h │ │ │ │ ├── GlobalEventSet.h │ │ │ │ ├── HorizontalAlignment.h │ │ │ │ ├── IconvStringTranscoder.h │ │ │ │ ├── Image.h │ │ │ │ ├── ImageCodec.h │ │ │ │ ├── ImageCodecModules │ │ │ │ ├── Corona │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ ├── DevIL │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ ├── FreeImage │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ ├── PVR │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ ├── SDL2 │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ ├── SILLY │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ ├── STB │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ └── TGA │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ └── ImageCodecModule.h │ │ │ │ ├── ImageFactory.h │ │ │ │ ├── ImageManager.h │ │ │ │ ├── InjectedInputReceiver.h │ │ │ │ ├── InputEvent.h │ │ │ │ ├── Interpolator.h │ │ │ │ ├── IteratorBase.h │ │ │ │ ├── KeyFrame.h │ │ │ │ ├── LinkedEvent.h │ │ │ │ ├── Logger.h │ │ │ │ ├── MemberFunctionSlot.h │ │ │ │ ├── MinizipResourceProvider.h │ │ │ │ ├── ModuleConfig.h.in │ │ │ │ ├── PCRERegexMatcher.h │ │ │ │ ├── Property.h │ │ │ │ ├── PropertyHelper.h │ │ │ │ ├── PropertySet.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rectf.h │ │ │ │ ├── RefCounted.h │ │ │ │ ├── RegexMatcher.h │ │ │ │ ├── RenderEffect.h │ │ │ │ ├── RenderEffectFactory.h │ │ │ │ ├── RenderEffectManager.h │ │ │ │ ├── RenderMaterial.h │ │ │ │ ├── RenderQueue.h │ │ │ │ ├── RenderTarget.h │ │ │ │ ├── Renderer.h │ │ │ │ ├── RendererModules │ │ │ │ ├── Direct3D11 │ │ │ │ │ ├── GeometryBuffer.h │ │ │ │ │ ├── RenderTarget.h │ │ │ │ │ ├── Renderer.h │ │ │ │ │ ├── Shader.h │ │ │ │ │ ├── ShaderWrapper.h │ │ │ │ │ ├── Texture.h │ │ │ │ │ ├── TextureTarget.h │ │ │ │ │ └── ViewportTarget.h │ │ │ │ ├── DirectFB │ │ │ │ │ ├── GeometryBuffer.h │ │ │ │ │ ├── RenderTarget.h │ │ │ │ │ ├── Renderer.h │ │ │ │ │ └── Texture.h │ │ │ │ ├── Irrlicht │ │ │ │ │ ├── EventPusher.h │ │ │ │ │ ├── GeometryBuffer.h │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ ├── MemoryFile.h │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── RenderTarget.h │ │ │ │ │ ├── Renderer.h │ │ │ │ │ ├── RendererDef.h │ │ │ │ │ ├── ResourceProvider.h │ │ │ │ │ ├── Texture.h │ │ │ │ │ ├── TextureTarget.h │ │ │ │ │ └── WindowTarget.h │ │ │ │ ├── Null │ │ │ │ │ ├── GeometryBuffer.h │ │ │ │ │ ├── RenderTarget.h │ │ │ │ │ ├── Renderer.h │ │ │ │ │ ├── ShaderWrapper.h │ │ │ │ │ ├── Texture.h │ │ │ │ │ └── TextureTarget.h │ │ │ │ ├── Ogre │ │ │ │ │ ├── GeometryBuffer.h │ │ │ │ │ ├── ImageCodec.h │ │ │ │ │ ├── OgreMacros.h │ │ │ │ │ ├── RenderTarget.h │ │ │ │ │ ├── RenderTarget2.h │ │ │ │ │ ├── Renderer.h │ │ │ │ │ ├── ResourceProvider.h │ │ │ │ │ ├── ShaderWrapper.h │ │ │ │ │ ├── Texture.h │ │ │ │ │ ├── TextureTarget.h │ │ │ │ │ └── WindowTarget.h │ │ │ │ ├── OpenGL │ │ │ │ │ ├── ApplePBTextureTarget.h │ │ │ │ │ ├── GL.h │ │ │ │ │ ├── GL3FBOTextureTarget.h │ │ │ │ │ ├── GL3GeometryBuffer.h │ │ │ │ │ ├── GL3Renderer.h │ │ │ │ │ ├── GL3Shader.h │ │ │ │ │ ├── GL3StateChangeWrapper.h │ │ │ │ │ ├── GL3Texture.h │ │ │ │ │ ├── GLBaseShaderWrapper.h │ │ │ │ │ ├── GLES2FBOTextureTarget.h │ │ │ │ │ ├── GLES2GeometryBuffer.h │ │ │ │ │ ├── GLES2Renderer.h │ │ │ │ │ ├── GLES2Texture.h │ │ │ │ │ ├── GLFBOTextureTarget.h │ │ │ │ │ ├── GLGeometryBuffer.h │ │ │ │ │ ├── GLRenderer.h │ │ │ │ │ ├── GLShaderWrapper.h │ │ │ │ │ ├── GLTexture.h │ │ │ │ │ ├── GLXPBTextureTarget.h │ │ │ │ │ ├── GeometryBufferBase.h │ │ │ │ │ ├── RenderTarget.h │ │ │ │ │ ├── RendererBase.h │ │ │ │ │ ├── Shader.h │ │ │ │ │ ├── ShaderManager.h │ │ │ │ │ ├── StateChangeWrapper.h │ │ │ │ │ ├── Texture.h │ │ │ │ │ ├── TextureTarget.h │ │ │ │ │ ├── ViewportTarget.h │ │ │ │ │ └── WGLPBTextureTarget.h │ │ │ │ └── OpenGLES │ │ │ │ │ ├── FBOTextureTarget.h │ │ │ │ │ ├── GLES.h │ │ │ │ │ ├── GeometryBuffer.h │ │ │ │ │ ├── RenderTarget.h │ │ │ │ │ ├── Renderer.h │ │ │ │ │ ├── Texture.h │ │ │ │ │ └── ViewportTarget.h │ │ │ │ ├── RenderingContext.h │ │ │ │ ├── RenderingSurface.h │ │ │ │ ├── RenderingWindow.h │ │ │ │ ├── ResourceEventSet.h │ │ │ │ ├── ResourceProvider.h │ │ │ │ ├── Scheme.h │ │ │ │ ├── SchemeManager.h │ │ │ │ ├── Scheme_xmlHandler.h │ │ │ │ ├── ScriptModule.h │ │ │ │ ├── ScriptModules │ │ │ │ └── Lua │ │ │ │ │ ├── Functor.h │ │ │ │ │ └── ScriptModule.h │ │ │ │ ├── ShaderParameterBindings.h │ │ │ │ ├── ShaderWrapper.h │ │ │ │ ├── SharedStringStream.h │ │ │ │ ├── Singleton.h │ │ │ │ ├── Sizef.h │ │ │ │ ├── SlotFunctorBase.h │ │ │ │ ├── StdRegexMatcher.h │ │ │ │ ├── StreamHelper.h │ │ │ │ ├── String.h │ │ │ │ ├── StringTranscoder.h │ │ │ │ ├── SubscriberSlot.h │ │ │ │ ├── System.h │ │ │ │ ├── Texture.h │ │ │ │ ├── TextureTarget.h │ │ │ │ ├── TplInterpolators.h │ │ │ │ ├── TplProperty.h │ │ │ │ ├── TplWRFactoryRegisterer.h │ │ │ │ ├── TplWindowFactory.h │ │ │ │ ├── TplWindowFactoryRegisterer.h │ │ │ │ ├── TplWindowProperty.h │ │ │ │ ├── TplWindowRendererFactory.h │ │ │ │ ├── TplWindowRendererProperty.h │ │ │ │ ├── TypedProperty.h │ │ │ │ ├── UDim.h │ │ │ │ ├── URect.h │ │ │ │ ├── USize.h │ │ │ │ ├── UVector.h │ │ │ │ ├── UndoHandler.h │ │ │ │ ├── Version.h.in │ │ │ │ ├── Vertex.h │ │ │ │ ├── VerticalAlignment.h │ │ │ │ ├── Win32ClipboardProvider.h │ │ │ │ ├── Win32StringTranscoder.h │ │ │ │ ├── Window.h │ │ │ │ ├── WindowFactory.h │ │ │ │ ├── WindowFactoryManager.h │ │ │ │ ├── WindowManager.h │ │ │ │ ├── WindowNavigator.h │ │ │ │ ├── WindowRenderer.h │ │ │ │ ├── WindowRendererManager.h │ │ │ │ ├── WindowRendererSets │ │ │ │ └── Core │ │ │ │ │ ├── Button.h │ │ │ │ │ ├── Default.h │ │ │ │ │ ├── Editbox.h │ │ │ │ │ ├── FrameWindow.h │ │ │ │ │ ├── ItemEntry.h │ │ │ │ │ ├── ItemViewRenderer.h │ │ │ │ │ ├── ListHeader.h │ │ │ │ │ ├── ListHeaderSegment.h │ │ │ │ │ ├── ListView.h │ │ │ │ │ ├── MenuItem.h │ │ │ │ │ ├── Menubar.h │ │ │ │ │ ├── Module.h │ │ │ │ │ ├── MultiColumnList.h │ │ │ │ │ ├── PopupMenu.h │ │ │ │ │ ├── ProgressBar.h │ │ │ │ │ ├── ScrollablePane.h │ │ │ │ │ ├── Scrollbar.h │ │ │ │ │ ├── Slider.h │ │ │ │ │ ├── Static.h │ │ │ │ │ ├── StaticImage.h │ │ │ │ │ ├── StaticText.h │ │ │ │ │ ├── TabButton.h │ │ │ │ │ ├── TabControl.h │ │ │ │ │ ├── Titlebar.h │ │ │ │ │ ├── ToggleButton.h │ │ │ │ │ ├── Tooltip.h │ │ │ │ │ └── TreeView.h │ │ │ │ ├── XMLAttributes.h │ │ │ │ ├── XMLHandler.h │ │ │ │ ├── XMLParser.h │ │ │ │ ├── XMLParserModules │ │ │ │ ├── Expat │ │ │ │ │ ├── XMLParser.h │ │ │ │ │ └── XMLParserModule.h │ │ │ │ ├── Libxml2 │ │ │ │ │ ├── XMLParser.h │ │ │ │ │ └── XMLParserModule.h │ │ │ │ ├── PugiXML │ │ │ │ │ ├── XMLParser.h │ │ │ │ │ └── XMLParserModule.h │ │ │ │ ├── TinyXML2 │ │ │ │ │ ├── XMLParser.h │ │ │ │ │ └── XMLParserModule.h │ │ │ │ └── Xerces │ │ │ │ │ ├── XMLParser.h │ │ │ │ │ ├── XMLParserModule.h │ │ │ │ │ └── XMLParserProperties.h │ │ │ │ ├── XMLSerializer.h │ │ │ │ ├── XmlResourceExistsAction.h │ │ │ │ ├── falagard │ │ │ │ ├── ComponentBase.h │ │ │ │ ├── Dimensions.h │ │ │ │ ├── Enums.h │ │ │ │ ├── EventAction.h │ │ │ │ ├── EventLinkDefinition.h │ │ │ │ ├── FalagardPropertyBase.h │ │ │ │ ├── FormattingSetting.h │ │ │ │ ├── FrameComponent.h │ │ │ │ ├── ImageryComponent.h │ │ │ │ ├── ImagerySection.h │ │ │ │ ├── LayerSpecification.h │ │ │ │ ├── NamedArea.h │ │ │ │ ├── NamedDefinitionCollator.h │ │ │ │ ├── PropertyDefinition.h │ │ │ │ ├── PropertyDefinitionBase.h │ │ │ │ ├── PropertyInitialiser.h │ │ │ │ ├── PropertyLinkDefinition.h │ │ │ │ ├── SectionSpecification.h │ │ │ │ ├── StateImagery.h │ │ │ │ ├── TextComponent.h │ │ │ │ ├── WidgetComponent.h │ │ │ │ ├── WidgetLookFeel.h │ │ │ │ ├── WidgetLookManager.h │ │ │ │ ├── XMLEnumHelper.h │ │ │ │ └── XMLHandler.h │ │ │ │ ├── svg │ │ │ │ ├── SVGBasicShape.h │ │ │ │ ├── SVGData.h │ │ │ │ ├── SVGDataManager.h │ │ │ │ ├── SVGImage.h │ │ │ │ ├── SVGPaintStyle.h │ │ │ │ └── SVGTesselator.h │ │ │ │ ├── text │ │ │ │ ├── BidiVisualMapping.h │ │ │ │ ├── DefaultParagraphDirection.h │ │ │ │ ├── Font.h │ │ │ │ ├── FontGlyph.h │ │ │ │ ├── FontSizeUnit.h │ │ │ │ ├── Font_xmlHandler.h │ │ │ │ ├── FreeTypeFont.h │ │ │ │ ├── FreeTypeFontGlyph.h │ │ │ │ ├── LegacyTextParser.h │ │ │ │ ├── PixmapFont.h │ │ │ │ ├── RenderedText.h │ │ │ │ ├── RenderedTextElement.h │ │ │ │ ├── RenderedTextImage.h │ │ │ │ ├── RenderedTextParagraph.h │ │ │ │ ├── RenderedTextStyle.h │ │ │ │ ├── RenderedTextWidget.h │ │ │ │ ├── TextParser.h │ │ │ │ └── TextUtils.h │ │ │ │ ├── views │ │ │ │ ├── All.h │ │ │ │ ├── GenericItemModel.h │ │ │ │ ├── ItemModel.h │ │ │ │ ├── ItemView.h │ │ │ │ ├── ListView.h │ │ │ │ ├── StandardItemModel.h │ │ │ │ └── TreeView.h │ │ │ │ └── widgets │ │ │ │ ├── All.h │ │ │ │ ├── ButtonBase.h │ │ │ │ ├── ComboDropList.h │ │ │ │ ├── Combobox.h │ │ │ │ ├── DefaultWindow.h │ │ │ │ ├── DragContainer.h │ │ │ │ ├── Editbox.h │ │ │ │ ├── EditboxBase.h │ │ │ │ ├── FrameWindow.h │ │ │ │ ├── GridLayoutContainer.h │ │ │ │ ├── HorizontalLayoutContainer.h │ │ │ │ ├── ItemEntry.h │ │ │ │ ├── ItemListBase.h │ │ │ │ ├── LayoutContainer.h │ │ │ │ ├── ListHeader.h │ │ │ │ ├── ListHeaderSegment.h │ │ │ │ ├── ListWidget.h │ │ │ │ ├── ListboxItem.h │ │ │ │ ├── ListboxTextItem.h │ │ │ │ ├── MenuBase.h │ │ │ │ ├── MenuItem.h │ │ │ │ ├── Menubar.h │ │ │ │ ├── MultiColumnList.h │ │ │ │ ├── MultiLineEditbox.h │ │ │ │ ├── PopupMenu.h │ │ │ │ ├── ProgressBar.h │ │ │ │ ├── PushButton.h │ │ │ │ ├── RadioButton.h │ │ │ │ ├── ScrollablePane.h │ │ │ │ ├── Scrollbar.h │ │ │ │ ├── ScrolledContainer.h │ │ │ │ ├── Slider.h │ │ │ │ ├── Spinner.h │ │ │ │ ├── TabButton.h │ │ │ │ ├── TabControl.h │ │ │ │ ├── Thumb.h │ │ │ │ ├── Titlebar.h │ │ │ │ ├── ToggleButton.h │ │ │ │ ├── Tooltip.h │ │ │ │ ├── TreeWidget.h │ │ │ │ └── VerticalLayoutContainer.h │ │ └── src │ │ │ ├── Affector.cpp │ │ │ ├── AndroidUtils.cpp │ │ │ ├── Animation.cpp │ │ │ ├── AnimationInstance.cpp │ │ │ ├── AnimationManager.cpp │ │ │ ├── Animation_xmlHandler.cpp │ │ │ ├── BitmapImage.cpp │ │ │ ├── BoundSlot.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ChainedXMLHandler.cpp │ │ │ ├── Clipboard.cpp │ │ │ ├── Colour.cpp │ │ │ ├── ColourRect.cpp │ │ │ ├── CommonDialogs │ │ │ ├── CMakeLists.txt │ │ │ ├── ColourPicker │ │ │ │ ├── ColourPicker.cpp │ │ │ │ ├── Controls.cpp │ │ │ │ ├── Conversions.cpp │ │ │ │ └── Types.cpp │ │ │ └── Module.cpp │ │ │ ├── CompositeResourceProvider.cpp │ │ │ ├── Config_xmlHandler.cpp │ │ │ ├── CoordConverter.cpp │ │ │ ├── DataContainer.cpp │ │ │ ├── DefaultLogger.cpp │ │ │ ├── DefaultResourceProvider.cpp │ │ │ ├── DynamicModule.cpp │ │ │ ├── Element.cpp │ │ │ ├── Event.cpp │ │ │ ├── EventSet.cpp │ │ │ ├── Exceptions.cpp │ │ │ ├── FactoryModule.cpp │ │ │ ├── FactoryRegisterer.cpp │ │ │ ├── FontManager.cpp │ │ │ ├── GUIContext.cpp │ │ │ ├── GUILayout_xmlHandler.cpp │ │ │ ├── GeometryBuffer.cpp │ │ │ ├── GlobalEventSet.cpp │ │ │ ├── IconvStringTranscoder.cpp │ │ │ ├── Image.cpp │ │ │ ├── ImageCodec.cpp │ │ │ ├── ImageCodecModules │ │ │ ├── CMakeLists.txt │ │ │ ├── Corona │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ └── ImageCodecModule.cpp │ │ │ ├── DevIL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ └── ImageCodecModule.cpp │ │ │ ├── FreeImage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ └── ImageCodecModule.cpp │ │ │ ├── PVR │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ └── ImageCodecModule.cpp │ │ │ ├── SDL2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ └── ImageCodecModule.cpp │ │ │ ├── SILLY │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ └── ImageCodecModule.cpp │ │ │ ├── STB │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ ├── ImageCodecModule.cpp │ │ │ │ ├── stb_image.cpp │ │ │ │ └── stb_image.h │ │ │ └── TGA │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ImageCodec.cpp │ │ │ │ └── ImageCodecModule.cpp │ │ │ ├── ImageManager.cpp │ │ │ ├── InputEvent.cpp │ │ │ ├── KeyFrame.cpp │ │ │ ├── LinkedEvent.cpp │ │ │ ├── Logger.cpp │ │ │ ├── MinizipResourceProvider.cpp │ │ │ ├── PCRERegexMatcher.cpp │ │ │ ├── Property.cpp │ │ │ ├── PropertyHelper.cpp │ │ │ ├── PropertySet.cpp │ │ │ ├── Quaternion.cpp │ │ │ ├── RenderEffectManager.cpp │ │ │ ├── RenderMaterial.cpp │ │ │ ├── RenderQueue.cpp │ │ │ ├── RenderTarget.cpp │ │ │ ├── Renderer.cpp │ │ │ ├── RendererModules │ │ │ ├── CMakeLists.txt │ │ │ ├── Direct3D11 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GeometryBuffer.cpp │ │ │ │ ├── RenderTarget.cpp │ │ │ │ ├── Renderer.cpp │ │ │ │ ├── Shader.cpp │ │ │ │ ├── ShaderWrapper.cpp │ │ │ │ ├── Shaders.inl │ │ │ │ ├── Texture.cpp │ │ │ │ ├── TextureTarget.cpp │ │ │ │ └── ViewportTarget.cpp │ │ │ ├── DirectFB │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GeometryBuffer.cpp │ │ │ │ ├── RenderTarget.cpp │ │ │ │ ├── Renderer.cpp │ │ │ │ └── Texture.cpp │ │ │ ├── Irrlicht │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GeometryBuffer.cpp │ │ │ │ ├── ImageCodec.cpp │ │ │ │ ├── MemoryFile.cpp │ │ │ │ ├── RenderTarget.cpp │ │ │ │ ├── Renderer.cpp │ │ │ │ ├── ResourceProvider.cpp │ │ │ │ ├── Texture.cpp │ │ │ │ ├── TextureTarget.cpp │ │ │ │ └── WindowTarget.cpp │ │ │ ├── Null │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GeometryBuffer.cpp │ │ │ │ ├── RenderTarget.cpp │ │ │ │ ├── Renderer.cpp │ │ │ │ ├── ShaderWrapper.cpp │ │ │ │ ├── Texture.cpp │ │ │ │ └── TextureTarget.cpp │ │ │ ├── Ogre │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GeometryBuffer.cpp │ │ │ │ ├── ImageCodec.cpp │ │ │ │ ├── RenderTarget.cpp │ │ │ │ ├── RenderTarget2.cpp │ │ │ │ ├── Renderer.cpp │ │ │ │ ├── ResourceProvider.cpp │ │ │ │ ├── ShaderWrapper.cpp │ │ │ │ ├── Shaders.inl │ │ │ │ ├── Texture.cpp │ │ │ │ ├── TextureTarget.cpp │ │ │ │ └── WindowTarget.cpp │ │ │ ├── OpenGL │ │ │ │ ├── ApplePBTextureTarget.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GL.cpp │ │ │ │ ├── GL3FBOTextureTarget.cpp │ │ │ │ ├── GL3GeometryBuffer.cpp │ │ │ │ ├── GL3Renderer.cpp │ │ │ │ ├── GL3Shader.cpp │ │ │ │ ├── GL3StateChangeWrapper.cpp │ │ │ │ ├── GL3Texture.cpp │ │ │ │ ├── GLBaseShaderWrapper.cpp │ │ │ │ ├── GLES2FBOTextureTarget.cpp │ │ │ │ ├── GLES2GeometryBuffer.cpp │ │ │ │ ├── GLES2Renderer.cpp │ │ │ │ ├── GLES2Texture.cpp │ │ │ │ ├── GLFBOTextureTarget.cpp │ │ │ │ ├── GLGeometryBuffer.cpp │ │ │ │ ├── GLRenderer.cpp │ │ │ │ ├── GLShaderWrapper.cpp │ │ │ │ ├── GLTexture.cpp │ │ │ │ ├── GLXPBTextureTarget.cpp │ │ │ │ ├── GeometryBufferBase.cpp │ │ │ │ ├── RenderTarget.cpp │ │ │ │ ├── RendererBase.cpp │ │ │ │ ├── Shader.cpp │ │ │ │ ├── ShaderManager.cpp │ │ │ │ ├── Shaders.inl │ │ │ │ ├── StateChangeWrapper.cpp │ │ │ │ ├── Texture.cpp │ │ │ │ ├── TextureTarget.cpp │ │ │ │ ├── ViewportTarget.cpp │ │ │ │ └── WGLPBTextureTarget.cpp │ │ │ └── OpenGLES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FBOTextureTarget.cpp │ │ │ │ ├── GeometryBuffer.cpp │ │ │ │ ├── RenderTarget.cpp │ │ │ │ ├── Renderer.cpp │ │ │ │ ├── Texture.cpp │ │ │ │ └── ViewportTarget.cpp │ │ │ ├── RenderingSurface.cpp │ │ │ ├── RenderingWindow.cpp │ │ │ ├── ResourceEventSet.cpp │ │ │ ├── Scheme.cpp │ │ │ ├── SchemeManager.cpp │ │ │ ├── Scheme_xmlHandler.cpp │ │ │ ├── ScriptModule.cpp │ │ │ ├── ScriptModules │ │ │ ├── CMakeLists.txt │ │ │ ├── Lua │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Functor.cpp │ │ │ │ ├── ScriptModule.cpp │ │ │ │ ├── lua_CEGUI.cpp │ │ │ │ ├── package │ │ │ │ │ ├── Affector.pkg │ │ │ │ │ ├── Animation.pkg │ │ │ │ │ ├── AnimationInstance.pkg │ │ │ │ │ ├── AnimationManager.pkg │ │ │ │ │ ├── Basic.pkg │ │ │ │ │ ├── BasicImage.pkg │ │ │ │ │ ├── CEGUI.pkg │ │ │ │ │ ├── CoordConverter.pkg │ │ │ │ │ ├── Element.pkg │ │ │ │ │ ├── EventSet.pkg │ │ │ │ │ ├── Font.pkg │ │ │ │ │ ├── FontManager.pkg │ │ │ │ │ ├── GUIContext.pkg │ │ │ │ │ ├── GeometryBuffer.pkg │ │ │ │ │ ├── HelperFunctions.pkg │ │ │ │ │ ├── Image.pkg │ │ │ │ │ ├── ImageManager.pkg │ │ │ │ │ ├── InjectedInputReceiver.pkg │ │ │ │ │ ├── InputEvent.pkg │ │ │ │ │ ├── Interpolator.pkg │ │ │ │ │ ├── Iterators.pkg │ │ │ │ │ ├── Key.pkg │ │ │ │ │ ├── KeyFrame.pkg │ │ │ │ │ ├── Logger.pkg │ │ │ │ │ ├── MouseCursor.pkg │ │ │ │ │ ├── OutStream.pkg │ │ │ │ │ ├── PropertyHelper.pkg │ │ │ │ │ ├── README │ │ │ │ │ ├── RegexMatcher.pkg │ │ │ │ │ ├── RenderEffect.pkg │ │ │ │ │ ├── RenderQueue.pkg │ │ │ │ │ ├── RenderTarget.pkg │ │ │ │ │ ├── Renderer.pkg │ │ │ │ │ ├── RenderingContext.pkg │ │ │ │ │ ├── RenderingSurface.pkg │ │ │ │ │ ├── RenderingWindow.pkg │ │ │ │ │ ├── Scheme.pkg │ │ │ │ │ ├── SchemeManager.pkg │ │ │ │ │ ├── SimpleTimer.pkg │ │ │ │ │ ├── StringTranscoder.pkg │ │ │ │ │ ├── System.pkg │ │ │ │ │ ├── SystemKeys.pkg │ │ │ │ │ ├── Texture.pkg │ │ │ │ │ ├── TextureTarget.pkg │ │ │ │ │ ├── UnifiedCoordSystem.pkg │ │ │ │ │ ├── Vertex.pkg │ │ │ │ │ ├── Window.pkg │ │ │ │ │ ├── WindowFactoryManager.pkg │ │ │ │ │ ├── WindowManager.pkg │ │ │ │ │ ├── elements │ │ │ │ │ │ ├── ButtonBase.pkg │ │ │ │ │ │ ├── ComboDropList.pkg │ │ │ │ │ │ ├── Combobox.pkg │ │ │ │ │ │ ├── DragContainer.pkg │ │ │ │ │ │ ├── Editbox.pkg │ │ │ │ │ │ ├── FrameWindow.pkg │ │ │ │ │ │ ├── GUISheet.pkg │ │ │ │ │ │ ├── GridLayoutContainer.pkg │ │ │ │ │ │ ├── HorizontalLayoutContainer.pkg │ │ │ │ │ │ ├── ItemEntry.pkg │ │ │ │ │ │ ├── ItemListBase.pkg │ │ │ │ │ │ ├── ItemListbox.pkg │ │ │ │ │ │ ├── LayoutContainer.pkg │ │ │ │ │ │ ├── ListHeader.pkg │ │ │ │ │ │ ├── ListHeaderSegment.pkg │ │ │ │ │ │ ├── Listbox.pkg │ │ │ │ │ │ ├── ListboxItem.pkg │ │ │ │ │ │ ├── ListboxTextItem.pkg │ │ │ │ │ │ ├── MenuBase.pkg │ │ │ │ │ │ ├── MenuItem.pkg │ │ │ │ │ │ ├── Menubar.pkg │ │ │ │ │ │ ├── MultiColumnList.pkg │ │ │ │ │ │ ├── MultiLineEditbox.pkg │ │ │ │ │ │ ├── PopupMenu.pkg │ │ │ │ │ │ ├── ProgressBar.pkg │ │ │ │ │ │ ├── PushButton.pkg │ │ │ │ │ │ ├── RadioButton.pkg │ │ │ │ │ │ ├── ScrollablePane.pkg │ │ │ │ │ │ ├── Scrollbar.pkg │ │ │ │ │ │ ├── ScrolledContainer.pkg │ │ │ │ │ │ ├── ScrolledItemListBase.pkg │ │ │ │ │ │ ├── SequentialLayoutContainer.pkg │ │ │ │ │ │ ├── Slider.pkg │ │ │ │ │ │ ├── Spinner.pkg │ │ │ │ │ │ ├── TabButton.pkg │ │ │ │ │ │ ├── TabControl.pkg │ │ │ │ │ │ ├── Thumb.pkg │ │ │ │ │ │ ├── Titlebar.pkg │ │ │ │ │ │ ├── ToggleButton.pkg │ │ │ │ │ │ ├── Tooltip.pkg │ │ │ │ │ │ ├── Tree.pkg │ │ │ │ │ │ ├── TreeItem.pkg │ │ │ │ │ │ └── VerticalLayoutContainer.pkg │ │ │ │ │ ├── exceptions.lua │ │ │ │ │ ├── falagard │ │ │ │ │ │ ├── Dimension.pkg │ │ │ │ │ │ ├── Enums.pkg │ │ │ │ │ │ ├── FalagardComponentBase.pkg │ │ │ │ │ │ ├── FrameComponent.pkg │ │ │ │ │ │ ├── ImageryComponent.pkg │ │ │ │ │ │ ├── ImagerySection.pkg │ │ │ │ │ │ ├── LayerSpecification.pkg │ │ │ │ │ │ ├── NamedArea.pkg │ │ │ │ │ │ ├── PropertyDefinition.pkg │ │ │ │ │ │ ├── PropertyDefinitionBase.pkg │ │ │ │ │ │ ├── PropertyInitialiser.pkg │ │ │ │ │ │ ├── PropertyLinkDefinition.pkg │ │ │ │ │ │ ├── SectionSpecification.pkg │ │ │ │ │ │ ├── StateImagery.pkg │ │ │ │ │ │ ├── TextComponent.pkg │ │ │ │ │ │ ├── WidgetComponent.pkg │ │ │ │ │ │ ├── WidgetLookFeel.pkg │ │ │ │ │ │ └── WidgetLookManager.pkg │ │ │ │ │ └── make.bat │ │ │ │ ├── required.cpp │ │ │ │ ├── required.h │ │ │ │ └── support │ │ │ │ │ └── tolua++bin │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── MANUAL │ │ │ │ │ ├── README │ │ │ │ │ ├── lua │ │ │ │ │ ├── all.lua │ │ │ │ │ ├── array.lua │ │ │ │ │ ├── basic.lua │ │ │ │ │ ├── class.lua │ │ │ │ │ ├── clean.lua │ │ │ │ │ ├── code.lua │ │ │ │ │ ├── compat-5.1.lua │ │ │ │ │ ├── compat.lua │ │ │ │ │ ├── container.lua │ │ │ │ │ ├── custom.lua │ │ │ │ │ ├── custom_hide.lua │ │ │ │ │ ├── declaration.lua │ │ │ │ │ ├── define.lua │ │ │ │ │ ├── doit.lua │ │ │ │ │ ├── enumerate.lua │ │ │ │ │ ├── feature.lua │ │ │ │ │ ├── function.lua │ │ │ │ │ ├── module.lua │ │ │ │ │ ├── namespace.lua │ │ │ │ │ ├── operator.lua │ │ │ │ │ ├── package.lua │ │ │ │ │ ├── typedef.lua │ │ │ │ │ ├── variable.lua │ │ │ │ │ └── verbatim.lua │ │ │ │ │ ├── remake_pkg.bat │ │ │ │ │ ├── remake_pkg.sh │ │ │ │ │ ├── tolua.c │ │ │ │ │ ├── tolua_scons.pkg │ │ │ │ │ ├── toluabind.c │ │ │ │ │ └── toluabind.h │ │ │ ├── Python │ │ │ │ └── bindings │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── distutils │ │ │ │ │ ├── PyCEGUI │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── fake.py │ │ │ │ │ ├── README │ │ │ │ │ ├── WINDOWS_ONLY │ │ │ │ │ └── setup.py │ │ │ │ │ ├── generate.py │ │ │ │ │ ├── generators │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cegui_base.py │ │ │ │ │ ├── common_utils.py │ │ │ │ │ ├── extract_documentation.py │ │ │ │ │ ├── include │ │ │ │ │ │ ├── python_CEGUI.h │ │ │ │ │ │ ├── python_CEGUINullRenderer.h │ │ │ │ │ │ ├── python_CEGUIOgreRenderer.h │ │ │ │ │ │ └── python_CEGUIOpenGLRenderer.h │ │ │ │ │ ├── null_renderer.py │ │ │ │ │ ├── ogre_renderer.py │ │ │ │ │ └── opengl_renderer.py │ │ │ │ │ └── output │ │ │ │ │ ├── CEGUI │ │ │ │ │ ├── AbsoluteDim.pypp.cpp │ │ │ │ │ ├── AbsoluteDim.pypp.hpp │ │ │ │ │ ├── ActivationEventArgs.pypp.cpp │ │ │ │ │ ├── ActivationEventArgs.pypp.hpp │ │ │ │ │ ├── Affector.pypp.cpp │ │ │ │ │ ├── Affector.pypp.hpp │ │ │ │ │ ├── Animation.pypp.cpp │ │ │ │ │ ├── Animation.pypp.hpp │ │ │ │ │ ├── AnimationEventArgs.pypp.cpp │ │ │ │ │ ├── AnimationEventArgs.pypp.hpp │ │ │ │ │ ├── AnimationInstance.pypp.cpp │ │ │ │ │ ├── AnimationInstance.pypp.hpp │ │ │ │ │ ├── AnimationManager.pypp.cpp │ │ │ │ │ ├── AnimationManager.pypp.hpp │ │ │ │ │ ├── AnimationNameIterator.pypp.cpp │ │ │ │ │ ├── AnimationNameIterator.pypp.hpp │ │ │ │ │ ├── BaseDim.pypp.cpp │ │ │ │ │ ├── BaseDim.pypp.hpp │ │ │ │ │ ├── BasicImage.pypp.cpp │ │ │ │ │ ├── BasicImage.pypp.hpp │ │ │ │ │ ├── BasicRenderedStringParser.pypp.cpp │ │ │ │ │ ├── BasicRenderedStringParser.pypp.hpp │ │ │ │ │ ├── BoundSlot.pypp.cpp │ │ │ │ │ ├── BoundSlot.pypp.hpp │ │ │ │ │ ├── ButtonBase.pypp.cpp │ │ │ │ │ ├── ButtonBase.pypp.hpp │ │ │ │ │ ├── CentredRenderedString.pypp.cpp │ │ │ │ │ ├── CentredRenderedString.pypp.hpp │ │ │ │ │ ├── Clipboard.pypp.cpp │ │ │ │ │ ├── Clipboard.pypp.hpp │ │ │ │ │ ├── Colour.pypp.cpp │ │ │ │ │ ├── Colour.pypp.hpp │ │ │ │ │ ├── ColourRect.pypp.cpp │ │ │ │ │ ├── ColourRect.pypp.hpp │ │ │ │ │ ├── ComboDropList.pypp.cpp │ │ │ │ │ ├── ComboDropList.pypp.hpp │ │ │ │ │ ├── Combobox.pypp.cpp │ │ │ │ │ ├── Combobox.pypp.hpp │ │ │ │ │ ├── ComponentArea.pypp.cpp │ │ │ │ │ ├── ComponentArea.pypp.hpp │ │ │ │ │ ├── ComponentList.pypp.cpp │ │ │ │ │ ├── ComponentList.pypp.hpp │ │ │ │ │ ├── Connection.pypp.cpp │ │ │ │ │ ├── Connection.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_7f0012c4899354432f095ef9bb577046.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_7f0012c4899354432f095ef9bb577046.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_937e880515ad590c17d4b2b82a347310.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_937e880515ad590c17d4b2b82a347310.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_99d0247943ea008baba14993d63dd301.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_99d0247943ea008baba14993d63dd301.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_ccf46e19ae28e4742a13388873833720.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_ccf46e19ae28e4742a13388873833720.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae.pypp.hpp │ │ │ │ │ ├── ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533.pypp.cpp │ │ │ │ │ ├── ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533.pypp.hpp │ │ │ │ │ ├── CoordConverter.pypp.cpp │ │ │ │ │ ├── CoordConverter.pypp.hpp │ │ │ │ │ ├── DefaultLogger.pypp.cpp │ │ │ │ │ ├── DefaultLogger.pypp.hpp │ │ │ │ │ ├── DefaultResourceProvider.pypp.cpp │ │ │ │ │ ├── DefaultResourceProvider.pypp.hpp │ │ │ │ │ ├── DefaultWindow.pypp.cpp │ │ │ │ │ ├── DefaultWindow.pypp.hpp │ │ │ │ │ ├── Dimension.pypp.cpp │ │ │ │ │ ├── Dimension.pypp.hpp │ │ │ │ │ ├── DisplayEventArgs.pypp.cpp │ │ │ │ │ ├── DisplayEventArgs.pypp.hpp │ │ │ │ │ ├── DragContainer.pypp.cpp │ │ │ │ │ ├── DragContainer.pypp.hpp │ │ │ │ │ ├── DragDropEventArgs.pypp.cpp │ │ │ │ │ ├── DragDropEventArgs.pypp.hpp │ │ │ │ │ ├── Editbox.pypp.cpp │ │ │ │ │ ├── Editbox.pypp.hpp │ │ │ │ │ ├── Element.pypp.cpp │ │ │ │ │ ├── Element.pypp.hpp │ │ │ │ │ ├── ElementEventArgs.pypp.cpp │ │ │ │ │ ├── ElementEventArgs.pypp.hpp │ │ │ │ │ ├── Event.pypp.cpp │ │ │ │ │ ├── Event.pypp.hpp │ │ │ │ │ ├── EventAction.pypp.cpp │ │ │ │ │ ├── EventAction.pypp.hpp │ │ │ │ │ ├── EventActionIterator.pypp.cpp │ │ │ │ │ ├── EventActionIterator.pypp.hpp │ │ │ │ │ ├── EventArgs.pypp.cpp │ │ │ │ │ ├── EventArgs.pypp.hpp │ │ │ │ │ ├── EventIterator.pypp.cpp │ │ │ │ │ ├── EventIterator.pypp.hpp │ │ │ │ │ ├── EventLinkDefinition.pypp.cpp │ │ │ │ │ ├── EventLinkDefinition.pypp.hpp │ │ │ │ │ ├── EventLinkDefinitionIterator.pypp.cpp │ │ │ │ │ ├── EventLinkDefinitionIterator.pypp.hpp │ │ │ │ │ ├── EventLinkDefinitionMap.pypp.cpp │ │ │ │ │ ├── EventLinkDefinitionMap.pypp.hpp │ │ │ │ │ ├── EventSet.pypp.cpp │ │ │ │ │ ├── EventSet.pypp.hpp │ │ │ │ │ ├── Exception.pypp.cpp │ │ │ │ │ ├── Exception.pypp.hpp │ │ │ │ │ ├── FalagardComponentBase.pypp.cpp │ │ │ │ │ ├── FalagardComponentBase.pypp.hpp │ │ │ │ │ ├── FalagardMappingIterator.pypp.cpp │ │ │ │ │ ├── FalagardMappingIterator.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseBool.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseBool.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseColour.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseColour.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseColourRect.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseColourRect.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseColourUBox.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseColourUBox.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseColourUDim.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseColourUDim.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseColourURect.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseColourURect.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseColourUVector2.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseColourUVector2.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseFloat.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseFloat.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseFont.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseFont.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseHorizontalFormatting.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseHorizontalFormatting.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseHorizontalTextFormatting.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseHorizontalTextFormatting.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseImage.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseImage.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseRectf.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseRectf.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseSizef.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseSizef.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseString.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseString.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseUint.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseUint.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseVector2f.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseVector2f.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseVerticalFormatting.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseVerticalFormatting.pypp.hpp │ │ │ │ │ ├── FalagardPropertyBaseVerticalTextFormatting.pypp.cpp │ │ │ │ │ ├── FalagardPropertyBaseVerticalTextFormatting.pypp.hpp │ │ │ │ │ ├── FalagardXMLHelper.pypp.cpp │ │ │ │ │ ├── FalagardXMLHelper.pypp.hpp │ │ │ │ │ ├── Font.pypp.cpp │ │ │ │ │ ├── Font.pypp.hpp │ │ │ │ │ ├── FontDim.pypp.cpp │ │ │ │ │ ├── FontDim.pypp.hpp │ │ │ │ │ ├── FontEventArgs.pypp.cpp │ │ │ │ │ ├── FontEventArgs.pypp.hpp │ │ │ │ │ ├── FontGlyph.pypp.cpp │ │ │ │ │ ├── FontGlyph.pypp.hpp │ │ │ │ │ ├── FontIterator.pypp.cpp │ │ │ │ │ ├── FontIterator.pypp.hpp │ │ │ │ │ ├── FontManager.pypp.cpp │ │ │ │ │ ├── FontManager.pypp.hpp │ │ │ │ │ ├── FrameComponent.pypp.cpp │ │ │ │ │ ├── FrameComponent.pypp.hpp │ │ │ │ │ ├── FrameComponentIterator.pypp.cpp │ │ │ │ │ ├── FrameComponentIterator.pypp.hpp │ │ │ │ │ ├── FrameComponentVector.pypp.cpp │ │ │ │ │ ├── FrameComponentVector.pypp.hpp │ │ │ │ │ ├── FrameWindow.pypp.cpp │ │ │ │ │ ├── FrameWindow.pypp.hpp │ │ │ │ │ ├── GUIContext.pypp.cpp │ │ │ │ │ ├── GUIContext.pypp.hpp │ │ │ │ │ ├── GUIContextEventArgs.pypp.cpp │ │ │ │ │ ├── GUIContextEventArgs.pypp.hpp │ │ │ │ │ ├── GUIContextRenderTargetEventArgs.pypp.cpp │ │ │ │ │ ├── GUIContextRenderTargetEventArgs.pypp.hpp │ │ │ │ │ ├── GeometryBuffer.pypp.cpp │ │ │ │ │ ├── GeometryBuffer.pypp.hpp │ │ │ │ │ ├── GlobalEventSet.pypp.cpp │ │ │ │ │ ├── GlobalEventSet.pypp.hpp │ │ │ │ │ ├── GridLayoutContainer.pypp.cpp │ │ │ │ │ ├── GridLayoutContainer.pypp.hpp │ │ │ │ │ ├── HeaderSequenceEventArgs.pypp.cpp │ │ │ │ │ ├── HeaderSequenceEventArgs.pypp.hpp │ │ │ │ │ ├── HorizontalLayoutContainer.pypp.cpp │ │ │ │ │ ├── HorizontalLayoutContainer.pypp.hpp │ │ │ │ │ ├── Image.pypp.cpp │ │ │ │ │ ├── Image.pypp.hpp │ │ │ │ │ ├── ImageCodec.pypp.cpp │ │ │ │ │ ├── ImageCodec.pypp.hpp │ │ │ │ │ ├── ImageDim.pypp.cpp │ │ │ │ │ ├── ImageDim.pypp.hpp │ │ │ │ │ ├── ImageIterator.pypp.cpp │ │ │ │ │ ├── ImageIterator.pypp.hpp │ │ │ │ │ ├── ImageManager.pypp.cpp │ │ │ │ │ ├── ImageManager.pypp.hpp │ │ │ │ │ ├── ImagePropertyDim.pypp.cpp │ │ │ │ │ ├── ImagePropertyDim.pypp.hpp │ │ │ │ │ ├── ImageryComponent.pypp.cpp │ │ │ │ │ ├── ImageryComponent.pypp.hpp │ │ │ │ │ ├── ImageryComponentIterator.pypp.cpp │ │ │ │ │ ├── ImageryComponentIterator.pypp.hpp │ │ │ │ │ ├── ImageryComponentVector.pypp.cpp │ │ │ │ │ ├── ImageryComponentVector.pypp.hpp │ │ │ │ │ ├── ImageryIterator.pypp.cpp │ │ │ │ │ ├── ImageryIterator.pypp.hpp │ │ │ │ │ ├── ImagerySection.pypp.cpp │ │ │ │ │ ├── ImagerySection.pypp.hpp │ │ │ │ │ ├── ImagerySectionMap.pypp.cpp │ │ │ │ │ ├── ImagerySectionMap.pypp.hpp │ │ │ │ │ ├── Interpolator.pypp.cpp │ │ │ │ │ ├── Interpolator.pypp.hpp │ │ │ │ │ ├── ItemEntry.pypp.cpp │ │ │ │ │ ├── ItemEntry.pypp.hpp │ │ │ │ │ ├── ItemListBase.pypp.cpp │ │ │ │ │ ├── ItemListBase.pypp.hpp │ │ │ │ │ ├── ItemListbox.pypp.cpp │ │ │ │ │ ├── ItemListbox.pypp.hpp │ │ │ │ │ ├── Key.pypp.cpp │ │ │ │ │ ├── Key.pypp.hpp │ │ │ │ │ ├── KeyEventArgs.pypp.cpp │ │ │ │ │ ├── KeyEventArgs.pypp.hpp │ │ │ │ │ ├── KeyFrame.pypp.cpp │ │ │ │ │ ├── KeyFrame.pypp.hpp │ │ │ │ │ ├── LBItemList.pypp.cpp │ │ │ │ │ ├── LBItemList.pypp.hpp │ │ │ │ │ ├── LayerIterator.pypp.cpp │ │ │ │ │ ├── LayerIterator.pypp.hpp │ │ │ │ │ ├── LayerSpecification.pypp.cpp │ │ │ │ │ ├── LayerSpecification.pypp.hpp │ │ │ │ │ ├── LayerSpecificationVector.pypp.cpp │ │ │ │ │ ├── LayerSpecificationVector.pypp.hpp │ │ │ │ │ ├── LayoutContainer.pypp.cpp │ │ │ │ │ ├── LayoutContainer.pypp.hpp │ │ │ │ │ ├── LineList.pypp.cpp │ │ │ │ │ ├── LineList.pypp.hpp │ │ │ │ │ ├── LinkTargetIterator.pypp.cpp │ │ │ │ │ ├── LinkTargetIterator.pypp.hpp │ │ │ │ │ ├── LinkedEventArgs.pypp.cpp │ │ │ │ │ ├── LinkedEventArgs.pypp.hpp │ │ │ │ │ ├── ListHeader.pypp.cpp │ │ │ │ │ ├── ListHeader.pypp.hpp │ │ │ │ │ ├── ListHeaderSegment.pypp.cpp │ │ │ │ │ ├── ListHeaderSegment.pypp.hpp │ │ │ │ │ ├── Listbox.pypp.cpp │ │ │ │ │ ├── Listbox.pypp.hpp │ │ │ │ │ ├── ListboxItem.pypp.cpp │ │ │ │ │ ├── ListboxItem.pypp.hpp │ │ │ │ │ ├── ListboxTextItem.pypp.cpp │ │ │ │ │ ├── ListboxTextItem.pypp.hpp │ │ │ │ │ ├── LoadableUIElementIterator.pypp.cpp │ │ │ │ │ ├── LoadableUIElementIterator.pypp.hpp │ │ │ │ │ ├── Logger.pypp.cpp │ │ │ │ │ ├── Logger.pypp.hpp │ │ │ │ │ ├── MCLGridRef.pypp.cpp │ │ │ │ │ ├── MCLGridRef.pypp.hpp │ │ │ │ │ ├── MenuBase.pypp.cpp │ │ │ │ │ ├── MenuBase.pypp.hpp │ │ │ │ │ ├── MenuItem.pypp.cpp │ │ │ │ │ ├── MenuItem.pypp.hpp │ │ │ │ │ ├── Menubar.pypp.cpp │ │ │ │ │ ├── Menubar.pypp.hpp │ │ │ │ │ ├── MouseCursor.pypp.cpp │ │ │ │ │ ├── MouseCursor.pypp.hpp │ │ │ │ │ ├── MouseCursorEventArgs.pypp.cpp │ │ │ │ │ ├── MouseCursorEventArgs.pypp.hpp │ │ │ │ │ ├── MouseEventArgs.pypp.cpp │ │ │ │ │ ├── MouseEventArgs.pypp.hpp │ │ │ │ │ ├── MultiColumnList.pypp.cpp │ │ │ │ │ ├── MultiColumnList.pypp.hpp │ │ │ │ │ ├── MultiLineEditbox.pypp.cpp │ │ │ │ │ ├── MultiLineEditbox.pypp.hpp │ │ │ │ │ ├── NamedArea.pypp.cpp │ │ │ │ │ ├── NamedArea.pypp.hpp │ │ │ │ │ ├── NamedAreaIterator.pypp.cpp │ │ │ │ │ ├── NamedAreaIterator.pypp.hpp │ │ │ │ │ ├── NamedAreaMap.pypp.cpp │ │ │ │ │ ├── NamedAreaMap.pypp.hpp │ │ │ │ │ ├── NamedXMLResourceManagerFont.pypp.cpp │ │ │ │ │ ├── NamedXMLResourceManagerFont.pypp.hpp │ │ │ │ │ ├── NamedXMLResourceManagerScheme.pypp.cpp │ │ │ │ │ ├── NamedXMLResourceManagerScheme.pypp.hpp │ │ │ │ │ ├── OperatorDim.pypp.cpp │ │ │ │ │ ├── OperatorDim.pypp.hpp │ │ │ │ │ ├── PopupMenu.pypp.cpp │ │ │ │ │ ├── PopupMenu.pypp.hpp │ │ │ │ │ ├── ProgressBar.pypp.cpp │ │ │ │ │ ├── ProgressBar.pypp.hpp │ │ │ │ │ ├── Property.pypp.cpp │ │ │ │ │ ├── Property.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionBase.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionBase.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionBaseMap.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionBaseMap.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionBool.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionBool.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionColour.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionColour.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionColourRect.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionColourRect.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionColourUBox.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionColourUBox.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionColourUDim.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionColourUDim.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionColourURect.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionColourURect.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionColourUVector2.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionColourUVector2.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionFloat.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionFloat.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionFont.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionFont.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionHorizontalFormatting.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionHorizontalFormatting.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionHorizontalTextFormatting.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionHorizontalTextFormatting.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionImage.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionImage.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionIterator.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionIterator.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionRectf.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionRectf.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionSizef.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionSizef.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionString.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionString.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionUint.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionUint.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionVector2f.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionVector2f.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionVerticalFormatting.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionVerticalFormatting.pypp.hpp │ │ │ │ │ ├── PropertyDefinitionVerticalTextFormatting.pypp.cpp │ │ │ │ │ ├── PropertyDefinitionVerticalTextFormatting.pypp.hpp │ │ │ │ │ ├── PropertyDim.pypp.cpp │ │ │ │ │ ├── PropertyDim.pypp.hpp │ │ │ │ │ ├── PropertyHelper.pypp.cpp │ │ │ │ │ ├── PropertyHelper.pypp.hpp │ │ │ │ │ ├── PropertyInitialiser.pypp.cpp │ │ │ │ │ ├── PropertyInitialiser.pypp.hpp │ │ │ │ │ ├── PropertyInitialiserIterator.pypp.cpp │ │ │ │ │ ├── PropertyInitialiserIterator.pypp.hpp │ │ │ │ │ ├── PropertyInitialiserMap.pypp.cpp │ │ │ │ │ ├── PropertyInitialiserMap.pypp.hpp │ │ │ │ │ ├── PropertyInitialiserVector.pypp.cpp │ │ │ │ │ ├── PropertyInitialiserVector.pypp.hpp │ │ │ │ │ ├── PropertyIterator.pypp.cpp │ │ │ │ │ ├── PropertyIterator.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionBool.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionBool.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionColour.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionColour.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionColourRect.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionColourRect.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionColourUBox.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionColourUBox.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionColourUDim.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionColourUDim.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionColourURect.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionColourURect.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionColourUVector2.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionColourUVector2.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionFloat.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionFloat.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionFont.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionFont.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionHorizontalFormatting.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionHorizontalFormatting.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionHorizontalTextFormatting.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionHorizontalTextFormatting.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionImage.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionImage.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionRectf.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionRectf.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionSizef.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionSizef.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionString.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionString.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionUint.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionUint.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionVector2f.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionVector2f.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionVerticalFormatting.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionVerticalFormatting.pypp.hpp │ │ │ │ │ ├── PropertyLinkDefinitionVerticalTextFormatting.pypp.cpp │ │ │ │ │ ├── PropertyLinkDefinitionVerticalTextFormatting.pypp.hpp │ │ │ │ │ ├── PropertyReceiver.pypp.cpp │ │ │ │ │ ├── PropertyReceiver.pypp.hpp │ │ │ │ │ ├── PropertySet.pypp.cpp │ │ │ │ │ ├── PropertySet.pypp.hpp │ │ │ │ │ ├── PushButton.pypp.cpp │ │ │ │ │ ├── PushButton.pypp.hpp │ │ │ │ │ ├── PyCEGUI.main.cpp │ │ │ │ │ ├── PyCEGUI_enumerations.pypp.cpp │ │ │ │ │ ├── PyCEGUI_enumerations.pypp.hpp │ │ │ │ │ ├── Quaternion.pypp.cpp │ │ │ │ │ ├── Quaternion.pypp.hpp │ │ │ │ │ ├── RadioButton.pypp.cpp │ │ │ │ │ ├── RadioButton.pypp.hpp │ │ │ │ │ ├── RawDataContainer.pypp.cpp │ │ │ │ │ ├── RawDataContainer.pypp.hpp │ │ │ │ │ ├── Rectf.pypp.cpp │ │ │ │ │ ├── Rectf.pypp.hpp │ │ │ │ │ ├── RegexMatchStateEventArgs.pypp.cpp │ │ │ │ │ ├── RegexMatchStateEventArgs.pypp.hpp │ │ │ │ │ ├── RegexMatcher.pypp.cpp │ │ │ │ │ ├── RegexMatcher.pypp.hpp │ │ │ │ │ ├── RenderEffect.pypp.cpp │ │ │ │ │ ├── RenderEffect.pypp.hpp │ │ │ │ │ ├── RenderEffectFactory.pypp.cpp │ │ │ │ │ ├── RenderEffectFactory.pypp.hpp │ │ │ │ │ ├── RenderEffectManager.pypp.cpp │ │ │ │ │ ├── RenderEffectManager.pypp.hpp │ │ │ │ │ ├── RenderQueue.pypp.cpp │ │ │ │ │ ├── RenderQueue.pypp.hpp │ │ │ │ │ ├── RenderQueueEventArgs.pypp.cpp │ │ │ │ │ ├── RenderQueueEventArgs.pypp.hpp │ │ │ │ │ ├── RenderTarget.pypp.cpp │ │ │ │ │ ├── RenderTarget.pypp.hpp │ │ │ │ │ ├── RenderTargetEventArgs.pypp.cpp │ │ │ │ │ ├── RenderTargetEventArgs.pypp.hpp │ │ │ │ │ ├── Renderer.pypp.cpp │ │ │ │ │ ├── Renderer.pypp.hpp │ │ │ │ │ ├── RenderingContext.pypp.cpp │ │ │ │ │ ├── RenderingContext.pypp.hpp │ │ │ │ │ ├── RenderingSurface.pypp.cpp │ │ │ │ │ ├── RenderingSurface.pypp.hpp │ │ │ │ │ ├── RenderingWindow.pypp.cpp │ │ │ │ │ ├── RenderingWindow.pypp.hpp │ │ │ │ │ ├── ResourceEventArgs.pypp.cpp │ │ │ │ │ ├── ResourceEventArgs.pypp.hpp │ │ │ │ │ ├── ResourceEventSet.pypp.cpp │ │ │ │ │ ├── ResourceEventSet.pypp.hpp │ │ │ │ │ ├── ResourceProvider.pypp.cpp │ │ │ │ │ ├── ResourceProvider.pypp.hpp │ │ │ │ │ ├── Scheme.pypp.cpp │ │ │ │ │ ├── Scheme.pypp.hpp │ │ │ │ │ ├── SchemeIterator.pypp.cpp │ │ │ │ │ ├── SchemeIterator.pypp.hpp │ │ │ │ │ ├── SchemeManager.pypp.cpp │ │ │ │ │ ├── SchemeManager.pypp.hpp │ │ │ │ │ ├── ScriptModule.pypp.cpp │ │ │ │ │ ├── ScriptModule.pypp.hpp │ │ │ │ │ ├── ScrollablePane.pypp.cpp │ │ │ │ │ ├── ScrollablePane.pypp.hpp │ │ │ │ │ ├── Scrollbar.pypp.cpp │ │ │ │ │ ├── Scrollbar.pypp.hpp │ │ │ │ │ ├── ScrolledContainer.pypp.cpp │ │ │ │ │ ├── ScrolledContainer.pypp.hpp │ │ │ │ │ ├── ScrolledItemListBase.pypp.cpp │ │ │ │ │ ├── ScrolledItemListBase.pypp.hpp │ │ │ │ │ ├── SectionIterator.pypp.cpp │ │ │ │ │ ├── SectionIterator.pypp.hpp │ │ │ │ │ ├── SectionSpecification.pypp.cpp │ │ │ │ │ ├── SectionSpecification.pypp.hpp │ │ │ │ │ ├── SectionSpecificationVector.pypp.cpp │ │ │ │ │ ├── SectionSpecificationVector.pypp.hpp │ │ │ │ │ ├── SequentialLayoutContainer.pypp.cpp │ │ │ │ │ ├── SequentialLayoutContainer.pypp.hpp │ │ │ │ │ ├── SimpleTimer.pypp.cpp │ │ │ │ │ ├── SimpleTimer.pypp.hpp │ │ │ │ │ ├── SingletonAnimationManager.pypp.cpp │ │ │ │ │ ├── SingletonAnimationManager.pypp.hpp │ │ │ │ │ ├── SingletonFontManager.pypp.cpp │ │ │ │ │ ├── SingletonFontManager.pypp.hpp │ │ │ │ │ ├── SingletonGlobalEventSet.pypp.cpp │ │ │ │ │ ├── SingletonGlobalEventSet.pypp.hpp │ │ │ │ │ ├── SingletonImageManager.pypp.cpp │ │ │ │ │ ├── SingletonImageManager.pypp.hpp │ │ │ │ │ ├── SingletonLogger.pypp.cpp │ │ │ │ │ ├── SingletonLogger.pypp.hpp │ │ │ │ │ ├── SingletonRenderEffectManager.pypp.cpp │ │ │ │ │ ├── SingletonRenderEffectManager.pypp.hpp │ │ │ │ │ ├── SingletonSchemeManager.pypp.cpp │ │ │ │ │ ├── SingletonSchemeManager.pypp.hpp │ │ │ │ │ ├── SingletonSystem.pypp.cpp │ │ │ │ │ ├── SingletonSystem.pypp.hpp │ │ │ │ │ ├── SingletonWidgetLookManager.pypp.cpp │ │ │ │ │ ├── SingletonWidgetLookManager.pypp.hpp │ │ │ │ │ ├── SingletonWindowFactoryManager.pypp.cpp │ │ │ │ │ ├── SingletonWindowFactoryManager.pypp.hpp │ │ │ │ │ ├── SingletonWindowManager.pypp.cpp │ │ │ │ │ ├── SingletonWindowManager.pypp.hpp │ │ │ │ │ ├── SingletonWindowRendererManager.pypp.cpp │ │ │ │ │ ├── SingletonWindowRendererManager.pypp.hpp │ │ │ │ │ ├── Sizef.pypp.cpp │ │ │ │ │ ├── Sizef.pypp.hpp │ │ │ │ │ ├── Slider.pypp.cpp │ │ │ │ │ ├── Slider.pypp.hpp │ │ │ │ │ ├── Spinner.pypp.cpp │ │ │ │ │ ├── Spinner.pypp.hpp │ │ │ │ │ ├── StateImagery.pypp.cpp │ │ │ │ │ ├── StateImagery.pypp.hpp │ │ │ │ │ ├── StateImageryMap.pypp.cpp │ │ │ │ │ ├── StateImageryMap.pypp.hpp │ │ │ │ │ ├── StateIterator.pypp.cpp │ │ │ │ │ ├── StateIterator.pypp.hpp │ │ │ │ │ ├── StdPairCEGUIImageImageFactory.pypp.cpp │ │ │ │ │ ├── StdPairCEGUIImageImageFactory.pypp.hpp │ │ │ │ │ ├── StdPairCEGUIStringString.pypp.cpp │ │ │ │ │ ├── StdPairCEGUIStringString.pypp.hpp │ │ │ │ │ ├── StdPairFloatFloat.pypp.cpp │ │ │ │ │ ├── StdPairFloatFloat.pypp.hpp │ │ │ │ │ ├── StringSet.pypp.cpp │ │ │ │ │ ├── StringSet.pypp.hpp │ │ │ │ │ ├── Subscriber.pypp.cpp │ │ │ │ │ ├── Subscriber.pypp.hpp │ │ │ │ │ ├── System.pypp.cpp │ │ │ │ │ ├── System.pypp.hpp │ │ │ │ │ ├── SystemKeys.pypp.cpp │ │ │ │ │ ├── SystemKeys.pypp.hpp │ │ │ │ │ ├── TabButton.pypp.cpp │ │ │ │ │ ├── TabButton.pypp.hpp │ │ │ │ │ ├── TabControl.pypp.cpp │ │ │ │ │ ├── TabControl.pypp.hpp │ │ │ │ │ ├── TargetTypeStack.pypp.cpp │ │ │ │ │ ├── TargetTypeStack.pypp.hpp │ │ │ │ │ ├── TextComponent.pypp.cpp │ │ │ │ │ ├── TextComponent.pypp.hpp │ │ │ │ │ ├── TextComponentIterator.pypp.cpp │ │ │ │ │ ├── TextComponentIterator.pypp.hpp │ │ │ │ │ ├── TextComponentVector.pypp.cpp │ │ │ │ │ ├── TextComponentVector.pypp.hpp │ │ │ │ │ ├── TextUtils.pypp.cpp │ │ │ │ │ ├── TextUtils.pypp.hpp │ │ │ │ │ ├── Texture.pypp.cpp │ │ │ │ │ ├── Texture.pypp.hpp │ │ │ │ │ ├── TextureTarget.pypp.cpp │ │ │ │ │ ├── TextureTarget.pypp.hpp │ │ │ │ │ ├── Thumb.pypp.cpp │ │ │ │ │ ├── Thumb.pypp.hpp │ │ │ │ │ ├── Titlebar.pypp.cpp │ │ │ │ │ ├── Titlebar.pypp.hpp │ │ │ │ │ ├── ToggleButton.pypp.cpp │ │ │ │ │ ├── ToggleButton.pypp.hpp │ │ │ │ │ ├── Tooltip.pypp.cpp │ │ │ │ │ ├── Tooltip.pypp.hpp │ │ │ │ │ ├── Tree.pypp.cpp │ │ │ │ │ ├── Tree.pypp.hpp │ │ │ │ │ ├── TreeEventArgs.pypp.cpp │ │ │ │ │ ├── TreeEventArgs.pypp.hpp │ │ │ │ │ ├── TreeItem.pypp.cpp │ │ │ │ │ ├── TreeItem.pypp.hpp │ │ │ │ │ ├── TypeAliasIterator.pypp.cpp │ │ │ │ │ ├── TypeAliasIterator.pypp.hpp │ │ │ │ │ ├── TypedPropertyBool.pypp.cpp │ │ │ │ │ ├── TypedPropertyBool.pypp.hpp │ │ │ │ │ ├── TypedPropertyColour.pypp.cpp │ │ │ │ │ ├── TypedPropertyColour.pypp.hpp │ │ │ │ │ ├── TypedPropertyColourRect.pypp.cpp │ │ │ │ │ ├── TypedPropertyColourRect.pypp.hpp │ │ │ │ │ ├── TypedPropertyColourUBox.pypp.cpp │ │ │ │ │ ├── TypedPropertyColourUBox.pypp.hpp │ │ │ │ │ ├── TypedPropertyColourUDim.pypp.cpp │ │ │ │ │ ├── TypedPropertyColourUDim.pypp.hpp │ │ │ │ │ ├── TypedPropertyColourURect.pypp.cpp │ │ │ │ │ ├── TypedPropertyColourURect.pypp.hpp │ │ │ │ │ ├── TypedPropertyColourUVector2.pypp.cpp │ │ │ │ │ ├── TypedPropertyColourUVector2.pypp.hpp │ │ │ │ │ ├── TypedPropertyFloat.pypp.cpp │ │ │ │ │ ├── TypedPropertyFloat.pypp.hpp │ │ │ │ │ ├── TypedPropertyFont.pypp.cpp │ │ │ │ │ ├── TypedPropertyFont.pypp.hpp │ │ │ │ │ ├── TypedPropertyHorizontalFormatting.pypp.cpp │ │ │ │ │ ├── TypedPropertyHorizontalFormatting.pypp.hpp │ │ │ │ │ ├── TypedPropertyHorizontalTextFormatting.pypp.cpp │ │ │ │ │ ├── TypedPropertyHorizontalTextFormatting.pypp.hpp │ │ │ │ │ ├── TypedPropertyImage.pypp.cpp │ │ │ │ │ ├── TypedPropertyImage.pypp.hpp │ │ │ │ │ ├── TypedPropertyRectf.pypp.cpp │ │ │ │ │ ├── TypedPropertyRectf.pypp.hpp │ │ │ │ │ ├── TypedPropertySizef.pypp.cpp │ │ │ │ │ ├── TypedPropertySizef.pypp.hpp │ │ │ │ │ ├── TypedPropertyString.pypp.cpp │ │ │ │ │ ├── TypedPropertyString.pypp.hpp │ │ │ │ │ ├── TypedPropertyUint.pypp.cpp │ │ │ │ │ ├── TypedPropertyUint.pypp.hpp │ │ │ │ │ ├── TypedPropertyVector2f.pypp.cpp │ │ │ │ │ ├── TypedPropertyVector2f.pypp.hpp │ │ │ │ │ ├── TypedPropertyVerticalFormatting.pypp.cpp │ │ │ │ │ ├── TypedPropertyVerticalFormatting.pypp.hpp │ │ │ │ │ ├── TypedPropertyVerticalTextFormatting.pypp.cpp │ │ │ │ │ ├── TypedPropertyVerticalTextFormatting.pypp.hpp │ │ │ │ │ ├── UBox.pypp.cpp │ │ │ │ │ ├── UBox.pypp.hpp │ │ │ │ │ ├── UDim.pypp.cpp │ │ │ │ │ ├── UDim.pypp.hpp │ │ │ │ │ ├── URect.pypp.cpp │ │ │ │ │ ├── URect.pypp.hpp │ │ │ │ │ ├── USize.pypp.cpp │ │ │ │ │ ├── USize.pypp.hpp │ │ │ │ │ ├── UVector2.pypp.cpp │ │ │ │ │ ├── UVector2.pypp.hpp │ │ │ │ │ ├── UnifiedDim.pypp.cpp │ │ │ │ │ ├── UnifiedDim.pypp.hpp │ │ │ │ │ ├── UpdateEventArgs.pypp.cpp │ │ │ │ │ ├── UpdateEventArgs.pypp.hpp │ │ │ │ │ ├── Vector2f.pypp.cpp │ │ │ │ │ ├── Vector2f.pypp.hpp │ │ │ │ │ ├── Vector3f.pypp.cpp │ │ │ │ │ ├── Vector3f.pypp.hpp │ │ │ │ │ ├── Vertex.pypp.cpp │ │ │ │ │ ├── Vertex.pypp.hpp │ │ │ │ │ ├── VerticalLayoutContainer.pypp.cpp │ │ │ │ │ ├── VerticalLayoutContainer.pypp.hpp │ │ │ │ │ ├── WidgetComponent.pypp.cpp │ │ │ │ │ ├── WidgetComponent.pypp.hpp │ │ │ │ │ ├── WidgetComponentIterator.pypp.cpp │ │ │ │ │ ├── WidgetComponentIterator.pypp.hpp │ │ │ │ │ ├── WidgetComponentMap.pypp.cpp │ │ │ │ │ ├── WidgetComponentMap.pypp.hpp │ │ │ │ │ ├── WidgetDim.pypp.cpp │ │ │ │ │ ├── WidgetDim.pypp.hpp │ │ │ │ │ ├── WidgetLookFeel.pypp.cpp │ │ │ │ │ ├── WidgetLookFeel.pypp.hpp │ │ │ │ │ ├── WidgetLookFeelMap.pypp.cpp │ │ │ │ │ ├── WidgetLookFeelMap.pypp.hpp │ │ │ │ │ ├── WidgetLookIterator.pypp.cpp │ │ │ │ │ ├── WidgetLookIterator.pypp.hpp │ │ │ │ │ ├── WidgetLookManager.pypp.cpp │ │ │ │ │ ├── WidgetLookManager.pypp.hpp │ │ │ │ │ ├── Window.pypp.cpp │ │ │ │ │ ├── Window.pypp.hpp │ │ │ │ │ ├── WindowEventArgs.pypp.cpp │ │ │ │ │ ├── WindowEventArgs.pypp.hpp │ │ │ │ │ ├── WindowFactory.pypp.cpp │ │ │ │ │ ├── WindowFactory.pypp.hpp │ │ │ │ │ ├── WindowFactoryIterator.pypp.cpp │ │ │ │ │ ├── WindowFactoryIterator.pypp.hpp │ │ │ │ │ ├── WindowFactoryManager.pypp.cpp │ │ │ │ │ ├── WindowFactoryManager.pypp.hpp │ │ │ │ │ ├── WindowIterator.pypp.cpp │ │ │ │ │ ├── WindowIterator.pypp.hpp │ │ │ │ │ ├── WindowManager.pypp.cpp │ │ │ │ │ ├── WindowManager.pypp.hpp │ │ │ │ │ ├── WindowRenderer.pypp.cpp │ │ │ │ │ ├── WindowRenderer.pypp.hpp │ │ │ │ │ ├── WindowRendererFactory.pypp.cpp │ │ │ │ │ ├── WindowRendererFactory.pypp.hpp │ │ │ │ │ ├── WindowRendererManager.pypp.cpp │ │ │ │ │ ├── WindowRendererManager.pypp.hpp │ │ │ │ │ ├── Workarounds.pypp.cpp │ │ │ │ │ ├── Workarounds.pypp.hpp │ │ │ │ │ ├── XMLAttributes.pypp.cpp │ │ │ │ │ ├── XMLAttributes.pypp.hpp │ │ │ │ │ ├── XMLHandler.pypp.cpp │ │ │ │ │ ├── XMLHandler.pypp.hpp │ │ │ │ │ ├── XMLParser.pypp.cpp │ │ │ │ │ ├── XMLParser.pypp.hpp │ │ │ │ │ ├── XMLSerializer.pypp.cpp │ │ │ │ │ ├── XMLSerializer.pypp.hpp │ │ │ │ │ ├── _LineInfo__value_traits.pypp.hpp │ │ │ │ │ ├── _PropertyInitialiser__value_traits.pypp.hpp │ │ │ │ │ ├── _UDim__value_traits.pypp.hpp │ │ │ │ │ ├── indexing_suite │ │ │ │ │ │ ├── algorithms.hpp │ │ │ │ │ │ ├── container_proxy.hpp │ │ │ │ │ │ ├── container_suite.hpp │ │ │ │ │ │ ├── container_traits.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── element_proxy.hpp │ │ │ │ │ │ ├── element_proxy_traits.hpp │ │ │ │ │ │ ├── int_slice_helper.hpp │ │ │ │ │ │ ├── iterator_range.hpp │ │ │ │ │ │ ├── iterator_traits.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── methods.hpp │ │ │ │ │ │ ├── multimap.hpp │ │ │ │ │ │ ├── pair.hpp │ │ │ │ │ │ ├── proxy_iterator.hpp │ │ │ │ │ │ ├── python_iterator.hpp │ │ │ │ │ │ ├── registry_utils.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── shared_proxy_impl.hpp │ │ │ │ │ │ ├── slice.hpp │ │ │ │ │ │ ├── slice_handler.hpp │ │ │ │ │ │ ├── suite_utils.hpp │ │ │ │ │ │ ├── value_traits.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ ├── visitor.hpp │ │ │ │ │ │ └── workaround.hpp │ │ │ │ │ ├── named_tuple.py │ │ │ │ │ ├── vector_less__CEGUI_scope_PropertyDefinitionBase_ptr___greater_.pypp.cpp │ │ │ │ │ ├── vector_less__CEGUI_scope_PropertyDefinitionBase_ptr___greater_.pypp.hpp │ │ │ │ │ ├── vector_less__CEGUI_scope_UDim__greater_.pypp.cpp │ │ │ │ │ └── vector_less__CEGUI_scope_UDim__greater_.pypp.hpp │ │ │ │ │ ├── CEGUINullRenderer │ │ │ │ │ ├── NullRenderer.pypp.cpp │ │ │ │ │ ├── NullRenderer.pypp.hpp │ │ │ │ │ ├── PyCEGUINullRenderer.main.cpp │ │ │ │ │ └── named_tuple.py │ │ │ │ │ ├── CEGUIOgreRenderer │ │ │ │ │ ├── OgreImageCodec.pypp.cpp │ │ │ │ │ ├── OgreImageCodec.pypp.hpp │ │ │ │ │ ├── OgreRenderer.pypp.cpp │ │ │ │ │ ├── OgreRenderer.pypp.hpp │ │ │ │ │ ├── OgreResourceProvider.pypp.cpp │ │ │ │ │ ├── OgreResourceProvider.pypp.hpp │ │ │ │ │ ├── PyCEGUIOgreRenderer.main.cpp │ │ │ │ │ └── named_tuple.py │ │ │ │ │ └── CEGUIOpenGLRenderer │ │ │ │ │ ├── OpenGL3Renderer.pypp.cpp │ │ │ │ │ ├── OpenGL3Renderer.pypp.hpp │ │ │ │ │ ├── OpenGL3Shader.pypp.cpp │ │ │ │ │ ├── OpenGL3Shader.pypp.hpp │ │ │ │ │ ├── OpenGL3StateChangeWrapper.pypp.cpp │ │ │ │ │ ├── OpenGL3StateChangeWrapper.pypp.hpp │ │ │ │ │ ├── OpenGLGeometryBufferBase.pypp.cpp │ │ │ │ │ ├── OpenGLGeometryBufferBase.pypp.hpp │ │ │ │ │ ├── OpenGLRenderer.pypp.cpp │ │ │ │ │ ├── OpenGLRenderer.pypp.hpp │ │ │ │ │ ├── OpenGLRendererBase.pypp.cpp │ │ │ │ │ ├── OpenGLRendererBase.pypp.hpp │ │ │ │ │ ├── OpenGLTextureTarget.pypp.cpp │ │ │ │ │ ├── OpenGLTextureTarget.pypp.hpp │ │ │ │ │ ├── OpenGLViewportTarget.pypp.cpp │ │ │ │ │ ├── OpenGLViewportTarget.pypp.hpp │ │ │ │ │ ├── PyCEGUIOpenGLRenderer.main.cpp │ │ │ │ │ └── named_tuple.py │ │ │ └── SWIG │ │ │ │ ├── CEGUI.i │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── OpenGL.i │ │ │ ├── ShaderParameterBindings.cpp │ │ │ ├── SharedStringStream.cpp │ │ │ ├── StdRegexMatcher.cpp │ │ │ ├── StreamHelper.cpp │ │ │ ├── String.cpp │ │ │ ├── SubscriberSlot.cpp │ │ │ ├── System.cpp │ │ │ ├── TextureTarget.cpp │ │ │ ├── UndoHandler.cpp │ │ │ ├── Win32ClipboardProvider.cpp │ │ │ ├── Win32StringTranscoder.cpp │ │ │ ├── Window.cpp │ │ │ ├── WindowFactoryManager.cpp │ │ │ ├── WindowManager.cpp │ │ │ ├── WindowRenderer.cpp │ │ │ ├── WindowRendererManager.cpp │ │ │ ├── WindowRendererSets │ │ │ ├── CMakeLists.txt │ │ │ └── Core │ │ │ │ ├── Button.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Default.cpp │ │ │ │ ├── Editbox.cpp │ │ │ │ ├── FrameWindow.cpp │ │ │ │ ├── ItemEntry.cpp │ │ │ │ ├── ItemViewRenderer.cpp │ │ │ │ ├── ListHeader.cpp │ │ │ │ ├── ListHeaderSegment.cpp │ │ │ │ ├── ListView.cpp │ │ │ │ ├── MenuItem.cpp │ │ │ │ ├── Menubar.cpp │ │ │ │ ├── Module.cpp │ │ │ │ ├── MultiColumnList.cpp │ │ │ │ ├── PopupMenu.cpp │ │ │ │ ├── ProgressBar.cpp │ │ │ │ ├── ScrollablePane.cpp │ │ │ │ ├── Scrollbar.cpp │ │ │ │ ├── Slider.cpp │ │ │ │ ├── Static.cpp │ │ │ │ ├── StaticImage.cpp │ │ │ │ ├── StaticText.cpp │ │ │ │ ├── TabButton.cpp │ │ │ │ ├── TabControl.cpp │ │ │ │ ├── Titlebar.cpp │ │ │ │ ├── ToggleButton.cpp │ │ │ │ ├── Tooltip.cpp │ │ │ │ └── TreeView.cpp │ │ │ ├── XMLAttributes.cpp │ │ │ ├── XMLHandler.cpp │ │ │ ├── XMLParser.cpp │ │ │ ├── XMLParserModules │ │ │ ├── CMakeLists.txt │ │ │ ├── Expat │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── XMLParser.cpp │ │ │ │ └── XMLParserModule.cpp │ │ │ ├── Libxml2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── XMLParser.cpp │ │ │ │ └── XMLParserModule.cpp │ │ │ ├── PugiXML │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── XMLParser.cpp │ │ │ │ └── XMLParserModule.cpp │ │ │ ├── TinyXML2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── XMLParser.cpp │ │ │ │ └── XMLParserModule.cpp │ │ │ └── Xerces │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── XMLParser.cpp │ │ │ │ ├── XMLParserModule.cpp │ │ │ │ └── XMLParserProperties.cpp │ │ │ ├── XMLSerializer.cpp │ │ │ ├── falagard │ │ │ ├── ComponentBase.cpp │ │ │ ├── Dimensions.cpp │ │ │ ├── EventAction.cpp │ │ │ ├── EventLinkDefinition.cpp │ │ │ ├── FormattingSetting.cpp │ │ │ ├── FrameComponent.cpp │ │ │ ├── ImageryComponent.cpp │ │ │ ├── ImagerySection.cpp │ │ │ ├── LayerSpecification.cpp │ │ │ ├── NamedArea.cpp │ │ │ ├── PropertyDefinitionBase.cpp │ │ │ ├── PropertyInitialiser.cpp │ │ │ ├── SectionSpecification.cpp │ │ │ ├── StateImagery.cpp │ │ │ ├── TextComponent.cpp │ │ │ ├── WidgetComponent.cpp │ │ │ ├── WidgetLookFeel.cpp │ │ │ ├── WidgetLookManager.cpp │ │ │ ├── XMLEnumHelper.cpp │ │ │ └── XMLHandler.cpp │ │ │ ├── implementations │ │ │ └── mac │ │ │ │ ├── macPlugins.cpp │ │ │ │ └── macPlugins.h │ │ │ ├── svg │ │ │ ├── SVGBasicShape.cpp │ │ │ ├── SVGData.cpp │ │ │ ├── SVGDataManager.cpp │ │ │ ├── SVGImage.cpp │ │ │ ├── SVGPaintStyle.cpp │ │ │ └── SVGTesselator.cpp │ │ │ ├── text │ │ │ ├── BidiVisualMapping.cpp │ │ │ ├── Font.cpp │ │ │ ├── Font_xmlHandler.cpp │ │ │ ├── FreeTypeFont.cpp │ │ │ ├── LegacyTextParser.cpp │ │ │ ├── PixmapFont.cpp │ │ │ ├── RenderedText.cpp │ │ │ ├── RenderedTextElement.cpp │ │ │ ├── RenderedTextImage.cpp │ │ │ ├── RenderedTextParagraph.cpp │ │ │ ├── RenderedTextStyle.cpp │ │ │ ├── RenderedTextWidget.cpp │ │ │ ├── TextUtils.cpp │ │ │ └── minibidi.cpp │ │ │ ├── views │ │ │ ├── GenericItemModel.cpp │ │ │ ├── ItemModel.cpp │ │ │ ├── ItemView.cpp │ │ │ ├── ListView.cpp │ │ │ ├── StandardItemModel.cpp │ │ │ └── TreeView.cpp │ │ │ └── widgets │ │ │ ├── ButtonBase.cpp │ │ │ ├── ComboDropList.cpp │ │ │ ├── Combobox.cpp │ │ │ ├── DefaultWindow.cpp │ │ │ ├── DragContainer.cpp │ │ │ ├── Editbox.cpp │ │ │ ├── EditboxBase.cpp │ │ │ ├── FrameWindow.cpp │ │ │ ├── GridLayoutContainer.cpp │ │ │ ├── HorizontalLayoutContainer.cpp │ │ │ ├── ItemEntry.cpp │ │ │ ├── ItemListBase.cpp │ │ │ ├── LayoutContainer.cpp │ │ │ ├── ListHeader.cpp │ │ │ ├── ListHeaderSegment.cpp │ │ │ ├── ListWidget.cpp │ │ │ ├── ListboxItem.cpp │ │ │ ├── ListboxTextItem.cpp │ │ │ ├── MenuBase.cpp │ │ │ ├── MenuItem.cpp │ │ │ ├── Menubar.cpp │ │ │ ├── MultiColumnList.cpp │ │ │ ├── MultiLineEditbox.cpp │ │ │ ├── PopupMenu.cpp │ │ │ ├── ProgressBar.cpp │ │ │ ├── PushButton.cpp │ │ │ ├── RadioButton.cpp │ │ │ ├── ScrollablePane.cpp │ │ │ ├── Scrollbar.cpp │ │ │ ├── ScrolledContainer.cpp │ │ │ ├── Slider.cpp │ │ │ ├── Spinner.cpp │ │ │ ├── TabButton.cpp │ │ │ ├── TabControl.cpp │ │ │ ├── Thumb.cpp │ │ │ ├── Titlebar.cpp │ │ │ ├── ToggleButton.cpp │ │ │ ├── Tooltip.cpp │ │ │ ├── TreeWidget.cpp │ │ │ └── VerticalLayoutContainer.cpp │ └── cmake │ │ ├── CEGUIAndroid.cmake │ │ ├── CEGUIFindHelpers.cmake │ │ ├── CEGUIMacros.cmake │ │ ├── FindCEGUI.cmake │ │ ├── FindCorona.cmake │ │ ├── FindDevIL.cmake │ │ ├── FindDirectFB.cmake │ │ ├── FindDirectXSDK.cmake │ │ ├── FindEGL.cmake │ │ ├── FindEXPAT.cmake │ │ ├── FindEpoxy.cmake │ │ ├── FindFreeImage.cmake │ │ ├── FindFreetype.cmake │ │ ├── FindFribidi.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLFW.cmake │ │ ├── FindGLFW3.cmake │ │ ├── FindGLM.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindHarfbuzz.cmake │ │ ├── FindIconv.cmake │ │ ├── FindIrrlicht.cmake │ │ ├── FindLibXml2.cmake │ │ ├── FindLua51.cmake │ │ ├── FindMinizip.cmake │ │ ├── FindOIS.cmake │ │ ├── FindOgre.cmake │ │ ├── FindOpenGLES.cmake │ │ ├── FindOpenGLES2.cmake │ │ ├── FindOpenGLES3.cmake │ │ ├── FindPCRE.cmake │ │ ├── FindPVRTools.cmake │ │ ├── FindPkgMacros.cmake │ │ ├── FindPugiXML.cmake │ │ ├── FindPythonVersion.cmake │ │ ├── FindRaqm.cmake │ │ ├── FindSDL2.cmake │ │ ├── FindSDL2_image.cmake │ │ ├── FindSFML.cmake │ │ ├── FindSILLY.cmake │ │ ├── FindTOLUAPP.cmake │ │ ├── FindTinyXML2.cmake │ │ ├── FindXercesC.cmake │ │ ├── FindZLIB.cmake │ │ ├── FindZZip.cmake │ │ ├── PreprocessorUtils.cmake │ │ ├── templates │ │ ├── Android.GLES2.mk.in │ │ ├── Android.GLES3.mk.in │ │ ├── Android.OgreGLES2.mk.in │ │ ├── AndroidManifest.xml.in │ │ └── VisualStudioUserFile.vcxproj.user.in │ │ └── toolchain │ │ └── android.toolchain.cmake ├── CLI11 │ └── CLI11.hpp ├── CMakeLists.txt ├── DEMCMakeUtils.cmake ├── DevIL │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── DevIL-utils │ │ ├── DevIL Install │ │ │ ├── DevIL + Uninstall + Modern UI.nsi │ │ │ ├── DevIL + Uninstall.nsi │ │ │ └── DevIL.nsi │ │ └── DevIL Version │ │ │ ├── DevIL Version.cpp │ │ │ ├── DevIL Version.sln │ │ │ ├── DevIL Version.vcproj │ │ │ ├── IL Unicode.rc │ │ │ ├── IL.rc │ │ │ └── Version Numbers.txt │ ├── DevIL │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── DevIL Website.url │ │ ├── INSTALL │ │ ├── Libraries.txt │ │ ├── NEWS │ │ ├── README.cmake │ │ ├── README.md │ │ ├── TODO │ │ ├── bindings │ │ │ ├── DotNet │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ ├── COPYING.txt │ │ │ │ ├── DevIL.NET.cpp │ │ │ │ ├── DevIL.NET.sln │ │ │ │ ├── DevIL.NET.vcproj │ │ │ │ ├── ImageViewCs │ │ │ │ │ ├── App.ico │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── ImageViewCs.csproj │ │ │ │ │ ├── ImageViewCs.csproj.user │ │ │ │ │ ├── frmImageView.cs │ │ │ │ │ └── frmImageView.resx │ │ │ │ ├── ImageViewVb │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── ImageViewVb.vbproj │ │ │ │ │ ├── ImageViewVb.vbproj.user │ │ │ │ │ ├── frmImageView.resx │ │ │ │ │ └── frmImageView.vb │ │ │ │ └── vcproj vs2005 │ │ │ │ │ ├── DevIL.NET.sln │ │ │ │ │ └── DevIL.NET.vcproj │ │ │ ├── Mathematica │ │ │ │ ├── DevIL Interface.c │ │ │ │ ├── DevIL Mathematica.sln │ │ │ │ ├── DevIL Mathematica.vcproj │ │ │ │ └── DevIL.nb │ │ │ ├── README.bindings │ │ │ ├── README.txt │ │ │ ├── delphi │ │ │ │ ├── openil.pas │ │ │ │ ├── openilu.pas │ │ │ │ ├── openilut.pas │ │ │ │ └── readme.1st │ │ │ ├── fortran │ │ │ │ ├── example.f │ │ │ │ └── fortran_wrapper.c │ │ │ ├── powerbasic │ │ │ │ ├── il.inc │ │ │ │ ├── ilu.inc │ │ │ │ ├── ilut.inc │ │ │ │ ├── imgconv.bas │ │ │ │ ├── imginfo.bas │ │ │ │ └── imgview.bas │ │ │ ├── python │ │ │ │ ├── DevIL-Linux.py │ │ │ │ ├── DevIL-Windows.py │ │ │ │ ├── DevIL.pyd │ │ │ │ ├── deviltest.py │ │ │ │ ├── readme.txt │ │ │ │ └── test.py │ │ │ └── visual basic │ │ │ │ ├── VBreadme.txt │ │ │ │ ├── il.bas │ │ │ │ ├── ilu.bas │ │ │ │ └── ilut.bas │ │ ├── cmake │ │ │ ├── Modules │ │ │ │ ├── FindLCMS2.cmake │ │ │ │ ├── FindMNG.cmake │ │ │ │ └── FindlibSquish.cmake │ │ │ └── cmake_build.bat │ │ ├── cpp wrapper │ │ │ ├── Cpp Wrapper.dsp │ │ │ ├── Cpp Wrapper.mak │ │ │ ├── Cpp Wrapper.vcproj │ │ │ └── il_wrap.cpp │ │ ├── data │ │ │ └── DevIL_logo.jpg │ │ ├── docs │ │ │ ├── DevIL_manual.texi │ │ │ ├── devil.doxyfile │ │ │ ├── generate-images.sh │ │ │ └── images │ │ │ │ ├── DevIL.jpg │ │ │ │ ├── DevIL.png │ │ │ │ ├── devil_msvc_include.png │ │ │ │ ├── devil_msvc_lib.png │ │ │ │ ├── ilu_small_stairway_alienify.jpg │ │ │ │ ├── ilu_small_stairway_blurAvg_10.jpg │ │ │ │ ├── ilu_small_stairway_blurGaussian_10.jpg │ │ │ │ ├── ilu_small_stairway_contrast_0.4.jpg │ │ │ │ ├── ilu_small_stairway_contrast_1.7.jpg │ │ │ │ ├── ilu_small_stairway_emboss.jpg │ │ │ │ ├── ilu_small_stairway_equalize.jpg │ │ │ │ ├── ilu_small_stairway_gammaCorrect_0.7.jpg │ │ │ │ ├── ilu_small_stairway_gammaCorrect_1.6.jpg │ │ │ │ ├── ilu_small_stairway_mirror.jpg │ │ │ │ ├── ilu_small_stairway_negative.jpg │ │ │ │ ├── ilu_small_stairway_noisify_0.1.jpg │ │ │ │ ├── ilu_small_stairway_noisify_0.8.jpg │ │ │ │ ├── ilu_small_stairway_pixelize_5.jpg │ │ │ │ ├── ilu_small_stairway_saturate1f_0.6.jpg │ │ │ │ ├── ilu_small_stairway_sharpen_1.8_2.jpg │ │ │ │ ├── ilu_small_stairway_sharpen_2.1_3.jpg │ │ │ │ ├── ilu_small_stairway_wave_1.2.jpg │ │ │ │ ├── original_stairway.jpg │ │ │ │ └── small_stairway.jpg │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Examples-vc2015.sln │ │ │ ├── Examples-vc8.sln │ │ │ ├── Examples-vc9.sln │ │ │ ├── allegro_example │ │ │ │ └── allegtest.c │ │ │ ├── animation_example │ │ │ │ ├── AnimTest.cpp │ │ │ │ ├── AnimTest.rc │ │ │ │ ├── OpenIL.ico │ │ │ │ ├── animation_example-vc2015.vcxproj │ │ │ │ ├── animation_example-vc8.vcproj │ │ │ │ ├── animation_example-vc9.vcproj │ │ │ │ └── resource.h │ │ │ ├── cpp_wrapper_example │ │ │ │ ├── cpp_wrapper_example-vc2015.vcxproj │ │ │ │ ├── cpp_wrapper_example-vc8.vcproj │ │ │ │ ├── cpp_wrapper_example-vc9.vcproj │ │ │ │ └── il_wrap.cpp │ │ │ ├── direct3d_example │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── D3DTest.dsp │ │ │ │ ├── d3dtest.cpp │ │ │ │ ├── direct3d_example-vc2015.vcxproj │ │ │ │ ├── direct3d_example-vc8.vcproj │ │ │ │ └── direct3d_example-vc9.vcproj │ │ │ ├── iller │ │ │ │ ├── README │ │ │ │ ├── iller.cpp │ │ │ │ └── iller.h │ │ │ ├── opengl_example │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gltest.c │ │ │ │ ├── gltest.h │ │ │ │ ├── opengl_example-vc2015.vcxproj │ │ │ │ ├── opengl_example-vc8.vcproj │ │ │ │ └── opengl_example-vc9.vcproj │ │ │ ├── override_example │ │ │ │ ├── iotest.c │ │ │ │ ├── override_example-vc2015.vcxproj │ │ │ │ ├── override_example-vc8.vcproj │ │ │ │ └── override_example-vc9.vcproj │ │ │ ├── register_read_example │ │ │ │ ├── readtest.c │ │ │ │ ├── register_read_example-vc2015.vcxproj │ │ │ │ ├── register_read_example-vc8.vcproj │ │ │ │ └── register_read_example-vc9.vcproj │ │ │ ├── sdl_example │ │ │ │ ├── sdl_example-vc2015.vcxproj │ │ │ │ ├── sdl_example-vc8.vcproj │ │ │ │ ├── sdl_example-vc9.vcproj │ │ │ │ └── sdl_test.c │ │ │ ├── simple_example │ │ │ │ ├── simple.c │ │ │ │ ├── simple_example-vc2015.vcxproj │ │ │ │ ├── simple_example-vc8.vcproj │ │ │ │ └── simple_example-vc9.vcproj │ │ │ ├── volume_example │ │ │ │ ├── 3dtest.c │ │ │ │ ├── 3dtest.h │ │ │ │ ├── volume_example-vc2015.vcxproj │ │ │ │ ├── volume_example-vc8.vcproj │ │ │ │ └── volume_example-vc9.vcproj │ │ │ └── windows_example │ │ │ │ ├── BatchConv.cpp │ │ │ │ ├── WindowsTest.cpp │ │ │ │ ├── WindowsTest.dep │ │ │ │ ├── WindowsTest.h │ │ │ │ ├── WindowsTest.mak │ │ │ │ ├── WindowsTest.rc │ │ │ │ ├── WindowsTest.vcproj │ │ │ │ ├── resource.h │ │ │ │ ├── resources │ │ │ │ ├── 3d.ico │ │ │ │ ├── DevIL Logo.ico │ │ │ │ ├── OpenIL.ico │ │ │ │ ├── OpenIL_address_bar.ico │ │ │ │ ├── bmp.ico │ │ │ │ ├── gif.ico │ │ │ │ ├── graphic.ico │ │ │ │ ├── jpg.ico │ │ │ │ └── psd.ico │ │ │ │ ├── windows_example-vc2015.vcxproj │ │ │ │ ├── windows_example-vc8.vcproj │ │ │ │ ├── windows_example-vc9.vcproj │ │ │ │ ├── windows_example.cpp │ │ │ │ ├── windows_example.rc │ │ │ │ └── windowstest-vc8.vcproj │ │ ├── include │ │ │ └── IL │ │ │ │ ├── DevIL.i │ │ │ │ ├── build-lua │ │ │ │ ├── build-python │ │ │ │ ├── devil_cpp_wrapper.hpp │ │ │ │ ├── devil_internal_exports.h │ │ │ │ ├── il.h │ │ │ │ ├── il_wrap.h │ │ │ │ ├── ilu.h │ │ │ │ ├── ilu_region.h │ │ │ │ ├── ilut.h │ │ │ │ ├── ilut_config.h │ │ │ │ ├── luadevil.c │ │ │ │ └── stamp-h.in │ │ ├── src-IL │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake │ │ │ │ ├── FindLCMS.cmake │ │ │ │ ├── FindNVTT.cmake │ │ │ │ ├── FindOpenEXR.cmake │ │ │ │ └── README │ │ │ ├── include │ │ │ │ ├── .cvsignore │ │ │ │ ├── altivec_common.h │ │ │ │ ├── altivec_typeconversion.h │ │ │ │ ├── config.h.cmake.in │ │ │ │ ├── il_alloc.h │ │ │ │ ├── il_bits.h │ │ │ │ ├── il_bmp.h │ │ │ │ ├── il_dcx.h │ │ │ │ ├── il_dds.h │ │ │ │ ├── il_doompal.h │ │ │ │ ├── il_dpx.h │ │ │ │ ├── il_endian.h │ │ │ │ ├── il_exr.h │ │ │ │ ├── il_files.h │ │ │ │ ├── il_gif.h │ │ │ │ ├── il_hdr.h │ │ │ │ ├── il_icns.h │ │ │ │ ├── il_icon.h │ │ │ │ ├── il_internal.h │ │ │ │ ├── il_jp2.h │ │ │ │ ├── il_jpeg.h │ │ │ │ ├── il_lif.h │ │ │ │ ├── il_manip.h │ │ │ │ ├── il_mdl.h │ │ │ │ ├── il_pal.h │ │ │ │ ├── il_pcx.h │ │ │ │ ├── il_pic.h │ │ │ │ ├── il_pnm.h │ │ │ │ ├── il_psd.h │ │ │ │ ├── il_psp.h │ │ │ │ ├── il_q2pal.h │ │ │ │ ├── il_register.h │ │ │ │ ├── il_rle.h │ │ │ │ ├── il_sgi.h │ │ │ │ ├── il_stack.h │ │ │ │ ├── il_states.h │ │ │ │ ├── il_targa.h │ │ │ │ ├── il_utx.h │ │ │ │ ├── il_vtf.h │ │ │ │ ├── il_wdp.h │ │ │ │ └── rg_etc1.h │ │ │ ├── msvc │ │ │ │ ├── IL Unicode.rc │ │ │ │ ├── IL.rc │ │ │ │ ├── il.def │ │ │ │ ├── resource.h │ │ │ │ └── resources │ │ │ │ │ └── IL Logo.ico │ │ │ ├── msvc8 │ │ │ │ ├── IL Unicode.rc │ │ │ │ └── IL.rc │ │ │ ├── msvc9 │ │ │ │ ├── IL Unicode.rc │ │ │ │ └── IL.rc │ │ │ ├── pkgconfig │ │ │ │ ├── IL.pc.cmake.in │ │ │ │ └── README │ │ │ └── src │ │ │ │ ├── altivec_common.cpp │ │ │ │ ├── altivec_typeconversion.cpp │ │ │ │ ├── il_alloc.cpp │ │ │ │ ├── il_bits.cpp │ │ │ │ ├── il_blp.cpp │ │ │ │ ├── il_bmp.cpp │ │ │ │ ├── il_convbuff.cpp │ │ │ │ ├── il_convert.cpp │ │ │ │ ├── il_cut.cpp │ │ │ │ ├── il_dcx.cpp │ │ │ │ ├── il_dds-save.cpp │ │ │ │ ├── il_dds.cpp │ │ │ │ ├── il_devil.cpp │ │ │ │ ├── il_dicom.cpp │ │ │ │ ├── il_doom.cpp │ │ │ │ ├── il_dpx.cpp │ │ │ │ ├── il_endian.cpp │ │ │ │ ├── il_error.cpp │ │ │ │ ├── il_exr.c │ │ │ │ ├── il_exr.cpp │ │ │ │ ├── il_fastconv.cpp │ │ │ │ ├── il_files.cpp │ │ │ │ ├── il_fits.cpp │ │ │ │ ├── il_ftx.cpp │ │ │ │ ├── il_gif.cpp │ │ │ │ ├── il_hdr.cpp │ │ │ │ ├── il_header.cpp │ │ │ │ ├── il_icns.cpp │ │ │ │ ├── il_icon.cpp │ │ │ │ ├── il_iff.cpp │ │ │ │ ├── il_ilbm.cpp │ │ │ │ ├── il_internal.cpp │ │ │ │ ├── il_io.cpp │ │ │ │ ├── il_iwi.cpp │ │ │ │ ├── il_jp2.cpp │ │ │ │ ├── il_jpeg.cpp │ │ │ │ ├── il_ktx.cpp │ │ │ │ ├── il_lif.cpp │ │ │ │ ├── il_main.cpp │ │ │ │ ├── il_manip.cpp │ │ │ │ ├── il_mdl.cpp │ │ │ │ ├── il_mng.cpp │ │ │ │ ├── il_mp3.cpp │ │ │ │ ├── il_neuquant.cpp │ │ │ │ ├── il_nvidia.cpp │ │ │ │ ├── il_pal.cpp │ │ │ │ ├── il_pcd.cpp │ │ │ │ ├── il_pcx.cpp │ │ │ │ ├── il_pic.cpp │ │ │ │ ├── il_pix.cpp │ │ │ │ ├── il_png.cpp │ │ │ │ ├── il_pnm.cpp │ │ │ │ ├── il_profiles.cpp │ │ │ │ ├── il_psd.cpp │ │ │ │ ├── il_psp.cpp │ │ │ │ ├── il_pxr.cpp │ │ │ │ ├── il_quantizer.cpp │ │ │ │ ├── il_raw.cpp │ │ │ │ ├── il_rawdata.cpp │ │ │ │ ├── il_register.cpp │ │ │ │ ├── il_rle.cpp │ │ │ │ ├── il_rot.cpp │ │ │ │ ├── il_scitex.cpp │ │ │ │ ├── il_sgi.cpp │ │ │ │ ├── il_size.cpp │ │ │ │ ├── il_squish.cpp │ │ │ │ ├── il_stack.cpp │ │ │ │ ├── il_states.cpp │ │ │ │ ├── il_sun.cpp │ │ │ │ ├── il_targa.cpp │ │ │ │ ├── il_texture.cpp │ │ │ │ ├── il_tiff.cpp │ │ │ │ ├── il_tpl.cpp │ │ │ │ ├── il_utility.cpp │ │ │ │ ├── il_utx.c │ │ │ │ ├── il_utx.cpp │ │ │ │ ├── il_vtf.cpp │ │ │ │ ├── il_wal.cpp │ │ │ │ ├── il_wbmp.cpp │ │ │ │ ├── il_wdp.cpp │ │ │ │ ├── il_xpm.cpp │ │ │ │ └── rg_etc1.cpp │ │ ├── src-ILU │ │ │ ├── CMakeLists.txt │ │ │ ├── ilur │ │ │ │ └── ilur.c │ │ │ ├── include │ │ │ │ ├── ilu_alloc.h │ │ │ │ ├── ilu_error │ │ │ │ │ ├── ilu_err-arabic.h │ │ │ │ │ ├── ilu_err-dutch.h │ │ │ │ │ ├── ilu_err-english.h │ │ │ │ │ ├── ilu_err-french.h │ │ │ │ │ ├── ilu_err-german.h │ │ │ │ │ ├── ilu_err-italian.h │ │ │ │ │ ├── ilu_err-japanese.h │ │ │ │ │ └── ilu_err-spanish.h │ │ │ │ ├── ilu_filter.h │ │ │ │ ├── ilu_internal.h │ │ │ │ ├── ilu_region.h │ │ │ │ └── ilu_states.h │ │ │ ├── msvc │ │ │ │ ├── ILU Unicode.rc │ │ │ │ ├── ILU.rc │ │ │ │ ├── ilu.def │ │ │ │ ├── resource.h │ │ │ │ └── resources │ │ │ │ │ └── IL Logo.ico │ │ │ ├── pkgconfig │ │ │ │ ├── ILU.pc.cmake.in │ │ │ │ └── README │ │ │ └── src │ │ │ │ ├── ilu_alloc.cpp │ │ │ │ ├── ilu_error.cpp │ │ │ │ ├── ilu_filter.cpp │ │ │ │ ├── ilu_filter_rcg.cpp │ │ │ │ ├── ilu_internal.cpp │ │ │ │ ├── ilu_main.cpp │ │ │ │ ├── ilu_manip.cpp │ │ │ │ ├── ilu_mipmap.cpp │ │ │ │ ├── ilu_noise.cpp │ │ │ │ ├── ilu_region.cpp │ │ │ │ ├── ilu_rotate.cpp │ │ │ │ ├── ilu_scale.cpp │ │ │ │ ├── ilu_scale2d.cpp │ │ │ │ ├── ilu_scale3d.cpp │ │ │ │ ├── ilu_scaling.cpp │ │ │ │ ├── ilu_states.cpp │ │ │ │ └── ilu_utilities.cpp │ │ ├── src-ILUT │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ ├── ilut_allegro.h │ │ │ │ ├── ilut_internal.h │ │ │ │ ├── ilut_opengl.h │ │ │ │ └── ilut_states.h │ │ │ ├── msvc │ │ │ │ ├── ILUT Unicode.rc │ │ │ │ ├── ILUT.rc │ │ │ │ ├── ilut.def │ │ │ │ ├── resource.h │ │ │ │ └── resources │ │ │ │ │ └── IL Logo.ico │ │ │ ├── pkgconfig │ │ │ │ ├── ILUT.pc.cmake.in │ │ │ │ └── README │ │ │ └── src │ │ │ │ ├── ilut_allegro.cpp │ │ │ │ ├── ilut_directx.cpp │ │ │ │ ├── ilut_directx10.cpp │ │ │ │ ├── ilut_directx9.cpp │ │ │ │ ├── ilut_directxm.cpp │ │ │ │ ├── ilut_internal.cpp │ │ │ │ ├── ilut_main.cpp │ │ │ │ ├── ilut_opengl.cpp │ │ │ │ ├── ilut_sdlsurface.cpp │ │ │ │ ├── ilut_states.cpp │ │ │ │ ├── ilut_win32.cpp │ │ │ │ └── ilut_x11.cpp │ │ └── test │ │ │ ├── Benchmark │ │ │ ├── CMakeLists.txt │ │ │ └── benchmark.c │ │ │ ├── CMakeLists.txt │ │ │ ├── DDrawTest │ │ │ ├── DDrawTest.dsp │ │ │ ├── SOURCE │ │ │ │ ├── DirectX.cpp │ │ │ │ ├── beScreen.cpp │ │ │ │ └── beSurface.cpp │ │ │ ├── header │ │ │ │ ├── Render2DCore.h │ │ │ │ ├── beScreen.h │ │ │ │ ├── beSurface.h │ │ │ │ └── beTypes.h │ │ │ └── test_window │ │ │ │ ├── DDrawTest.rc │ │ │ │ ├── WindowTest.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── resource.h │ │ │ │ └── resources │ │ │ │ ├── 3d.ico │ │ │ │ ├── OpenIL Address Bar Logo.ico │ │ │ │ ├── bmp.ico │ │ │ │ ├── gif.ico │ │ │ │ ├── graphic.ico │ │ │ │ ├── jpg.ico │ │ │ │ ├── psd.ico │ │ │ │ └── rt_targa.bin │ │ │ ├── Fltk │ │ │ ├── Fltk.dsp │ │ │ ├── fltk.cpp │ │ │ └── list_visuals.cxx │ │ │ ├── MdiTest │ │ │ ├── MdiTest.cpp │ │ │ ├── MdiTest.dsp │ │ │ ├── MdiTest.h │ │ │ ├── MdiTest.rc │ │ │ ├── resource.h │ │ │ └── resources │ │ │ │ ├── 3d.ico │ │ │ │ ├── OpenIL Address Bar Logo.ico │ │ │ │ ├── OpenIL Logo.ico │ │ │ │ ├── bmp.ico │ │ │ │ ├── gif.ico │ │ │ │ ├── graphic.ico │ │ │ │ ├── jpg.ico │ │ │ │ └── psd.ico │ │ │ ├── Stress │ │ │ ├── StressTest.dsp │ │ │ ├── StressTest.vcproj │ │ │ ├── mmgr.cpp │ │ │ ├── mmgr.h │ │ │ ├── nommgr.h │ │ │ └── stress.cpp │ │ │ ├── URar │ │ │ ├── test.c │ │ │ ├── test.dsp │ │ │ ├── test.dsw │ │ │ ├── urarlib.c │ │ │ └── urarlib.h │ │ │ ├── UnitTest │ │ │ ├── CMakeLists.txt │ │ │ ├── Data │ │ │ │ ├── Cardinal.gif │ │ │ │ └── Logo.png │ │ │ ├── ILTest.cpp │ │ │ ├── ILTest.h │ │ │ ├── ILUTest.cpp │ │ │ ├── ILUTest.h │ │ │ ├── Results │ │ │ │ └── Readme.txt │ │ │ ├── UnitTest.cpp │ │ │ └── cmake │ │ │ │ └── Findcppunit.cmake │ │ │ ├── Unzip │ │ │ ├── NV_UNZIP.H │ │ │ ├── UNZIP.H │ │ │ ├── nv_unzip.cpp │ │ │ └── unzip.c │ │ │ ├── VolTex │ │ │ ├── VolTex.dsp │ │ │ └── voltex.c │ │ │ ├── format_test │ │ │ ├── format_checks.sh.in │ │ │ ├── ilu_checks.sh.in │ │ │ └── testil.c │ │ │ └── old │ │ │ ├── doom.cpp │ │ │ └── testil.cpp │ ├── LICENSE │ ├── README.md │ └── _ReadmeDep.txt ├── GLTFSDK │ ├── Build │ │ └── CMake │ │ │ └── Modules │ │ │ └── GLTFPlatform.cmake │ ├── CMakeLists.txt │ ├── External │ │ └── RapidJSON │ │ │ ├── CMakeLists.txt │ │ │ └── CMakeRapidJSONDownload.txt.in │ ├── GenerateSchemaJsonHeader.ps1 │ ├── Inc │ │ └── GLTFSDK │ │ │ ├── AnimationUtils.h │ │ │ ├── BufferBuilder.h │ │ │ ├── Color.h │ │ │ ├── Constants.h │ │ │ ├── Deserialize.h │ │ │ ├── Document.h │ │ │ ├── Exceptions.h │ │ │ ├── Extension.h │ │ │ ├── ExtensionHandlers.h │ │ │ ├── ExtensionsKHR.h │ │ │ ├── ExtrasDocument.h │ │ │ ├── GLBResourceReader.h │ │ │ ├── GLBResourceWriter.h │ │ │ ├── GLTF.h │ │ │ ├── GLTFResourceReader.h │ │ │ ├── GLTFResourceWriter.h │ │ │ ├── IStreamCache.h │ │ │ ├── IStreamReader.h │ │ │ ├── IStreamWriter.h │ │ │ ├── IndexedContainer.h │ │ │ ├── Math.h │ │ │ ├── MeshPrimitiveUtils.h │ │ │ ├── MicrosoftGeneratorVersion.h │ │ │ ├── Optional.h │ │ │ ├── PBRUtils.h │ │ │ ├── RapidJsonUtils.h │ │ │ ├── ResourceReaderUtils.h │ │ │ ├── ResourceWriter.h │ │ │ ├── Schema.h │ │ │ ├── SchemaValidation.h │ │ │ ├── Serialize.h │ │ │ ├── StreamCache.h │ │ │ ├── StreamCacheLRU.h │ │ │ ├── StreamUtils.h │ │ │ ├── Traverse.h │ │ │ ├── Validation.h │ │ │ ├── Version.h │ │ │ └── Visitor.h │ ├── README.md │ ├── Source │ │ ├── AnimationUtils.cpp │ │ ├── BufferBuilder.cpp │ │ ├── Color.cpp │ │ ├── Deserialize.cpp │ │ ├── Document.cpp │ │ ├── Extension.cpp │ │ ├── ExtensionHandlers.cpp │ │ ├── ExtensionsKHR.cpp │ │ ├── GLBResourceReader.cpp │ │ ├── GLBResourceWriter.cpp │ │ ├── GLTFResourceReader.cpp │ │ ├── GLTFResourceWriter.cpp │ │ ├── Math.cpp │ │ ├── MeshPrimitiveUtils.cpp │ │ ├── MicrosoftGeneratorVersion.cpp │ │ ├── PBRUtils.cpp │ │ ├── ResourceWriter.cpp │ │ ├── Schema.cpp │ │ ├── SchemaValidation.cpp │ │ ├── Serialize.cpp │ │ ├── Validation.cpp │ │ └── Version.cpp │ ├── _ReadmeDep.txt │ └── schema │ │ ├── accessor.schema.json │ │ ├── accessor.sparse.indices.schema.json │ │ ├── accessor.sparse.schema.json │ │ ├── accessor.sparse.values.schema.json │ │ ├── animation.channel.schema.json │ │ ├── animation.channel.target.schema.json │ │ ├── animation.sampler.schema.json │ │ ├── animation.schema.json │ │ ├── asset.schema.json │ │ ├── buffer.schema.json │ │ ├── bufferView.schema.json │ │ ├── camera.orthographic.schema.json │ │ ├── camera.perspective.schema.json │ │ ├── camera.schema.json │ │ ├── extension.schema.json │ │ ├── extras.schema.json │ │ ├── glTF.schema.json │ │ ├── glTFChildOfRootProperty.schema.json │ │ ├── glTFProperty.schema.json │ │ ├── glTFid.schema.json │ │ ├── image.schema.json │ │ ├── material.normalTextureInfo.schema.json │ │ ├── material.occlusionTextureInfo.schema.json │ │ ├── material.pbrMetallicRoughness.schema.json │ │ ├── material.schema.json │ │ ├── mesh.primitive.schema.json │ │ ├── mesh.schema.json │ │ ├── node.schema.json │ │ ├── sampler.schema.json │ │ ├── scene.schema.json │ │ ├── skin.schema.json │ │ ├── texture.schema.json │ │ └── textureInfo.schema.json ├── acl │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── _ReadmeDep.txt │ ├── cmake │ │ ├── CMakeCompiler.cmake │ │ ├── CMakePlatforms.cmake │ │ ├── CMakeUtils.cmake │ │ ├── Toolchain-Android.cmake │ │ └── Toolchain-iOS.cmake │ ├── includes │ │ └── acl │ │ │ ├── compression │ │ │ ├── compress.h │ │ │ ├── compression_level.h │ │ │ ├── compression_settings.h │ │ │ ├── convert.h │ │ │ ├── fwd.h │ │ │ ├── impl │ │ │ │ ├── animated_track_utils.h │ │ │ │ ├── clip_context.h │ │ │ │ ├── clip_context.impl.h │ │ │ │ ├── compact.scalar.h │ │ │ │ ├── compact.transform.h │ │ │ │ ├── compress.database.impl.h │ │ │ │ ├── compress.impl.h │ │ │ │ ├── compress.scalar.impl.h │ │ │ │ ├── compress.transform.impl.h │ │ │ │ ├── compression_level.impl.h │ │ │ │ ├── compression_settings.impl.h │ │ │ │ ├── convert.impl.h │ │ │ │ ├── convert_rotation.transform.h │ │ │ │ ├── keyframe_stripping.h │ │ │ │ ├── normalize.scalar.h │ │ │ │ ├── normalize.transform.h │ │ │ │ ├── optimize_looping.scalar.h │ │ │ │ ├── optimize_looping.transform.h │ │ │ │ ├── pre_process.common.h │ │ │ │ ├── pre_process.impl.h │ │ │ │ ├── pre_process.scalar.h │ │ │ │ ├── pre_process.transform.h │ │ │ │ ├── quantize.scalar.h │ │ │ │ ├── quantize.transform.h │ │ │ │ ├── rigid_shell_utils.h │ │ │ │ ├── sample_streams.h │ │ │ │ ├── segment.transform.h │ │ │ │ ├── segment_context.h │ │ │ │ ├── track.impl.h │ │ │ │ ├── track_array.impl.h │ │ │ │ ├── track_bit_rate_database.h │ │ │ │ ├── track_error.impl.h │ │ │ │ ├── track_list_context.h │ │ │ │ ├── track_range.h │ │ │ │ ├── track_range_impl.h │ │ │ │ ├── track_stream.h │ │ │ │ ├── transform_bit_rate_permutations.h │ │ │ │ ├── transform_clip_adapters.h │ │ │ │ ├── write_compression_stats_impl.h │ │ │ │ ├── write_range_data.h │ │ │ │ ├── write_segment_data.h │ │ │ │ ├── write_stats.h │ │ │ │ ├── write_stream_data.h │ │ │ │ ├── write_sub_track_types.h │ │ │ │ ├── write_track_data_impl.h │ │ │ │ └── write_track_metadata.h │ │ │ ├── output_stats.h │ │ │ ├── pre_process.h │ │ │ ├── track.h │ │ │ ├── track_array.h │ │ │ ├── track_error.h │ │ │ ├── transform_error_metrics.h │ │ │ └── transform_pose_utils.h │ │ │ ├── core │ │ │ ├── additive_utils.h │ │ │ ├── algorithm_types.h │ │ │ ├── ansi_allocator.h │ │ │ ├── bit_manip_utils.h │ │ │ ├── bitset.h │ │ │ ├── buffer_tag.h │ │ │ ├── compressed_database.h │ │ │ ├── compressed_tracks.h │ │ │ ├── compressed_tracks_version.h │ │ │ ├── enum_utils.h │ │ │ ├── error.h │ │ │ ├── error_result.h │ │ │ ├── floating_point_exceptions.h │ │ │ ├── fwd.h │ │ │ ├── hash.h │ │ │ ├── iallocator.h │ │ │ ├── impl │ │ │ │ ├── atomic.impl.h │ │ │ │ ├── bit_cast.impl.h │ │ │ │ ├── compiler_utils.h │ │ │ │ ├── compressed_database.impl.h │ │ │ │ ├── compressed_headers.h │ │ │ │ ├── compressed_tracks.impl.h │ │ │ │ ├── debug_track_writer.h │ │ │ │ ├── interpolation_utils.impl.h │ │ │ │ ├── time_utils.impl.h │ │ │ │ ├── track_desc.impl.h │ │ │ │ ├── track_formats.impl.h │ │ │ │ └── variable_bit_rates.h │ │ │ ├── interpolation_utils.h │ │ │ ├── iterator.h │ │ │ ├── memory_utils.h │ │ │ ├── ptr_offset.h │ │ │ ├── quality_tiers.h │ │ │ ├── range_reduction_types.h │ │ │ ├── sample_looping_policy.h │ │ │ ├── sample_rounding_policy.h │ │ │ ├── scope_profiler.h │ │ │ ├── string.h │ │ │ ├── time_utils.h │ │ │ ├── track_desc.h │ │ │ ├── track_formats.h │ │ │ ├── track_traits.h │ │ │ ├── track_types.h │ │ │ ├── track_writer.h │ │ │ ├── unique_ptr.h │ │ │ ├── utils.h │ │ │ └── variable_bit_rates.h │ │ │ ├── decompression │ │ │ ├── database │ │ │ │ ├── database.h │ │ │ │ ├── database_settings.h │ │ │ │ ├── database_streamer.h │ │ │ │ ├── impl │ │ │ │ │ ├── database.impl.h │ │ │ │ │ ├── database_context.h │ │ │ │ │ ├── database_streamer.impl.h │ │ │ │ │ └── debug_database_streamer.h │ │ │ │ └── null_database_streamer.h │ │ │ ├── decompress.h │ │ │ ├── decompression_settings.h │ │ │ ├── fwd.h │ │ │ └── impl │ │ │ │ ├── animated_track_cache.transform.h │ │ │ │ ├── constant_track_cache.transform.h │ │ │ │ ├── decompress.impl.h │ │ │ │ ├── decompression.scalar.h │ │ │ │ ├── decompression.transform.h │ │ │ │ ├── decompression.universal.h │ │ │ │ ├── decompression_context.transform.h │ │ │ │ ├── decompression_context_selector.h │ │ │ │ ├── decompression_version_selector.h │ │ │ │ └── track_cache.h │ │ │ ├── fwd.h │ │ │ ├── io │ │ │ ├── clip_reader.h │ │ │ ├── clip_reader_error.h │ │ │ ├── clip_writer.h │ │ │ └── fwd.h │ │ │ ├── math │ │ │ ├── quat_packing.h │ │ │ ├── quatf.h │ │ │ ├── qvvf.h │ │ │ ├── scalar_packing.h │ │ │ ├── vector4_packing.h │ │ │ └── vector4f.h │ │ │ └── version.h │ └── tools │ │ └── vs_visualizers │ │ └── acl.natvis ├── build_cegui_deps.py ├── bullet │ ├── AUTHORS.txt │ ├── BulletConfig.cmake.in │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.md │ ├── UseBullet.cmake │ ├── VERSION │ ├── _ReadmeDep.txt │ ├── bullet.pc.cmake │ └── src │ │ ├── Bullet3Collision │ │ ├── BroadPhaseCollision │ │ │ ├── b3BroadphaseCallback.h │ │ │ ├── b3DynamicBvh.cpp │ │ │ ├── b3DynamicBvh.h │ │ │ ├── b3DynamicBvhBroadphase.cpp │ │ │ ├── b3DynamicBvhBroadphase.h │ │ │ ├── b3OverlappingPair.h │ │ │ ├── b3OverlappingPairCache.cpp │ │ │ ├── b3OverlappingPairCache.h │ │ │ └── shared │ │ │ │ └── b3Aabb.h │ │ ├── CMakeLists.txt │ │ ├── NarrowPhaseCollision │ │ │ ├── b3Config.h │ │ │ ├── b3Contact4.h │ │ │ ├── b3ConvexUtility.cpp │ │ │ ├── b3ConvexUtility.h │ │ │ ├── b3CpuNarrowPhase.cpp │ │ │ ├── b3CpuNarrowPhase.h │ │ │ ├── b3RaycastInfo.h │ │ │ ├── b3RigidBodyCL.h │ │ │ └── shared │ │ │ │ ├── b3BvhSubtreeInfoData.h │ │ │ │ ├── b3BvhTraversal.h │ │ │ │ ├── b3ClipFaces.h │ │ │ │ ├── b3Collidable.h │ │ │ │ ├── b3Contact4Data.h │ │ │ │ ├── b3ContactConvexConvexSAT.h │ │ │ │ ├── b3ContactSphereSphere.h │ │ │ │ ├── b3ConvexPolyhedronData.h │ │ │ │ ├── b3FindConcaveSatAxis.h │ │ │ │ ├── b3FindSeparatingAxis.h │ │ │ │ ├── b3MprPenetration.h │ │ │ │ ├── b3NewContactReduction.h │ │ │ │ ├── b3QuantizedBvhNodeData.h │ │ │ │ ├── b3ReduceContacts.h │ │ │ │ ├── b3RigidBodyData.h │ │ │ │ └── b3UpdateAabbs.h │ │ └── premake4.lua │ │ ├── Bullet3Common │ │ ├── CMakeLists.txt │ │ ├── b3AlignedAllocator.cpp │ │ ├── b3AlignedAllocator.h │ │ ├── b3AlignedObjectArray.h │ │ ├── b3CommandLineArgs.h │ │ ├── b3FileUtils.h │ │ ├── b3HashMap.h │ │ ├── b3Logging.cpp │ │ ├── b3Logging.h │ │ ├── b3Matrix3x3.h │ │ ├── b3MinMax.h │ │ ├── b3PoolAllocator.h │ │ ├── b3QuadWord.h │ │ ├── b3Quaternion.h │ │ ├── b3Random.h │ │ ├── b3ResizablePool.h │ │ ├── b3Scalar.h │ │ ├── b3StackAlloc.h │ │ ├── b3Transform.h │ │ ├── b3TransformUtil.h │ │ ├── b3Vector3.cpp │ │ ├── b3Vector3.h │ │ ├── premake4.lua │ │ └── shared │ │ │ ├── b3Float4.h │ │ │ ├── b3Int2.h │ │ │ ├── b3Int4.h │ │ │ ├── b3Mat3x3.h │ │ │ ├── b3PlatformDefinitions.h │ │ │ └── b3Quat.h │ │ ├── Bullet3Dynamics │ │ ├── CMakeLists.txt │ │ ├── ConstraintSolver │ │ │ ├── b3ContactSolverInfo.h │ │ │ ├── b3FixedConstraint.cpp │ │ │ ├── b3FixedConstraint.h │ │ │ ├── b3Generic6DofConstraint.cpp │ │ │ ├── b3Generic6DofConstraint.h │ │ │ ├── b3JacobianEntry.h │ │ │ ├── b3PgsJacobiSolver.cpp │ │ │ ├── b3PgsJacobiSolver.h │ │ │ ├── b3Point2PointConstraint.cpp │ │ │ ├── b3Point2PointConstraint.h │ │ │ ├── b3SolverBody.h │ │ │ ├── b3SolverConstraint.h │ │ │ ├── b3TypedConstraint.cpp │ │ │ └── b3TypedConstraint.h │ │ ├── b3CpuRigidBodyPipeline.cpp │ │ ├── b3CpuRigidBodyPipeline.h │ │ ├── premake4.lua │ │ └── shared │ │ │ ├── b3ContactConstraint4.h │ │ │ ├── b3ConvertConstraint4.h │ │ │ ├── b3Inertia.h │ │ │ └── b3IntegrateTransforms.h │ │ ├── Bullet3Geometry │ │ ├── CMakeLists.txt │ │ ├── b3AabbUtil.h │ │ ├── b3ConvexHullComputer.cpp │ │ ├── b3ConvexHullComputer.h │ │ ├── b3GeometryUtil.cpp │ │ ├── b3GeometryUtil.h │ │ ├── b3GrahamScan2dConvexHull.h │ │ └── premake4.lua │ │ ├── Bullet3OpenCL │ │ ├── BroadphaseCollision │ │ │ ├── b3GpuBroadphaseInterface.h │ │ │ ├── b3GpuGridBroadphase.cpp │ │ │ ├── b3GpuGridBroadphase.h │ │ │ ├── b3GpuParallelLinearBvh.cpp │ │ │ ├── b3GpuParallelLinearBvh.h │ │ │ ├── b3GpuParallelLinearBvhBroadphase.cpp │ │ │ ├── b3GpuParallelLinearBvhBroadphase.h │ │ │ ├── b3GpuSapBroadphase.cpp │ │ │ ├── b3GpuSapBroadphase.h │ │ │ ├── b3SapAabb.h │ │ │ └── kernels │ │ │ │ ├── gridBroadphase.cl │ │ │ │ ├── gridBroadphaseKernels.h │ │ │ │ ├── parallelLinearBvh.cl │ │ │ │ ├── parallelLinearBvhKernels.h │ │ │ │ ├── sap.cl │ │ │ │ └── sapKernels.h │ │ ├── CMakeLists.txt │ │ ├── Initialize │ │ │ ├── b3OpenCLInclude.h │ │ │ ├── b3OpenCLUtils.cpp │ │ │ └── b3OpenCLUtils.h │ │ ├── NarrowphaseCollision │ │ │ ├── b3BvhInfo.h │ │ │ ├── b3ContactCache.cpp │ │ │ ├── b3ContactCache.h │ │ │ ├── b3ConvexHullContact.cpp │ │ │ ├── b3ConvexHullContact.h │ │ │ ├── b3ConvexPolyhedronCL.h │ │ │ ├── b3GjkEpa.cpp │ │ │ ├── b3GjkEpa.h │ │ │ ├── b3OptimizedBvh.cpp │ │ │ ├── b3OptimizedBvh.h │ │ │ ├── b3QuantizedBvh.cpp │ │ │ ├── b3QuantizedBvh.h │ │ │ ├── b3StridingMeshInterface.cpp │ │ │ ├── b3StridingMeshInterface.h │ │ │ ├── b3SupportMappings.h │ │ │ ├── b3TriangleCallback.cpp │ │ │ ├── b3TriangleCallback.h │ │ │ ├── b3TriangleIndexVertexArray.cpp │ │ │ ├── b3TriangleIndexVertexArray.h │ │ │ ├── b3VectorFloat4.h │ │ │ ├── b3VoronoiSimplexSolver.cpp │ │ │ ├── b3VoronoiSimplexSolver.h │ │ │ └── kernels │ │ │ │ ├── bvhTraversal.cl │ │ │ │ ├── bvhTraversal.h │ │ │ │ ├── mpr.cl │ │ │ │ ├── mprKernels.h │ │ │ │ ├── primitiveContacts.cl │ │ │ │ ├── primitiveContacts.h │ │ │ │ ├── sat.cl │ │ │ │ ├── satClipHullContacts.cl │ │ │ │ ├── satClipHullContacts.h │ │ │ │ ├── satConcave.cl │ │ │ │ ├── satConcaveKernels.h │ │ │ │ └── satKernels.h │ │ ├── ParallelPrimitives │ │ │ ├── b3BoundSearchCL.cpp │ │ │ ├── b3BoundSearchCL.h │ │ │ ├── b3BufferInfoCL.h │ │ │ ├── b3FillCL.cpp │ │ │ ├── b3FillCL.h │ │ │ ├── b3LauncherCL.cpp │ │ │ ├── b3LauncherCL.h │ │ │ ├── b3OpenCLArray.h │ │ │ ├── b3PrefixScanCL.cpp │ │ │ ├── b3PrefixScanCL.h │ │ │ ├── b3PrefixScanFloat4CL.cpp │ │ │ ├── b3PrefixScanFloat4CL.h │ │ │ ├── b3RadixSort32CL.cpp │ │ │ ├── b3RadixSort32CL.h │ │ │ └── kernels │ │ │ │ ├── BoundSearchKernels.cl │ │ │ │ ├── BoundSearchKernelsCL.h │ │ │ │ ├── CopyKernels.cl │ │ │ │ ├── CopyKernelsCL.h │ │ │ │ ├── FillKernels.cl │ │ │ │ ├── FillKernelsCL.h │ │ │ │ ├── PrefixScanFloat4Kernels.cl │ │ │ │ ├── PrefixScanKernels.cl │ │ │ │ ├── PrefixScanKernelsCL.h │ │ │ │ ├── PrefixScanKernelsFloat4CL.h │ │ │ │ ├── RadixSort32Kernels.cl │ │ │ │ └── RadixSort32KernelsCL.h │ │ ├── Raycast │ │ │ ├── b3GpuRaycast.cpp │ │ │ ├── b3GpuRaycast.h │ │ │ └── kernels │ │ │ │ ├── rayCastKernels.cl │ │ │ │ └── rayCastKernels.h │ │ ├── RigidBody │ │ │ ├── b3GpuConstraint4.h │ │ │ ├── b3GpuGenericConstraint.cpp │ │ │ ├── b3GpuGenericConstraint.h │ │ │ ├── b3GpuJacobiContactSolver.cpp │ │ │ ├── b3GpuJacobiContactSolver.h │ │ │ ├── b3GpuNarrowPhase.cpp │ │ │ ├── b3GpuNarrowPhase.h │ │ │ ├── b3GpuNarrowPhaseInternalData.h │ │ │ ├── b3GpuPgsConstraintSolver.cpp │ │ │ ├── b3GpuPgsConstraintSolver.h │ │ │ ├── b3GpuPgsContactSolver.cpp │ │ │ ├── b3GpuPgsContactSolver.h │ │ │ ├── b3GpuRigidBodyPipeline.cpp │ │ │ ├── b3GpuRigidBodyPipeline.h │ │ │ ├── b3GpuRigidBodyPipelineInternalData.h │ │ │ ├── b3GpuSolverBody.h │ │ │ ├── b3GpuSolverConstraint.h │ │ │ ├── b3Solver.cpp │ │ │ ├── b3Solver.h │ │ │ └── kernels │ │ │ │ ├── batchingKernels.cl │ │ │ │ ├── batchingKernels.h │ │ │ │ ├── batchingKernelsNew.cl │ │ │ │ ├── batchingKernelsNew.h │ │ │ │ ├── integrateKernel.cl │ │ │ │ ├── integrateKernel.h │ │ │ │ ├── jointSolver.cl │ │ │ │ ├── jointSolver.h │ │ │ │ ├── solveContact.cl │ │ │ │ ├── solveContact.h │ │ │ │ ├── solveFriction.cl │ │ │ │ ├── solveFriction.h │ │ │ │ ├── solverSetup.cl │ │ │ │ ├── solverSetup.h │ │ │ │ ├── solverSetup2.cl │ │ │ │ ├── solverSetup2.h │ │ │ │ ├── solverUtils.cl │ │ │ │ ├── solverUtils.h │ │ │ │ ├── updateAabbsKernel.cl │ │ │ │ └── updateAabbsKernel.h │ │ └── premake4.lua │ │ ├── Bullet3Serialize │ │ └── Bullet2FileLoader │ │ │ ├── CMakeLists.txt │ │ │ ├── autogenerated │ │ │ └── bullet2.h │ │ │ ├── b3BulletFile.cpp │ │ │ ├── b3BulletFile.h │ │ │ ├── b3Chunk.cpp │ │ │ ├── b3Chunk.h │ │ │ ├── b3Common.h │ │ │ ├── b3DNA.cpp │ │ │ ├── b3DNA.h │ │ │ ├── b3Defines.h │ │ │ ├── b3File.cpp │ │ │ ├── b3File.h │ │ │ ├── b3Serializer.cpp │ │ │ ├── b3Serializer.h │ │ │ └── premake4.lua │ │ ├── BulletCollision │ │ ├── BroadphaseCollision │ │ │ ├── btAxisSweep3.cpp │ │ │ ├── btAxisSweep3.h │ │ │ ├── btAxisSweep3Internal.h │ │ │ ├── btBroadphaseInterface.h │ │ │ ├── btBroadphaseProxy.cpp │ │ │ ├── btBroadphaseProxy.h │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ ├── btCollisionAlgorithm.h │ │ │ ├── btDbvt.cpp │ │ │ ├── btDbvt.h │ │ │ ├── btDbvtBroadphase.cpp │ │ │ ├── btDbvtBroadphase.h │ │ │ ├── btDispatcher.cpp │ │ │ ├── btDispatcher.h │ │ │ ├── btOverlappingPairCache.cpp │ │ │ ├── btOverlappingPairCache.h │ │ │ ├── btOverlappingPairCallback.h │ │ │ ├── btQuantizedBvh.cpp │ │ │ ├── btQuantizedBvh.h │ │ │ ├── btSimpleBroadphase.cpp │ │ │ └── btSimpleBroadphase.h │ │ ├── CMakeLists.txt │ │ ├── CollisionDispatch │ │ │ ├── SphereTriangleDetector.cpp │ │ │ ├── SphereTriangleDetector.h │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ ├── btBoxBoxDetector.cpp │ │ │ ├── btBoxBoxDetector.h │ │ │ ├── btCollisionConfiguration.h │ │ │ ├── btCollisionCreateFunc.h │ │ │ ├── btCollisionDispatcher.cpp │ │ │ ├── btCollisionDispatcher.h │ │ │ ├── btCollisionDispatcherMt.cpp │ │ │ ├── btCollisionDispatcherMt.h │ │ │ ├── btCollisionObject.cpp │ │ │ ├── btCollisionObject.h │ │ │ ├── btCollisionObjectWrapper.h │ │ │ ├── btCollisionWorld.cpp │ │ │ ├── btCollisionWorld.h │ │ │ ├── btCollisionWorldImporter.cpp │ │ │ ├── btCollisionWorldImporter.h │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ ├── btCompoundCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCompoundCollisionAlgorithm.h │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ ├── btGhostObject.cpp │ │ │ ├── btGhostObject.h │ │ │ ├── btHashedSimplePairCache.cpp │ │ │ ├── btHashedSimplePairCache.h │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ ├── btInternalEdgeUtility.h │ │ │ ├── btManifoldResult.cpp │ │ │ ├── btManifoldResult.h │ │ │ ├── btSimulationIslandManager.cpp │ │ │ ├── btSimulationIslandManager.h │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ ├── btUnionFind.cpp │ │ │ └── btUnionFind.h │ │ ├── CollisionShapes │ │ │ ├── btBox2dShape.cpp │ │ │ ├── btBox2dShape.h │ │ │ ├── btBoxShape.cpp │ │ │ ├── btBoxShape.h │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ ├── btCapsuleShape.cpp │ │ │ ├── btCapsuleShape.h │ │ │ ├── btCollisionMargin.h │ │ │ ├── btCollisionShape.cpp │ │ │ ├── btCollisionShape.h │ │ │ ├── btCompoundShape.cpp │ │ │ ├── btCompoundShape.h │ │ │ ├── btConcaveShape.cpp │ │ │ ├── btConcaveShape.h │ │ │ ├── btConeShape.cpp │ │ │ ├── btConeShape.h │ │ │ ├── btConvex2dShape.cpp │ │ │ ├── btConvex2dShape.h │ │ │ ├── btConvexHullShape.cpp │ │ │ ├── btConvexHullShape.h │ │ │ ├── btConvexInternalShape.cpp │ │ │ ├── btConvexInternalShape.h │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ ├── btConvexPointCloudShape.h │ │ │ ├── btConvexPolyhedron.cpp │ │ │ ├── btConvexPolyhedron.h │ │ │ ├── btConvexShape.cpp │ │ │ ├── btConvexShape.h │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ ├── btCylinderShape.cpp │ │ │ ├── btCylinderShape.h │ │ │ ├── btEmptyShape.cpp │ │ │ ├── btEmptyShape.h │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ ├── btMaterial.h │ │ │ ├── btMiniSDF.cpp │ │ │ ├── btMiniSDF.h │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ ├── btMinkowskiSumShape.h │ │ │ ├── btMultiSphereShape.cpp │ │ │ ├── btMultiSphereShape.h │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ ├── btOptimizedBvh.cpp │ │ │ ├── btOptimizedBvh.h │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ ├── btPolyhedralConvexShape.h │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ ├── btSdfCollisionShape.cpp │ │ │ ├── btSdfCollisionShape.h │ │ │ ├── btShapeHull.cpp │ │ │ ├── btShapeHull.h │ │ │ ├── btSphereShape.cpp │ │ │ ├── btSphereShape.h │ │ │ ├── btStaticPlaneShape.cpp │ │ │ ├── btStaticPlaneShape.h │ │ │ ├── btStridingMeshInterface.cpp │ │ │ ├── btStridingMeshInterface.h │ │ │ ├── btTetrahedronShape.cpp │ │ │ ├── btTetrahedronShape.h │ │ │ ├── btTriangleBuffer.cpp │ │ │ ├── btTriangleBuffer.h │ │ │ ├── btTriangleCallback.cpp │ │ │ ├── btTriangleCallback.h │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ ├── btTriangleInfoMap.h │ │ │ ├── btTriangleMesh.cpp │ │ │ ├── btTriangleMesh.h │ │ │ ├── btTriangleMeshShape.cpp │ │ │ ├── btTriangleMeshShape.h │ │ │ ├── btTriangleShape.h │ │ │ ├── btUniformScalingShape.cpp │ │ │ └── btUniformScalingShape.h │ │ ├── Gimpact │ │ │ ├── btBoxCollision.h │ │ │ ├── btClipPolygon.h │ │ │ ├── btCompoundFromGimpact.h │ │ │ ├── btContactProcessing.cpp │ │ │ ├── btContactProcessing.h │ │ │ ├── btContactProcessingStructs.h │ │ │ ├── btGImpactBvh.cpp │ │ │ ├── btGImpactBvh.h │ │ │ ├── btGImpactBvhStructs.h │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ ├── btGImpactMassUtil.h │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ ├── btGImpactQuantizedBvhStructs.h │ │ │ ├── btGImpactShape.cpp │ │ │ ├── btGImpactShape.h │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ ├── btGenericPoolAllocator.h │ │ │ ├── btGeometryOperations.h │ │ │ ├── btQuantization.h │ │ │ ├── btTriangleShapeEx.cpp │ │ │ ├── btTriangleShapeEx.h │ │ │ ├── gim_array.h │ │ │ ├── gim_basic_geometry_operations.h │ │ │ ├── gim_bitset.h │ │ │ ├── gim_box_collision.h │ │ │ ├── gim_box_set.cpp │ │ │ ├── gim_box_set.h │ │ │ ├── gim_clip_polygon.h │ │ │ ├── gim_contact.cpp │ │ │ ├── gim_contact.h │ │ │ ├── gim_geom_types.h │ │ │ ├── gim_geometry.h │ │ │ ├── gim_hash_table.h │ │ │ ├── gim_linear_math.h │ │ │ ├── gim_math.h │ │ │ ├── gim_memory.cpp │ │ │ ├── gim_memory.h │ │ │ ├── gim_pair.h │ │ │ ├── gim_radixsort.h │ │ │ ├── gim_tri_collision.cpp │ │ │ └── gim_tri_collision.h │ │ ├── NarrowPhaseCollision │ │ │ ├── btComputeGjkEpaPenetration.h │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ ├── btContinuousConvexCollision.h │ │ │ ├── btConvexCast.cpp │ │ │ ├── btConvexCast.h │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ ├── btGjkCollisionDescription.h │ │ │ ├── btGjkConvexCast.cpp │ │ │ ├── btGjkConvexCast.h │ │ │ ├── btGjkEpa2.cpp │ │ │ ├── btGjkEpa2.h │ │ │ ├── btGjkEpa3.h │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ ├── btGjkPairDetector.cpp │ │ │ ├── btGjkPairDetector.h │ │ │ ├── btManifoldPoint.h │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ ├── btMprPenetration.h │ │ │ ├── btPersistentManifold.cpp │ │ │ ├── btPersistentManifold.h │ │ │ ├── btPointCollector.h │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ ├── btPolyhedralContactClipping.h │ │ │ ├── btRaycastCallback.cpp │ │ │ ├── btRaycastCallback.h │ │ │ ├── btSimplexSolverInterface.h │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ ├── btSubSimplexConvexCast.h │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ └── btVoronoiSimplexSolver.h │ │ └── premake4.lua │ │ ├── BulletDynamics │ │ ├── CMakeLists.txt │ │ ├── Character │ │ │ ├── btCharacterControllerInterface.h │ │ │ ├── btKinematicCharacterController.cpp │ │ │ └── btKinematicCharacterController.h │ │ ├── ConstraintSolver │ │ │ ├── btBatchedConstraints.cpp │ │ │ ├── btBatchedConstraints.h │ │ │ ├── btConeTwistConstraint.cpp │ │ │ ├── btConeTwistConstraint.h │ │ │ ├── btConstraintSolver.h │ │ │ ├── btContactConstraint.cpp │ │ │ ├── btContactConstraint.h │ │ │ ├── btContactSolverInfo.h │ │ │ ├── btFixedConstraint.cpp │ │ │ ├── btFixedConstraint.h │ │ │ ├── btGearConstraint.cpp │ │ │ ├── btGearConstraint.h │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ ├── btGeneric6DofConstraint.h │ │ │ ├── btGeneric6DofSpring2Constraint.cpp │ │ │ ├── btGeneric6DofSpring2Constraint.h │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ ├── btHinge2Constraint.cpp │ │ │ ├── btHinge2Constraint.h │ │ │ ├── btHingeConstraint.cpp │ │ │ ├── btHingeConstraint.h │ │ │ ├── btJacobianEntry.h │ │ │ ├── btNNCGConstraintSolver.cpp │ │ │ ├── btNNCGConstraintSolver.h │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ ├── btPoint2PointConstraint.h │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ ├── btSequentialImpulseConstraintSolverMt.cpp │ │ │ ├── btSequentialImpulseConstraintSolverMt.h │ │ │ ├── btSliderConstraint.cpp │ │ │ ├── btSliderConstraint.h │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ ├── btSolve2LinearConstraint.h │ │ │ ├── btSolverBody.h │ │ │ ├── btSolverConstraint.h │ │ │ ├── btTypedConstraint.cpp │ │ │ ├── btTypedConstraint.h │ │ │ ├── btUniversalConstraint.cpp │ │ │ └── btUniversalConstraint.h │ │ ├── Dynamics │ │ │ ├── btActionInterface.h │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ ├── btDiscreteDynamicsWorldMt.cpp │ │ │ ├── btDiscreteDynamicsWorldMt.h │ │ │ ├── btDynamicsWorld.h │ │ │ ├── btRigidBody.cpp │ │ │ ├── btRigidBody.h │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ ├── btSimpleDynamicsWorld.h │ │ │ ├── btSimulationIslandManagerMt.cpp │ │ │ └── btSimulationIslandManagerMt.h │ │ ├── Featherstone │ │ │ ├── btMultiBody.cpp │ │ │ ├── btMultiBody.h │ │ │ ├── btMultiBodyConstraint.cpp │ │ │ ├── btMultiBodyConstraint.h │ │ │ ├── btMultiBodyConstraintSolver.cpp │ │ │ ├── btMultiBodyConstraintSolver.h │ │ │ ├── btMultiBodyDynamicsWorld.cpp │ │ │ ├── btMultiBodyDynamicsWorld.h │ │ │ ├── btMultiBodyFixedConstraint.cpp │ │ │ ├── btMultiBodyFixedConstraint.h │ │ │ ├── btMultiBodyGearConstraint.cpp │ │ │ ├── btMultiBodyGearConstraint.h │ │ │ ├── btMultiBodyInplaceSolverIslandCallback.h │ │ │ ├── btMultiBodyJointFeedback.h │ │ │ ├── btMultiBodyJointLimitConstraint.cpp │ │ │ ├── btMultiBodyJointLimitConstraint.h │ │ │ ├── btMultiBodyJointMotor.cpp │ │ │ ├── btMultiBodyJointMotor.h │ │ │ ├── btMultiBodyLink.h │ │ │ ├── btMultiBodyLinkCollider.h │ │ │ ├── btMultiBodyMLCPConstraintSolver.cpp │ │ │ ├── btMultiBodyMLCPConstraintSolver.h │ │ │ ├── btMultiBodyPoint2Point.cpp │ │ │ ├── btMultiBodyPoint2Point.h │ │ │ ├── btMultiBodySliderConstraint.cpp │ │ │ ├── btMultiBodySliderConstraint.h │ │ │ ├── btMultiBodySolverConstraint.h │ │ │ ├── btMultiBodySphericalJointLimit.cpp │ │ │ ├── btMultiBodySphericalJointLimit.h │ │ │ ├── btMultiBodySphericalJointMotor.cpp │ │ │ └── btMultiBodySphericalJointMotor.h │ │ ├── MLCPSolvers │ │ │ ├── btDantzigLCP.cpp │ │ │ ├── btDantzigLCP.h │ │ │ ├── btDantzigSolver.h │ │ │ ├── btLemkeAlgorithm.cpp │ │ │ ├── btLemkeAlgorithm.h │ │ │ ├── btLemkeSolver.h │ │ │ ├── btMLCPSolver.cpp │ │ │ ├── btMLCPSolver.h │ │ │ ├── btMLCPSolverInterface.h │ │ │ ├── btPATHSolver.h │ │ │ └── btSolveProjectedGaussSeidel.h │ │ ├── Vehicle │ │ │ ├── btRaycastVehicle.cpp │ │ │ ├── btRaycastVehicle.h │ │ │ ├── btVehicleRaycaster.h │ │ │ ├── btWheelInfo.cpp │ │ │ └── btWheelInfo.h │ │ └── premake4.lua │ │ ├── BulletInverseDynamics │ │ ├── CMakeLists.txt │ │ ├── IDConfig.hpp │ │ ├── IDConfigBuiltin.hpp │ │ ├── IDConfigEigen.hpp │ │ ├── IDErrorMessages.hpp │ │ ├── IDMath.cpp │ │ ├── IDMath.hpp │ │ ├── MultiBodyTree.cpp │ │ ├── MultiBodyTree.hpp │ │ ├── details │ │ │ ├── IDEigenInterface.hpp │ │ │ ├── IDLinearMathInterface.hpp │ │ │ ├── IDMatVec.hpp │ │ │ ├── MultiBodyTreeImpl.cpp │ │ │ ├── MultiBodyTreeImpl.hpp │ │ │ ├── MultiBodyTreeInitCache.cpp │ │ │ └── MultiBodyTreeInitCache.hpp │ │ └── premake4.lua │ │ ├── BulletSoftBody │ │ ├── BulletReducedDeformableBody │ │ │ ├── btReducedDeformableBody.cpp │ │ │ ├── btReducedDeformableBody.h │ │ │ ├── btReducedDeformableBodyHelpers.cpp │ │ │ ├── btReducedDeformableBodyHelpers.h │ │ │ ├── btReducedDeformableBodySolver.cpp │ │ │ ├── btReducedDeformableBodySolver.h │ │ │ ├── btReducedDeformableContactConstraint.cpp │ │ │ └── btReducedDeformableContactConstraint.h │ │ ├── CMakeLists.txt │ │ ├── DeformableBodyInplaceSolverIslandCallback.h │ │ ├── btCGProjection.h │ │ ├── btConjugateGradient.h │ │ ├── btConjugateResidual.h │ │ ├── btDefaultSoftBodySolver.cpp │ │ ├── btDefaultSoftBodySolver.h │ │ ├── btDeformableBackwardEulerObjective.cpp │ │ ├── btDeformableBackwardEulerObjective.h │ │ ├── btDeformableBodySolver.cpp │ │ ├── btDeformableBodySolver.h │ │ ├── btDeformableContactConstraint.cpp │ │ ├── btDeformableContactConstraint.h │ │ ├── btDeformableContactProjection.cpp │ │ ├── btDeformableContactProjection.h │ │ ├── btDeformableCorotatedForce.h │ │ ├── btDeformableGravityForce.h │ │ ├── btDeformableLagrangianForce.h │ │ ├── btDeformableLinearElasticityForce.h │ │ ├── btDeformableMassSpringForce.h │ │ ├── btDeformableMousePickingForce.h │ │ ├── btDeformableMultiBodyConstraintSolver.cpp │ │ ├── btDeformableMultiBodyConstraintSolver.h │ │ ├── btDeformableMultiBodyDynamicsWorld.cpp │ │ ├── btDeformableMultiBodyDynamicsWorld.h │ │ ├── btDeformableNeoHookeanForce.h │ │ ├── btKrylovSolver.h │ │ ├── btPreconditioner.h │ │ ├── btSoftBody.cpp │ │ ├── btSoftBody.h │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ ├── btSoftBodyData.h │ │ ├── btSoftBodyHelpers.cpp │ │ ├── btSoftBodyHelpers.h │ │ ├── btSoftBodyInternals.h │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ ├── btSoftBodySolverVertexBuffer.h │ │ ├── btSoftBodySolvers.h │ │ ├── btSoftMultiBodyDynamicsWorld.cpp │ │ ├── btSoftMultiBodyDynamicsWorld.h │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ ├── btSoftRigidDynamicsWorld.h │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ ├── btSparseSDF.h │ │ ├── poly34.cpp │ │ ├── poly34.h │ │ └── premake4.lua │ │ ├── CMakeLists.txt │ │ ├── LinearMath │ │ ├── CMakeLists.txt │ │ ├── TaskScheduler │ │ │ ├── btTaskScheduler.cpp │ │ │ ├── btThreadSupportInterface.h │ │ │ ├── btThreadSupportPosix.cpp │ │ │ └── btThreadSupportWin32.cpp │ │ ├── btAabbUtil2.h │ │ ├── btAlignedAllocator.cpp │ │ ├── btAlignedAllocator.h │ │ ├── btAlignedObjectArray.h │ │ ├── btConvexHull.cpp │ │ ├── btConvexHull.h │ │ ├── btConvexHullComputer.cpp │ │ ├── btConvexHullComputer.h │ │ ├── btCpuFeatureUtility.h │ │ ├── btDefaultMotionState.h │ │ ├── btGeometryUtil.cpp │ │ ├── btGeometryUtil.h │ │ ├── btGrahamScan2dConvexHull.h │ │ ├── btHashMap.h │ │ ├── btIDebugDraw.h │ │ ├── btImplicitQRSVD.h │ │ ├── btList.h │ │ ├── btMatrix3x3.h │ │ ├── btMatrixX.h │ │ ├── btMinMax.h │ │ ├── btModifiedGramSchmidt.h │ │ ├── btMotionState.h │ │ ├── btPolarDecomposition.cpp │ │ ├── btPolarDecomposition.h │ │ ├── btPoolAllocator.h │ │ ├── btQuadWord.h │ │ ├── btQuaternion.h │ │ ├── btQuickprof.cpp │ │ ├── btQuickprof.h │ │ ├── btRandom.h │ │ ├── btReducedVector.cpp │ │ ├── btReducedVector.h │ │ ├── btScalar.h │ │ ├── btSerializer.cpp │ │ ├── btSerializer.h │ │ ├── btSerializer64.cpp │ │ ├── btSpatialAlgebra.h │ │ ├── btStackAlloc.h │ │ ├── btThreads.cpp │ │ ├── btThreads.h │ │ ├── btTransform.h │ │ ├── btTransformUtil.h │ │ ├── btVector3.cpp │ │ ├── btVector3.h │ │ └── premake4.lua │ │ ├── btBulletCollisionAll.cpp │ │ ├── btBulletCollisionCommon.h │ │ ├── btBulletDynamicsAll.cpp │ │ ├── btBulletDynamicsCommon.h │ │ ├── btLinearMathAll.cpp │ │ └── clew │ │ ├── clew.c │ │ └── clew.h ├── fmt │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── _ReadmeDep.txt │ ├── include │ │ └── fmt │ │ │ ├── args.h │ │ │ ├── base.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ ├── std.h │ │ │ └── xchar.h │ ├── src │ │ ├── fmt.cc │ │ ├── format.cc │ │ └── os.cc │ └── support │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── C++.sublime-syntax │ │ ├── README │ │ ├── Vagrantfile │ │ ├── bazel │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── MODULE.bazel │ │ ├── README.md │ │ └── WORKSPACE.bazel │ │ ├── build.gradle │ │ ├── check-commits │ │ ├── cmake │ │ ├── FindSetEnv.cmake │ │ ├── JoinPaths.cmake │ │ ├── fmt-config.cmake.in │ │ └── fmt.pc.in │ │ ├── docopt.py │ │ ├── mkdocs │ │ ├── mkdocs.yml │ │ ├── printable.py │ │ ├── python │ │ └── mkdocstrings_handlers │ │ │ └── cxx │ │ │ ├── __init__.py │ │ │ └── templates │ │ │ └── README │ │ └── release.py ├── lua │ ├── CMakeLists.txt │ ├── Makefile │ ├── README │ ├── _ReadmeDep.txt │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ ├── src.cmake │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── magic_enum │ ├── LICENSE │ ├── _ReadmeDep.txt │ └── include │ │ └── magic_enum │ │ ├── magic_enum.hpp │ │ ├── magic_enum_all.hpp │ │ ├── magic_enum_containers.hpp │ │ ├── magic_enum_flags.hpp │ │ ├── magic_enum_format.hpp │ │ ├── magic_enum_fuse.hpp │ │ ├── magic_enum_iostream.hpp │ │ ├── magic_enum_switch.hpp │ │ └── magic_enum_utility.hpp ├── meshoptimizer │ ├── CMakeLists.txt │ ├── _ReadmeDep.txt │ ├── config.cmake.in │ └── src │ │ ├── allocator.cpp │ │ ├── clusterizer.cpp │ │ ├── indexcodec.cpp │ │ ├── indexgenerator.cpp │ │ ├── meshoptimizer.h │ │ ├── overdrawanalyzer.cpp │ │ ├── overdrawoptimizer.cpp │ │ ├── simplifier.cpp │ │ ├── spatialorder.cpp │ │ ├── stripifier.cpp │ │ ├── vcacheanalyzer.cpp │ │ ├── vcacheoptimizer.cpp │ │ ├── vertexcodec.cpp │ │ ├── vfetchanalyzer.cpp │ │ └── vfetchoptimizer.cpp ├── ogg │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CHANGES │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── _ReadmeDep.txt │ ├── appveyor.yml │ ├── autogen.sh │ ├── configure.ac │ ├── include │ │ ├── Makefile.am │ │ └── ogg │ │ │ ├── Makefile.am │ │ │ ├── config_types.h.in │ │ │ ├── ogg.h │ │ │ └── os_types.h │ ├── libogg.spec.in │ ├── ogg-uninstalled.pc.in │ ├── ogg.m4 │ ├── ogg.pc.in │ ├── releases.sha2 │ ├── src │ │ ├── Makefile.am │ │ ├── bitwise.c │ │ ├── crctable.h │ │ └── framing.c │ └── win32 │ │ └── ogg.def ├── pugixml │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── _ReadmeDep.txt │ ├── readme.txt │ ├── scripts │ │ ├── pugixml-config.cmake.in │ │ └── pugixml.pc.in │ └── src │ │ ├── pugiconfig.hpp │ │ ├── pugixml.cpp │ │ └── pugixml.hpp ├── recastnavigation │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── DebugUtils │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── DebugDraw.h │ │ │ ├── DetourDebugDraw.h │ │ │ ├── RecastDebugDraw.h │ │ │ └── RecastDump.h │ │ └── Source │ │ │ ├── DebugDraw.cpp │ │ │ ├── DetourDebugDraw.cpp │ │ │ ├── RecastDebugDraw.cpp │ │ │ └── RecastDump.cpp │ ├── Detour │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── DetourAlloc.h │ │ │ ├── DetourAssert.h │ │ │ ├── DetourCommon.h │ │ │ ├── DetourMath.h │ │ │ ├── DetourNavMesh.h │ │ │ ├── DetourNavMeshBuilder.h │ │ │ ├── DetourNavMeshQuery.h │ │ │ ├── DetourNode.h │ │ │ └── DetourStatus.h │ │ └── Source │ │ │ ├── DetourAlloc.cpp │ │ │ ├── DetourAssert.cpp │ │ │ ├── DetourCommon.cpp │ │ │ ├── DetourNavMesh.cpp │ │ │ ├── DetourNavMeshBuilder.cpp │ │ │ ├── DetourNavMeshQuery.cpp │ │ │ └── DetourNode.cpp │ ├── DetourCrowd │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── DetourCrowd.h │ │ │ ├── DetourLocalBoundary.h │ │ │ ├── DetourObstacleAvoidance.h │ │ │ ├── DetourPathCorridor.h │ │ │ ├── DetourPathQueue.h │ │ │ └── DetourProximityGrid.h │ │ └── Source │ │ │ ├── DetourCrowd.cpp │ │ │ ├── DetourLocalBoundary.cpp │ │ │ ├── DetourObstacleAvoidance.cpp │ │ │ ├── DetourPathCorridor.cpp │ │ │ ├── DetourPathQueue.cpp │ │ │ └── DetourProximityGrid.cpp │ ├── DetourTileCache │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── DetourTileCache.h │ │ │ └── DetourTileCacheBuilder.h │ │ └── Source │ │ │ ├── DetourTileCache.cpp │ │ │ └── DetourTileCacheBuilder.cpp │ ├── Docs │ │ ├── Conceptual │ │ │ ├── license_c.txt │ │ │ └── mainpage_c.txt │ │ ├── DoxygenLayout.xml │ │ ├── Extern │ │ │ └── Recast_api.txt │ │ ├── Images │ │ │ └── recast_intro.png │ │ ├── Readme.txt │ │ ├── footer.html │ │ └── header.html │ ├── Doxyfile │ ├── License.txt │ ├── README.md │ ├── Recast │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── Recast.h │ │ │ ├── RecastAlloc.h │ │ │ └── RecastAssert.h │ │ └── Source │ │ │ ├── Recast.cpp │ │ │ ├── RecastAlloc.cpp │ │ │ ├── RecastArea.cpp │ │ │ ├── RecastAssert.cpp │ │ │ ├── RecastContour.cpp │ │ │ ├── RecastFilter.cpp │ │ │ ├── RecastLayers.cpp │ │ │ ├── RecastMesh.cpp │ │ │ ├── RecastMeshDetail.cpp │ │ │ ├── RecastRasterization.cpp │ │ │ └── RecastRegion.cpp │ ├── RecastDemo │ │ ├── Bin │ │ │ ├── .gitignore │ │ │ ├── DroidSans.ttf │ │ │ └── TestCases │ │ │ │ ├── movement_test.txt │ │ │ │ ├── nav_mesh_test.txt │ │ │ │ └── raycast_test.txt │ │ ├── CMakeLists.txt │ │ ├── Contrib │ │ │ ├── fastlz │ │ │ │ ├── README.TXT │ │ │ │ ├── fastlz.c │ │ │ │ └── fastlz.h │ │ │ ├── readme-sdl.txt │ │ │ └── stb_truetype.h │ │ ├── Include │ │ │ ├── ChunkyTriMesh.h │ │ │ ├── ConvexVolumeTool.h │ │ │ ├── CrowdTool.h │ │ │ ├── Filelist.h │ │ │ ├── InputGeom.h │ │ │ ├── MeshLoaderObj.h │ │ │ ├── NavMeshPruneTool.h │ │ │ ├── NavMeshTesterTool.h │ │ │ ├── OffMeshConnectionTool.h │ │ │ ├── PerfTimer.h │ │ │ ├── Sample.h │ │ │ ├── SampleInterfaces.h │ │ │ ├── Sample_Debug.h │ │ │ ├── Sample_SoloMesh.h │ │ │ ├── Sample_TempObstacles.h │ │ │ ├── Sample_TileMesh.h │ │ │ ├── TestCase.h │ │ │ ├── ValueHistory.h │ │ │ ├── imgui.h │ │ │ └── imguiRenderGL.h │ │ ├── Source │ │ │ ├── ChunkyTriMesh.cpp │ │ │ ├── ConvexVolumeTool.cpp │ │ │ ├── CrowdTool.cpp │ │ │ ├── Filelist.cpp │ │ │ ├── InputGeom.cpp │ │ │ ├── MeshLoaderObj.cpp │ │ │ ├── NavMeshPruneTool.cpp │ │ │ ├── NavMeshTesterTool.cpp │ │ │ ├── OffMeshConnectionTool.cpp │ │ │ ├── PerfTimer.cpp │ │ │ ├── Sample.cpp │ │ │ ├── SampleInterfaces.cpp │ │ │ ├── Sample_Debug.cpp │ │ │ ├── Sample_SoloMesh.cpp │ │ │ ├── Sample_TempObstacles.cpp │ │ │ ├── Sample_TileMesh.cpp │ │ │ ├── TestCase.cpp │ │ │ ├── ValueHistory.cpp │ │ │ ├── imgui.cpp │ │ │ ├── imguiRenderGL.cpp │ │ │ └── main.cpp │ │ ├── cmake │ │ │ └── FindSDL2.cmake │ │ ├── premake5.lua │ │ └── screenshot.png │ ├── Tests │ │ ├── CMakeLists.txt │ │ ├── Detour │ │ │ └── Tests_Detour.cpp │ │ ├── Recast │ │ │ └── Tests_Recast.cpp │ │ ├── catch.hpp │ │ └── main.cpp │ ├── _ReadmeDep.txt │ └── appveyor.yml ├── rtm │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── _ReadmeDep.txt │ └── includes │ │ └── rtm │ │ ├── constants.h │ │ ├── fwd.h │ │ ├── impl │ │ ├── bit_cast.impl.h │ │ ├── cmath.impl.h │ │ ├── compiler_utils.h │ │ ├── detect_arch.h │ │ ├── detect_compiler.h │ │ ├── detect_cpp_version.h │ │ ├── detect_features.h │ │ ├── error.h │ │ ├── macros.mask4.impl.h │ │ ├── macros.matrix.impl.h │ │ ├── macros.vector4.impl.h │ │ ├── mask_common.h │ │ ├── matrix_affine_common.h │ │ ├── matrix_cast.h │ │ ├── matrix_common.h │ │ ├── memory_utils.h │ │ ├── quat_common.h │ │ ├── qv_common.h │ │ ├── qvs_common.h │ │ ├── qvv_common.h │ │ ├── scalar_common.h │ │ ├── type_args.h │ │ └── vector_common.h │ │ ├── macros.h │ │ ├── mask4d.h │ │ ├── mask4f.h │ │ ├── mask4i.h │ │ ├── mask4q.h │ │ ├── math.h │ │ ├── matrix3x3d.h │ │ ├── matrix3x3f.h │ │ ├── matrix3x4d.h │ │ ├── matrix3x4f.h │ │ ├── matrix4x4d.h │ │ ├── matrix4x4f.h │ │ ├── packing │ │ ├── quatd.h │ │ └── quatf.h │ │ ├── quatd.h │ │ ├── quatf.h │ │ ├── qvd.h │ │ ├── qvf.h │ │ ├── qvsd.h │ │ ├── qvsf.h │ │ ├── qvvd.h │ │ ├── qvvf.h │ │ ├── scalard.h │ │ ├── scalarf.h │ │ ├── type_traits.h │ │ ├── types.h │ │ ├── vector4d.h │ │ ├── vector4f.h │ │ └── version.h ├── sol │ ├── _ReadmeDep.txt │ └── sol │ │ ├── config.hpp │ │ ├── forward.hpp │ │ └── sol.hpp ├── sqlite │ ├── CMakeLists.txt │ ├── _ReadmeDep.txt │ └── src │ │ ├── shell.c │ │ ├── sqlite3.c │ │ ├── sqlite3.h │ │ └── sqlite3ext.h ├── theora │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CHANGES │ ├── CMakeLists.txt │ ├── COPYING │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── SConstruct │ ├── _ReadmeDep.txt │ ├── autogen.sh │ ├── configure.ac │ ├── include │ │ ├── Makefile.am │ │ └── theora │ │ │ ├── Makefile.am │ │ │ ├── codec.h │ │ │ ├── theora.h │ │ │ ├── theoradec.h │ │ │ └── theoraenc.h │ ├── lib │ │ ├── Makefile.am │ │ ├── Version_script │ │ ├── Version_script-dec │ │ ├── Version_script-enc │ │ ├── analyze.c │ │ ├── apiwrapper.c │ │ ├── apiwrapper.h │ │ ├── arm │ │ │ ├── arm2gnu.pl │ │ │ ├── armbits.h │ │ │ ├── armbits.s │ │ │ ├── armcpu.c │ │ │ ├── armcpu.h │ │ │ ├── armenc.c │ │ │ ├── armenc.h │ │ │ ├── armencfrag.s │ │ │ ├── armenquant.s │ │ │ ├── armfrag.s │ │ │ ├── armidct.s │ │ │ ├── armint.h │ │ │ ├── armloop.s │ │ │ ├── armopts.s.in │ │ │ └── armstate.c │ │ ├── bitpack.c │ │ ├── bitpack.h │ │ ├── c64x │ │ │ ├── c64xdec.c │ │ │ ├── c64xdec.h │ │ │ ├── c64xfrag.c │ │ │ ├── c64xidct.c │ │ │ ├── c64xint.h │ │ │ └── c64xstate.c │ │ ├── collect.c │ │ ├── collect.h │ │ ├── dct.h │ │ ├── decapiwrapper.c │ │ ├── decinfo.c │ │ ├── decint.h │ │ ├── decode.c │ │ ├── defexp.awk │ │ ├── dequant.c │ │ ├── dequant.h │ │ ├── encapiwrapper.c │ │ ├── encfrag.c │ │ ├── encinfo.c │ │ ├── encint.h │ │ ├── encode.c │ │ ├── encoder_disabled.c │ │ ├── enquant.c │ │ ├── enquant.h │ │ ├── fdct.c │ │ ├── fragment.c │ │ ├── huffdec.c │ │ ├── huffdec.h │ │ ├── huffenc.c │ │ ├── huffenc.h │ │ ├── huffman.h │ │ ├── idct.c │ │ ├── info.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── mathops.c │ │ ├── mathops.h │ │ ├── mcenc.c │ │ ├── modedec.h │ │ ├── ocintrin.h │ │ ├── quant.c │ │ ├── quant.h │ │ ├── rate.c │ │ ├── state.c │ │ ├── state.h │ │ ├── theora.def │ │ ├── theora.exp │ │ ├── theoradec.exp │ │ ├── theoraenc.exp │ │ ├── tokenize.c │ │ ├── x86 │ │ │ ├── mmxencfrag.c │ │ │ ├── mmxfdct.c │ │ │ ├── mmxfrag.c │ │ │ ├── mmxidct.c │ │ │ ├── mmxloop.h │ │ │ ├── mmxstate.c │ │ │ ├── sse2encfrag.c │ │ │ ├── sse2fdct.c │ │ │ ├── sse2idct.c │ │ │ ├── sse2trans.h │ │ │ ├── x86cpu.c │ │ │ ├── x86cpu.h │ │ │ ├── x86enc.c │ │ │ ├── x86enc.h │ │ │ ├── x86enquant.c │ │ │ ├── x86int.h │ │ │ ├── x86state.c │ │ │ └── x86zigzag.h │ │ └── x86_vc │ │ │ ├── mmxencfrag.c │ │ │ ├── mmxfdct.c │ │ │ ├── mmxfrag.c │ │ │ ├── mmxidct.c │ │ │ ├── mmxloop.h │ │ │ ├── mmxstate.c │ │ │ ├── x86cpu.c │ │ │ ├── x86cpu.h │ │ │ ├── x86enc.c │ │ │ ├── x86enc.h │ │ │ ├── x86int.h │ │ │ ├── x86state.c │ │ │ └── x86zigzag.h │ ├── libtheora.spec.in │ ├── theora-uninstalled.pc.in │ ├── theora.pc.in │ ├── theoradec-uninstalled.pc.in │ ├── theoradec.pc.in │ ├── theoraenc-uninstalled.pc.in │ └── theoraenc.pc.in ├── tracy │ ├── CMakeLists.txt │ ├── Config.cmake.in │ ├── _ReadmeDep.txt │ ├── public │ │ ├── TracyClient.cpp │ │ ├── client │ │ │ ├── TracyAlloc.cpp │ │ │ ├── TracyArmCpuTable.hpp │ │ │ ├── TracyCallstack.cpp │ │ │ ├── TracyCallstack.h │ │ │ ├── TracyCallstack.hpp │ │ │ ├── TracyCpuid.hpp │ │ │ ├── TracyDebug.hpp │ │ │ ├── TracyDxt1.cpp │ │ │ ├── TracyDxt1.hpp │ │ │ ├── TracyFastVector.hpp │ │ │ ├── TracyLock.hpp │ │ │ ├── TracyOverride.cpp │ │ │ ├── TracyProfiler.cpp │ │ │ ├── TracyProfiler.hpp │ │ │ ├── TracyRingBuffer.hpp │ │ │ ├── TracyScoped.hpp │ │ │ ├── TracyStringHelpers.hpp │ │ │ ├── TracySysPower.cpp │ │ │ ├── TracySysPower.hpp │ │ │ ├── TracySysTime.cpp │ │ │ ├── TracySysTime.hpp │ │ │ ├── TracySysTrace.cpp │ │ │ ├── TracySysTrace.hpp │ │ │ ├── TracyThread.hpp │ │ │ ├── tracy_SPSCQueue.h │ │ │ ├── tracy_concurrentqueue.h │ │ │ ├── tracy_rpmalloc.cpp │ │ │ └── tracy_rpmalloc.hpp │ │ ├── common │ │ │ ├── TracyAlign.hpp │ │ │ ├── TracyAlloc.hpp │ │ │ ├── TracyApi.h │ │ │ ├── TracyColor.hpp │ │ │ ├── TracyForceInline.hpp │ │ │ ├── TracyMutex.hpp │ │ │ ├── TracyProtocol.hpp │ │ │ ├── TracyQueue.hpp │ │ │ ├── TracySocket.cpp │ │ │ ├── TracySocket.hpp │ │ │ ├── TracyStackFrames.cpp │ │ │ ├── TracyStackFrames.hpp │ │ │ ├── TracySystem.cpp │ │ │ ├── TracySystem.hpp │ │ │ ├── TracyUwp.hpp │ │ │ ├── TracyVersion.hpp │ │ │ ├── TracyYield.hpp │ │ │ ├── tracy_lz4.cpp │ │ │ ├── tracy_lz4.hpp │ │ │ ├── tracy_lz4hc.cpp │ │ │ └── tracy_lz4hc.hpp │ │ ├── libbacktrace │ │ │ ├── LICENSE │ │ │ ├── alloc.cpp │ │ │ ├── backtrace.hpp │ │ │ ├── config.h │ │ │ ├── dwarf.cpp │ │ │ ├── elf.cpp │ │ │ ├── fileline.cpp │ │ │ ├── filenames.hpp │ │ │ ├── internal.hpp │ │ │ ├── macho.cpp │ │ │ ├── mmapio.cpp │ │ │ ├── posix.cpp │ │ │ ├── sort.cpp │ │ │ └── state.cpp │ │ └── tracy │ │ │ ├── Tracy.hpp │ │ │ ├── TracyC.h │ │ │ ├── TracyD3D11.hpp │ │ │ ├── TracyD3D12.hpp │ │ │ ├── TracyLua.hpp │ │ │ ├── TracyOpenCL.hpp │ │ │ ├── TracyOpenGL.hpp │ │ │ └── TracyVulkan.hpp │ └── version.cmake ├── update_source_lists.py └── vorbis │ ├── .gitignore │ ├── .travis.yml │ ├── .ycm_extra_conf.py │ ├── AUTHORS │ ├── Brewfile │ ├── CHANGES │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── _ReadmeDep.txt │ ├── appveyor.yml │ ├── autogen.sh │ ├── configure.ac │ ├── contrib │ └── oss-fuzz │ │ ├── build.sh │ │ └── decode_fuzzer.cc │ ├── debian │ ├── changelog │ ├── control │ ├── copyright │ ├── libvorbis-dev.docs │ ├── libvorbis-dev.examples │ ├── libvorbis-dev.install │ ├── libvorbis0a.install │ ├── libvorbisenc2.install │ ├── libvorbisfile3.install │ ├── rules │ └── watch │ ├── doc │ ├── 01-introduction.tex │ ├── 02-bitpacking.tex │ ├── 03-codebook.tex │ ├── 04-codec.tex │ ├── 05-comment.tex │ ├── 06-floor0.tex │ ├── 07-floor1.tex │ ├── 08-residue.tex │ ├── 09-helper.tex │ ├── 10-tables.tex │ ├── Doxyfile.in │ ├── Makefile.am │ ├── Vorbis_I_spec.cfg │ ├── Vorbis_I_spec.css │ ├── Vorbis_I_spec.html │ ├── Vorbis_I_spec.pdf │ ├── Vorbis_I_spec.tex │ ├── Vorbis_I_spec0x.png │ ├── Vorbis_I_spec10x.png │ ├── Vorbis_I_spec11x.png │ ├── Vorbis_I_spec12x.png │ ├── Vorbis_I_spec13x.png │ ├── Vorbis_I_spec14x.png │ ├── Vorbis_I_spec1x.png │ ├── Vorbis_I_spec2x.png │ ├── Vorbis_I_spec3x.png │ ├── Vorbis_I_spec4x.png │ ├── Vorbis_I_spec5x.png │ ├── Vorbis_I_spec6x.png │ ├── Vorbis_I_spec7x.png │ ├── Vorbis_I_spec8x.png │ ├── Vorbis_I_spec9x.png │ ├── a1-encapsulation-ogg.tex │ ├── a2-encapsulation-rtp.tex │ ├── components.png │ ├── eightphase.png │ ├── fish_xiph_org.png │ ├── floor1-1.png │ ├── floor1-2.png │ ├── floor1-3.png │ ├── floor1-4.png │ ├── floor1_inverse_dB_table.html │ ├── floorval.png │ ├── footer.tex │ ├── fourphase.png │ ├── framing.html │ ├── helper.html │ ├── hufftree-under.png │ ├── hufftree.png │ ├── index.html │ ├── libvorbis │ │ ├── Makefile.am │ │ ├── index.html │ │ ├── overview.html │ │ ├── reference.html │ │ ├── return.html │ │ ├── style.css │ │ ├── vorbis_analysis.html │ │ ├── vorbis_analysis_blockout.html │ │ ├── vorbis_analysis_buffer.html │ │ ├── vorbis_analysis_headerout.html │ │ ├── vorbis_analysis_init.html │ │ ├── vorbis_analysis_wrote.html │ │ ├── vorbis_bitrate_addblock.html │ │ ├── vorbis_bitrate_flushpacket.html │ │ ├── vorbis_block.html │ │ ├── vorbis_block_clear.html │ │ ├── vorbis_block_init.html │ │ ├── vorbis_comment.html │ │ ├── vorbis_comment_add.html │ │ ├── vorbis_comment_add_tag.html │ │ ├── vorbis_comment_clear.html │ │ ├── vorbis_comment_init.html │ │ ├── vorbis_comment_query.html │ │ ├── vorbis_comment_query_count.html │ │ ├── vorbis_commentheader_out.html │ │ ├── vorbis_dsp_clear.html │ │ ├── vorbis_dsp_state.html │ │ ├── vorbis_granule_time.html │ │ ├── vorbis_info.html │ │ ├── vorbis_info_blocksize.html │ │ ├── vorbis_info_clear.html │ │ ├── vorbis_info_init.html │ │ ├── vorbis_packet_blocksize.html │ │ ├── vorbis_synthesis.html │ │ ├── vorbis_synthesis_blockin.html │ │ ├── vorbis_synthesis_halfrate.html │ │ ├── vorbis_synthesis_halfrate_p.html │ │ ├── vorbis_synthesis_headerin.html │ │ ├── vorbis_synthesis_idheader.html │ │ ├── vorbis_synthesis_init.html │ │ ├── vorbis_synthesis_lapout.html │ │ ├── vorbis_synthesis_pcmout.html │ │ ├── vorbis_synthesis_read.html │ │ ├── vorbis_synthesis_restart.html │ │ ├── vorbis_synthesis_trackonly.html │ │ └── vorbis_version_string.html │ ├── oggstream.html │ ├── programming.html │ ├── release.txt │ ├── residue-pack.png │ ├── residue2.png │ ├── rfc5215.txt │ ├── rfc5215.xml │ ├── squarepolar.png │ ├── stereo.html │ ├── stream.png │ ├── v-comment.html │ ├── vorbis-clip.txt │ ├── vorbis-errors.txt │ ├── vorbis-fidelity.html │ ├── vorbisenc │ │ ├── Makefile.am │ │ ├── changes.html │ │ ├── examples.html │ │ ├── index.html │ │ ├── ovectl_ratemanage2_arg.html │ │ ├── ovectl_ratemanage_arg.html │ │ ├── overview.html │ │ ├── reference.html │ │ ├── style.css │ │ ├── vorbis_encode_ctl.html │ │ ├── vorbis_encode_init.html │ │ ├── vorbis_encode_init_vbr.html │ │ ├── vorbis_encode_setup_init.html │ │ ├── vorbis_encode_setup_managed.html │ │ └── vorbis_encode_setup_vbr.html │ ├── vorbisfile │ │ ├── Makefile.am │ │ ├── OggVorbis_File.html │ │ ├── callbacks.html │ │ ├── chaining_example_c.html │ │ ├── chainingexample.html │ │ ├── crosslap.html │ │ ├── datastructures.html │ │ ├── decoding.html │ │ ├── example.html │ │ ├── exampleindex.html │ │ ├── fileinfo.html │ │ ├── index.html │ │ ├── initialization.html │ │ ├── ov_bitrate.html │ │ ├── ov_bitrate_instant.html │ │ ├── ov_callbacks.html │ │ ├── ov_clear.html │ │ ├── ov_comment.html │ │ ├── ov_crosslap.html │ │ ├── ov_fopen.html │ │ ├── ov_info.html │ │ ├── ov_open.html │ │ ├── ov_open_callbacks.html │ │ ├── ov_pcm_seek.html │ │ ├── ov_pcm_seek_lap.html │ │ ├── ov_pcm_seek_page.html │ │ ├── ov_pcm_seek_page_lap.html │ │ ├── ov_pcm_tell.html │ │ ├── ov_pcm_total.html │ │ ├── ov_raw_seek.html │ │ ├── ov_raw_seek_lap.html │ │ ├── ov_raw_tell.html │ │ ├── ov_raw_total.html │ │ ├── ov_read.html │ │ ├── ov_read_filter.html │ │ ├── ov_read_float.html │ │ ├── ov_seekable.html │ │ ├── ov_serialnumber.html │ │ ├── ov_streams.html │ │ ├── ov_test.html │ │ ├── ov_test_callbacks.html │ │ ├── ov_test_open.html │ │ ├── ov_time_seek.html │ │ ├── ov_time_seek_lap.html │ │ ├── ov_time_seek_page.html │ │ ├── ov_time_seek_page_lap.html │ │ ├── ov_time_tell.html │ │ ├── ov_time_total.html │ │ ├── overview.html │ │ ├── reference.html │ │ ├── seekexample.html │ │ ├── seeking.html │ │ ├── seeking_example_c.html │ │ ├── seeking_test_c.html │ │ ├── seekingexample.html │ │ ├── style.css │ │ ├── threads.html │ │ └── vorbisfile_example_c.html │ ├── window1.png │ └── window2.png │ ├── examples │ ├── Makefile.am │ ├── chaining_example.c │ ├── decoder_example.c │ ├── encoder_example.c │ ├── frameview.pl │ ├── seeking_example.c │ └── vorbisfile_example.c │ ├── include │ ├── Makefile.am │ └── vorbis │ │ ├── Makefile.am │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h │ ├── lib │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── analysis.c │ ├── backends.h │ ├── barkmel.c │ ├── bitrate.c │ ├── bitrate.h │ ├── block.c │ ├── books │ │ ├── Makefile.am │ │ ├── coupled │ │ │ ├── Makefile.am │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ ├── Makefile.am │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ ├── Makefile.am │ │ │ └── res_books_uncoupled.h │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── envelope.c │ ├── envelope.h │ ├── floor0.c │ ├── floor1.c │ ├── highlevel.h │ ├── info.c │ ├── lookup.c │ ├── lookup.h │ ├── lookup_data.h │ ├── lookups.pl │ ├── lpc.c │ ├── lpc.h │ ├── lsp.c │ ├── lsp.h │ ├── mapping0.c │ ├── masking.h │ ├── mdct.c │ ├── mdct.h │ ├── misc.c │ ├── misc.h │ ├── modes │ │ ├── Makefile.am │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ ├── os.h │ ├── psy.c │ ├── psy.h │ ├── psytune.c │ ├── registry.c │ ├── registry.h │ ├── res0.c │ ├── scales.h │ ├── sharedbook.c │ ├── smallft.c │ ├── smallft.h │ ├── synthesis.c │ ├── tone.c │ ├── vorbisenc.c │ ├── vorbisfile.c │ ├── window.c │ └── window.h │ ├── libvorbis.spec.in │ ├── m4 │ ├── Makefile.am │ ├── add_cflags.m4 │ ├── ogg.m4 │ └── pkg.m4 │ ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Vorbis.xcodeproj │ │ └── project.pbxproj │ ├── symbian │ ├── bld.inf │ └── vorbis.mmp │ ├── test │ ├── Makefile.am │ ├── test.c │ ├── util.c │ ├── util.h │ ├── write_read.c │ └── write_read.h │ ├── vorbis-uninstalled.pc.in │ ├── vorbis.m4 │ ├── vorbis.pc.in │ ├── vorbisenc-uninstalled.pc.in │ ├── vorbisenc.pc.in │ ├── vorbisfile-uninstalled.pc.in │ ├── vorbisfile.pc.in │ ├── vq │ ├── 16.vqs │ ├── 16u.vqs │ ├── 44c-1.vqs │ ├── 44c0.vqs │ ├── 44c1.vqs │ ├── 44c2.vqs │ ├── 44c3.vqs │ ├── 44c4.vqs │ ├── 44c5.vqs │ ├── 44c6.vqs │ ├── 44c7.vqs │ ├── 44c8.vqs │ ├── 44c9.vqs │ ├── 44p-1.vqs │ ├── 44p0.vqs │ ├── 44p1.vqs │ ├── 44p2.vqs │ ├── 44p3.vqs │ ├── 44p4.vqs │ ├── 44p5.vqs │ ├── 44p6.vqs │ ├── 44p7.vqs │ ├── 44p8.vqs │ ├── 44p9.vqs │ ├── 44u0.vqs │ ├── 44u1.vqs │ ├── 44u2.vqs │ ├── 44u3.vqs │ ├── 44u4.vqs │ ├── 44u5.vqs │ ├── 44u6.vqs │ ├── 44u7.vqs │ ├── 44u8.vqs │ ├── 44u9.vqs │ ├── 8.vqs │ ├── 8u.vqs │ ├── Makefile.am │ ├── bookutil.c │ ├── bookutil.h │ ├── distribution.c │ ├── floor_11.vqs │ ├── floor_22.vqs │ ├── floor_44.vqs │ ├── huffbuild.c │ ├── latticebuild.c │ ├── latticetune.c │ ├── localcodebook.h │ ├── make_floor_books.pl │ ├── make_residue_books.pl │ ├── metrics.c │ ├── vqgen.c │ └── vqgen.h │ └── win32 │ ├── VS2005 │ ├── README │ ├── libogg.vsprops │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcproj │ │ └── libvorbis_static.vcproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcproj │ │ └── libvorbisfile_static.vcproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcproj │ │ └── vorbisdec_static.vcproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcproj │ │ └── vorbisenc_static.vcproj │ ├── VS2008 │ ├── README │ ├── libogg.vsprops │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcproj │ │ └── libvorbis_static.vcproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcproj │ │ └── libvorbisfile_static.vcproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcproj │ │ └── vorbisdec_static.vcproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcproj │ │ └── vorbisenc_static.vcproj │ ├── VS2010 │ ├── README │ ├── libogg.props │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcxproj │ │ └── libvorbis_static.vcxproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcxproj │ │ └── libvorbisfile_static.vcxproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcxproj │ │ └── vorbisdec_static.vcxproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcxproj │ │ └── vorbisenc_static.vcxproj │ ├── vorbis.def │ ├── vorbisenc.def │ └── vorbisfile.def ├── Docs ├── EngineAPI │ └── TODO.txt └── FileFormats │ ├── Effect(eff v1.0).csv │ └── Material(mtl v1.0).csv ├── LICENSE.md ├── README.md └── Tools ├── BBuilder └── src │ ├── Descs.cpp │ ├── ExtTools.cpp │ ├── Main.cpp │ ├── Main.h │ ├── Pack.cpp │ └── Resources.cpp ├── CMakeLists.txt ├── Common ├── CMakeLists.txt ├── ContentForgeTool.cpp ├── ContentForgeTool.h ├── Data.cpp ├── Data.h ├── DataScheme.cpp ├── DataScheme.h ├── HRDParser.cpp ├── HRDParser.h ├── Logging.h ├── MurmurHash3.cpp ├── MurmurHash3.h ├── ParamsUtils.cpp ├── ParamsUtils.h ├── Render │ ├── RenderEnums.cpp │ ├── RenderEnums.h │ ├── SM30ShaderMeta.cpp │ ├── SM30ShaderMeta.h │ ├── ShaderMetaCommon.cpp │ ├── ShaderMetaCommon.h │ ├── USMShaderMeta.cpp │ └── USMShaderMeta.h ├── StringID.cpp ├── StringID.h ├── StringIDStorage.cpp ├── StringIDStorage.h ├── Subprocess.h ├── SubprocessWin32.cpp ├── Type.h ├── Utils.cpp ├── Utils.h ├── ValueTable.cpp ├── ValueTable.h ├── Vectors.h └── src.cmake ├── ContentForge ├── CMakeLists.txt ├── cf-effect │ ├── CFEffectFwd.h │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── ParamsSM30.cpp │ ├── ParamsUSM.cpp │ ├── RenderState.h │ └── src.cmake ├── cf-fbx │ ├── CMakeLists.txt │ ├── Main.cpp │ └── src.cmake ├── cf-gltf │ ├── CMakeLists.txt │ ├── GLTFExtensions.cpp │ ├── GLTFExtensions.h │ ├── Main.cpp │ └── src.cmake ├── cf-hlsl │ ├── CMakeLists.txt │ ├── Main.cpp │ └── src.cmake ├── cf-l3dt │ ├── BTFile.cpp │ ├── BTFile.h │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── README.md │ └── src.cmake ├── cf-material │ ├── CMakeLists.txt │ ├── Main.cpp │ └── src.cmake ├── cf-navmesh │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── PolyUtils.cpp │ ├── README.md │ └── src.cmake ├── cf-rpath │ ├── CFRenderPathFwd.h │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── ParamsCommon.h │ ├── ParamsSM30.cpp │ ├── ParamsUSM.cpp │ └── src.cmake └── cf-skybox │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── README.md │ └── src.cmake ├── CreatorIDE ├── CreatorIDE │ ├── AppConfiguration.cs │ ├── AttrPropertyDescriptor.cs │ ├── Category.cs │ ├── CommandLine.cs │ ├── CreatorIDE.csproj │ ├── CreatorIDE.csproj.user │ ├── CreatorIDEContextManager.cs │ ├── EngineAPI │ │ ├── Categories.cs │ │ ├── DataTypes.cs │ │ ├── EditorCamera.cs │ │ ├── Engine.cs │ │ ├── Entities.cs │ │ ├── Levels.cs │ │ ├── Transform.cs │ │ └── World.cs │ ├── Entity.cs │ ├── EntityTemplate.cs │ ├── GetStringWnd.Designer.cs │ ├── GetStringWnd.cs │ ├── GetStringWnd.resx │ ├── MainWnd.Designer.cs │ ├── MainWnd.cs │ ├── MainWnd.resx │ ├── Matrix44EditorCtl.Designer.cs │ ├── Matrix44EditorCtl.cs │ ├── Matrix44EditorCtl.resx │ ├── NewCategoryWnd.Designer.cs │ ├── NewCategoryWnd.cs │ ├── NewCategoryWnd.resx │ ├── NewLocationWnd.Designer.cs │ ├── NewLocationWnd.cs │ ├── NewLocationWnd.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ResourceSelectorWnd.Designer.cs │ ├── ResourceSelectorWnd.cs │ ├── ResourceSelectorWnd.resx │ ├── SettingsWnd.Designer.cs │ ├── SettingsWnd.cs │ ├── SettingsWnd.resx │ ├── Types.cs │ └── WindowManager.cs ├── CreatorIDECore │ ├── AppContextManager.cs │ ├── CreatorIDECore.csproj │ ├── IAppConfiguration.cs │ ├── IAppContextManager.cs │ ├── IWindowManager.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TypeDictionary.cs └── EngineAPI │ ├── AI │ ├── Navigation │ │ ├── NavMesh.cpp │ │ └── NavMesh.h │ └── SmartObj │ │ ├── ValidatorContainerUIStatus.cpp │ │ ├── ValidatorContainerUIStatus.h │ │ ├── ValidatorPlrOnly.cpp │ │ └── ValidatorPlrOnly.h │ ├── API │ ├── Categories.cpp │ ├── EditorCamera.cpp │ ├── Entities.cpp │ ├── Levels.cpp │ ├── Transform.cpp │ ├── UICallbacks.cpp │ └── World.cpp │ ├── App │ ├── AppStateEditor.cpp │ ├── AppStateEditor.h │ ├── CIDEApp.cpp │ ├── CIDEApp.h │ ├── CSharpUIConnector.cpp │ ├── CSharpUIConnector.h │ ├── EditorTool.h │ ├── ToolNavGeometry.cpp │ ├── ToolNavGeometry.h │ ├── ToolNavOffmesh.cpp │ ├── ToolNavOffmesh.h │ ├── ToolNavRegions.cpp │ ├── ToolNavRegions.h │ ├── ToolSelect.cpp │ ├── ToolSelect.h │ ├── ToolTransform.cpp │ └── ToolTransform.h │ ├── FactoryRegHelper.h │ ├── Main.cpp │ ├── Prop │ ├── PropEditorCamera.cpp │ └── PropEditorCamera.h │ └── StdAPI.h ├── DialogEditor ├── DialogEditor.AssemblyInfo.cs ├── DialogEditor.Version.cs ├── DialogEditor.csproj.targets ├── DialogEditor.sln ├── DialogEditor │ ├── ControlDialogNodeEditor.Designer.cs │ ├── ControlDialogNodeEditor.cs │ ├── ControlDialogNodeEditor.resx │ ├── ControlDialogTree.Designer.cs │ ├── ControlDialogTree.cs │ ├── ControlDialogTree.resx │ ├── ControlPlayerNode.Designer.cs │ ├── ControlPlayerNode.cs │ ├── ControlPlayerNode.resx │ ├── DialogEditor.csproj │ ├── DialogObject.cs │ ├── DialogObjectManager.cs │ ├── FormCharactersProperties.Designer.cs │ ├── FormCharactersProperties.cs │ ├── FormCharactersProperties.resx │ ├── FormDialogEditor.Designer.cs │ ├── FormDialogEditor.cs │ ├── FormDialogEditor.resx │ ├── FormDialogPlayer.Designer.cs │ ├── FormDialogPlayer.cs │ ├── FormDialogPlayer.resx │ ├── FormDialogProperties.Designer.cs │ ├── FormDialogProperties.cs │ ├── FormDialogProperties.resx │ ├── FormExtensions.cs │ ├── FormPropertyEditor.Designer.cs │ ├── FormPropertyEditor.cs │ ├── FormPropertyEditor.resx │ ├── PathHelper.cs │ ├── Program.cs │ ├── ProgramConfiguration.cs │ ├── ProgramEnvironment.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── disk_blue.png │ │ ├── disk_blue_edit.png │ │ ├── document_new.png │ │ ├── element.png │ │ ├── element_copy.png │ │ ├── element_cut.png │ │ ├── element_delete.png │ │ ├── element_down.png │ │ ├── element_gray.png │ │ ├── element_next.png │ │ ├── element_replace.png │ │ ├── element_stop.png │ │ ├── elements1.png │ │ ├── folder.png │ │ ├── folder_blue.png │ │ ├── folder_delete.png │ │ ├── folder_new.png │ │ ├── graph_edge_directed.png │ │ ├── graph_node.png │ │ ├── knight2.png │ │ ├── media_beginning_32.png │ │ ├── media_fast_forward_32.png │ │ ├── media_pause_32.png │ │ ├── media_play.png │ │ ├── media_play_32.png │ │ ├── media_rewind_32.png │ │ ├── message.png │ │ ├── message_delete.png │ │ └── messages.png │ ├── SaveForm.Designer.cs │ ├── SaveForm.cs │ ├── SaveForm.resx │ └── UserPreferences.cs ├── DialogLogic │ ├── ActionDescriptor.cs │ ├── AnswerCollectionDialogGraphNode.cs │ ├── CharacterAttributeCollection.cs │ ├── CharacterContainer.cs │ ├── DialogCharacter.CustomTypeDescriptor.cs │ ├── DialogCharacter.cs │ ├── DialogCharacterPropertyDescriptor.cs │ ├── DialogGraph.cs │ ├── DialogGraphLink.cs │ ├── DialogGraphLinkDirection.cs │ ├── DialogGraphNodeBase.cs │ ├── DialogGraphNodeType.cs │ ├── DialogGraphPhraseNodeBase.cs │ ├── DialogInfo.cs │ ├── DialogLogic.csproj │ ├── Dialogs.IList.cs │ ├── Dialogs.cs │ ├── EmptyDialogGraphNode.cs │ ├── ICharacterContainer.cs │ ├── IDialogUserProperties.cs │ ├── IDisplayable.cs │ ├── PhraseDialogGraphNode.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyTypeCode.cs │ ├── ValueParser.cs │ └── XElementExensions.cs ├── HrdLib │ ├── HrdArray.cs │ ├── HrdAssemblyCache.cs │ ├── HrdAttribute.cs │ ├── HrdCompilerException.cs │ ├── HrdContractException.cs │ ├── HrdDocument.Streaming.cs │ ├── HrdDocument.cs │ ├── HrdElement.cs │ ├── HrdElementExtension.cs │ ├── HrdGeneratorQueue.cs │ ├── HrdIgnoreAttribute.cs │ ├── HrdIndentWriter.cs │ ├── HrdLib.csproj │ ├── HrdLidDiagnostics.cs │ ├── HrdMethodWriter.cs │ ├── HrdNode.cs │ ├── HrdPropertySetterAttribute.cs │ ├── HrdReader.cs │ ├── HrdSerializationAttribute.cs │ ├── HrdSerializer.cs │ ├── HrdSerializerAssembly.Deserialization.cs │ ├── HrdSerializerAssembly.Serialization.cs │ ├── HrdSerializerAssembly.cs │ ├── HrdSerializerPropertyInfo.cs │ ├── HrdSerializerTypeInfo.cs │ ├── HrdSerizalizableAttribute.cs │ ├── HrdStructureValidationException.cs │ ├── HrdWriter.cs │ ├── IHrdSerializable.cs │ ├── IHrdSerializer.cs │ ├── NotDisposingStreamWriter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReflectionHelper.cs │ ├── Resources.resx │ └── SR.cs └── _Readme_MSBuild.txt ├── SceneCommon ├── CMakeLists.txt ├── FindJasper.cmake ├── SceneTools.cpp ├── SceneTools.h └── src.cmake ├── ShaderCompiler ├── CMakeLists.txt ├── src.cmake └── src │ ├── D3D9ShaderReflectionAPI.cpp │ ├── D3D9ShaderReflectionAPI.h │ ├── DEMD3DInclude.cpp │ ├── DEMD3DInclude.h │ ├── LogDelegate.h │ ├── Main.cpp │ ├── ShaderCompiler.cpp │ ├── ShaderCompiler.h │ ├── ShaderDB.cpp │ ├── ShaderDB.h │ ├── ShaderReflection.h │ ├── ShaderReflectionSM30.cpp │ └── ShaderReflectionUSM.cpp ├── Utils ├── GetDEM.bat └── NppSyntax │ ├── HLSL.xml │ └── HRD.xml ├── bin ├── ShaderCompiler.dll ├── cf-effect.exe ├── cf-fbx.exe ├── cf-gltf.exe ├── cf-hlsl.exe ├── cf-l3dt.exe ├── cf-material.exe ├── cf-navmesh.exe ├── cf-rpath.exe ├── cf-skybox.exe └── cubemapgen │ ├── LICENSE.md │ ├── README.md │ ├── ReadMe_CubeGen.doc │ └── mcmg.exe └── schemes ├── scene.dss └── settings.hrd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/.gitignore -------------------------------------------------------------------------------- /CMake/DEMCMakeUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/DEMCMakeUtils.cmake -------------------------------------------------------------------------------- /CMake/DEMGame.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/DEMGame.cmake -------------------------------------------------------------------------------- /CMake/DEMLow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/DEMLow.cmake -------------------------------------------------------------------------------- /CMake/DEMRPG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/DEMRPG.cmake -------------------------------------------------------------------------------- /CMake/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /CMake/tools-vs2017x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/tools-vs2017x86.bat -------------------------------------------------------------------------------- /CMake/tools-vs2019x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/tools-vs2019x86.bat -------------------------------------------------------------------------------- /CMake/tools-vs2022x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/tools-vs2022x86.bat -------------------------------------------------------------------------------- /CMake/update_source_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/update_source_lists.py -------------------------------------------------------------------------------- /CMake/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMake/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMake/utils/utils.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DEM/Game/src/AI/AILevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/AI/AILevel.cpp -------------------------------------------------------------------------------- /DEM/Game/src/AI/AILevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/AI/AILevel.h -------------------------------------------------------------------------------- /DEM/Game/src/AI/ActionSystems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/AI/ActionSystems.cpp -------------------------------------------------------------------------------- /DEM/Game/src/AI/Blackboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/AI/Blackboard.h -------------------------------------------------------------------------------- /DEM/Game/src/AI/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/AI/Command.h -------------------------------------------------------------------------------- /DEM/Game/src/AI/MoveInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/AI/MoveInteraction.h -------------------------------------------------------------------------------- /DEM/Game/src/AI/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/AI/Parameter.h -------------------------------------------------------------------------------- /DEM/Game/src/App/AppFSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/App/AppFSM.cpp -------------------------------------------------------------------------------- /DEM/Game/src/App/AppFSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/App/AppFSM.h -------------------------------------------------------------------------------- /DEM/Game/src/App/AppStateVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/App/AppStateVideo.h -------------------------------------------------------------------------------- /DEM/Game/src/App/StateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/App/StateHandler.h -------------------------------------------------------------------------------- /DEM/Game/src/Game/ECS/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/ECS/Entity.h -------------------------------------------------------------------------------- /DEM/Game/src/Game/ECS/EntityMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/ECS/EntityMap.h -------------------------------------------------------------------------------- /DEM/Game/src/Game/ECS/GameWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/ECS/GameWorld.h -------------------------------------------------------------------------------- /DEM/Game/src/Game/GameLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/GameLevel.cpp -------------------------------------------------------------------------------- /DEM/Game/src/Game/GameLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/GameLevel.h -------------------------------------------------------------------------------- /DEM/Game/src/Game/GameSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/GameSession.cpp -------------------------------------------------------------------------------- /DEM/Game/src/Game/GameSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/GameSession.h -------------------------------------------------------------------------------- /DEM/Game/src/Game/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/GameState.h -------------------------------------------------------------------------------- /DEM/Game/src/Game/SessionVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Game/SessionVars.h -------------------------------------------------------------------------------- /DEM/Game/src/Scripting/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Scripting/Command.h -------------------------------------------------------------------------------- /DEM/Game/src/Scripting/SolGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Game/src/Scripting/SolGame.h -------------------------------------------------------------------------------- /DEM/Low/src/Animation/Graph/AnimGraphNode.cpp: -------------------------------------------------------------------------------- 1 | #include "AnimGraphNode.h" 2 | 3 | namespace DEM::Anim 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /DEM/Low/src/Animation/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Animation/Skeleton.h -------------------------------------------------------------------------------- /DEM/Low/src/Core/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/Application.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Core/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/Application.h -------------------------------------------------------------------------------- /DEM/Low/src/Core/CoreServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/CoreServer.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Core/CoreServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/CoreServer.h -------------------------------------------------------------------------------- /DEM/Low/src/Core/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/Factory.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Core/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/Factory.h -------------------------------------------------------------------------------- /DEM/Low/src/Core/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/Object.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Core/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/Object.h -------------------------------------------------------------------------------- /DEM/Low/src/Core/RTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/RTTI.h -------------------------------------------------------------------------------- /DEM/Low/src/Core/RTTIBaseClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/RTTIBaseClass.h -------------------------------------------------------------------------------- /DEM/Low/src/Core/TimeSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/TimeSource.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Core/TimeSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Core/TimeSource.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Algorithms.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/ArrayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/ArrayUtils.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Buffer.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Buffer.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Data.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Data.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/DataArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/DataArray.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/DataArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/DataArray.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/DataScheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/DataScheme.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/DataScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/DataScheme.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/DynamicEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/DynamicEnum.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Enum.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/FixedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/FixedArray.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/FixedOrderMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/FixedOrderMap.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Flags.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/FourCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/FourCC.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/FunctionTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/FunctionTraits.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/HRDParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/HRDParser.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/HRDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/HRDParser.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/HandleArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/HandleArray.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Hash.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/LineBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/LineBuffer.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/List.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/MemberAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/MemberAccess.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Metadata.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/MurmurHash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/MurmurHash3.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Param.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Params.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Params.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/ParamsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/ParamsUtils.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/ParamsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/ParamsUtils.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Ptr.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/QuadTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/QuadTree.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/RefCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/RefCounted.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Regions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Regions.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/RingBuffer.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Singleton.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/SparseArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/SparseArray.hpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/SparseArray2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/SparseArray2.hpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/StringID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/StringID.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/StringID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/StringID.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/StringUtils.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/StringUtils.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/SuperFastHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/SuperFastHash.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/TextResolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/TextResolver.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Data/TextResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/TextResolver.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/Type.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/TypeTraits.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/VarStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/VarStorage.h -------------------------------------------------------------------------------- /DEM/Low/src/Data/XMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Data/XMLDocument.h -------------------------------------------------------------------------------- /DEM/Low/src/Debug/DebugDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/DebugDraw.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Debug/DebugDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/DebugDraw.h -------------------------------------------------------------------------------- /DEM/Low/src/Debug/DebugUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/DebugUtils.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Debug/DebugUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/DebugUtils.h -------------------------------------------------------------------------------- /DEM/Low/src/Debug/LuaConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/LuaConsole.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Debug/LuaConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/LuaConsole.h -------------------------------------------------------------------------------- /DEM/Low/src/Debug/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/Profiler.h -------------------------------------------------------------------------------- /DEM/Low/src/Debug/WatcherWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Debug/WatcherWindow.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/Connection.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/Event.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/EventBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/EventBase.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/EventHandler.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/EventID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/EventID.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/EventNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/EventNative.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/EventOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/EventOutput.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/EventServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/EventServer.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/EventsFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/EventsFwd.h -------------------------------------------------------------------------------- /DEM/Low/src/Events/Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Events/Signal.h -------------------------------------------------------------------------------- /DEM/Low/src/Frame/GraphicsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/GraphicsScene.h -------------------------------------------------------------------------------- /DEM/Low/src/Frame/RenderPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/RenderPath.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Frame/RenderPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/RenderPath.h -------------------------------------------------------------------------------- /DEM/Low/src/Frame/RenderPhase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/RenderPhase.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Frame/RenderPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/RenderPhase.h -------------------------------------------------------------------------------- /DEM/Low/src/Frame/SkinAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/SkinAttribute.h -------------------------------------------------------------------------------- /DEM/Low/src/Frame/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/View.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Frame/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Frame/View.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/BinaryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/BinaryReader.cpp -------------------------------------------------------------------------------- /DEM/Low/src/IO/BinaryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/BinaryReader.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/BinaryWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/BinaryWriter.cpp -------------------------------------------------------------------------------- /DEM/Low/src/IO/BinaryWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/BinaryWriter.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/FS/FileSystemNPK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/FS/FileSystemNPK.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/FS/NpkTOC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/FS/NpkTOC.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/FS/NpkTOCEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/FS/NpkTOCEntry.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/FSBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/FSBrowser.cpp -------------------------------------------------------------------------------- /DEM/Low/src/IO/FSBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/FSBrowser.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/FileSystem.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/HRDWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/HRDWriter.cpp -------------------------------------------------------------------------------- /DEM/Low/src/IO/HRDWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/HRDWriter.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/IOFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/IOFwd.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/IOServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/IOServer.cpp -------------------------------------------------------------------------------- /DEM/Low/src/IO/IOServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/IOServer.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/PathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/PathUtils.cpp -------------------------------------------------------------------------------- /DEM/Low/src/IO/PathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/PathUtils.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/Stream.h -------------------------------------------------------------------------------- /DEM/Low/src/IO/TextReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/TextReader.cpp -------------------------------------------------------------------------------- /DEM/Low/src/IO/TextReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/IO/TextReader.h -------------------------------------------------------------------------------- /DEM/Low/src/Input/ControlLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Input/ControlLayout.h -------------------------------------------------------------------------------- /DEM/Low/src/Input/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Input/Input.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Input/InputDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Input/InputDevice.h -------------------------------------------------------------------------------- /DEM/Low/src/Input/InputEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Input/InputEvents.h -------------------------------------------------------------------------------- /DEM/Low/src/Input/InputFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Input/InputFwd.h -------------------------------------------------------------------------------- /DEM/Low/src/Jobs/JobSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Jobs/JobSystem.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Jobs/JobSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Jobs/JobSystem.h -------------------------------------------------------------------------------- /DEM/Low/src/Jobs/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Jobs/Worker.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Jobs/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Jobs/Worker.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/AABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/AABB.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/AABB.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/CameraMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/CameraMath.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/EnvelopeCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/EnvelopeCurve.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Euler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Euler.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/EulerAngles.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Line.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Math.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Math.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Matrix33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Matrix33.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/Matrix33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Matrix33.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Matrix44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Matrix44.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/Matrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Matrix44.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/MatrixDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/MatrixDefs.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/PackedNormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/PackedNormal.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Plane.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Polar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Polar.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Quaternion.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Quaternion.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/SIMDMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/SIMDMath.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Sphere.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/TransformSRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/TransformSRT.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/TransformSRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/TransformSRT.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Triangle.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Vector2.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Vector2.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Vector3.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Vector3.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/Vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Vector4.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Math/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/Vector4.h -------------------------------------------------------------------------------- /DEM/Low/src/Math/WELL512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Math/WELL512.h -------------------------------------------------------------------------------- /DEM/Low/src/Physics/BulletConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Physics/BulletConv.h -------------------------------------------------------------------------------- /DEM/Low/src/Physics/RigidBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Physics/RigidBody.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Physics/RigidBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Physics/RigidBody.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/CDLODData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/CDLODData.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/D3D9/DEMD3D9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/D3D9/DEMD3D9.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/DisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/DisplayMode.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Effect.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Effect.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/GPUDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/GPUDriver.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/GPUDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/GPUDriver.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/GPUFence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/GPUFence.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/ImageUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/ImageUtils.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/ImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/ImageUtils.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/IndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/IndexBuffer.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Light.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Material.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Material.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Mesh.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Mesh.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/MeshData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/MeshData.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/MeshData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/MeshData.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Model.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Model.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/RenderFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/RenderFwd.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/RenderQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/RenderQueue.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/RenderState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/RenderState.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/RenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/RenderTarget.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Renderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Renderable.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Renderer.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Sampler.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/SamplerDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/SamplerDesc.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Shader.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/SkinInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/SkinInfo.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/SkinInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/SkinInfo.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Skybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Skybox.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Skybox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Skybox.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/SwapChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/SwapChain.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/SwapChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/SwapChain.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Technique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Technique.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Technique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Technique.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Terrain.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Terrain.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Texture.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Render/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/Texture.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/TextureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/TextureData.h -------------------------------------------------------------------------------- /DEM/Low/src/Render/VertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Render/VertexBuffer.h -------------------------------------------------------------------------------- /DEM/Low/src/Scene/LODGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Scene/LODGroup.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Scene/LODGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Scene/LODGroup.h -------------------------------------------------------------------------------- /DEM/Low/src/Scene/SceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Scene/SceneNode.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Scene/SceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Scene/SceneNode.h -------------------------------------------------------------------------------- /DEM/Low/src/Scripting/SolLow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Scripting/SolLow.h -------------------------------------------------------------------------------- /DEM/Low/src/StdCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/StdCfg.h -------------------------------------------------------------------------------- /DEM/Low/src/StdDEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/StdDEM.h -------------------------------------------------------------------------------- /DEM/Low/src/System/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/System/Memory.cpp -------------------------------------------------------------------------------- /DEM/Low/src/System/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/System/Memory.h -------------------------------------------------------------------------------- /DEM/Low/src/System/OSWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/System/OSWindow.h -------------------------------------------------------------------------------- /DEM/Low/src/System/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/System/Platform.h -------------------------------------------------------------------------------- /DEM/Low/src/System/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/System/System.cpp -------------------------------------------------------------------------------- /DEM/Low/src/System/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/System/System.h -------------------------------------------------------------------------------- /DEM/Low/src/UI/RenderPhaseGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/RenderPhaseGUI.h -------------------------------------------------------------------------------- /DEM/Low/src/UI/UIContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/UIContext.cpp -------------------------------------------------------------------------------- /DEM/Low/src/UI/UIContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/UIContext.h -------------------------------------------------------------------------------- /DEM/Low/src/UI/UIFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/UIFwd.h -------------------------------------------------------------------------------- /DEM/Low/src/UI/UIServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/UIServer.cpp -------------------------------------------------------------------------------- /DEM/Low/src/UI/UIServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/UIServer.h -------------------------------------------------------------------------------- /DEM/Low/src/UI/UIWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/UIWindow.cpp -------------------------------------------------------------------------------- /DEM/Low/src/UI/UIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/UI/UIWindow.h -------------------------------------------------------------------------------- /DEM/Low/src/Util/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/CRC.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Util/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/MD5.cpp -------------------------------------------------------------------------------- /DEM/Low/src/Util/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/MD5.h -------------------------------------------------------------------------------- /DEM/Low/src/Util/PFLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/PFLoop.h -------------------------------------------------------------------------------- /DEM/Low/src/Util/PFLoopIntDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/PFLoopIntDrv.h -------------------------------------------------------------------------------- /DEM/Low/src/Util/PFLoopQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/PFLoopQuat.h -------------------------------------------------------------------------------- /DEM/Low/src/Util/TimedFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/TimedFilter.h -------------------------------------------------------------------------------- /DEM/Low/src/Util/UtilFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/UtilFwd.h -------------------------------------------------------------------------------- /DEM/Low/src/Util/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Util/Utils.h -------------------------------------------------------------------------------- /DEM/Low/src/Video/VideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Video/VideoPlayer.h -------------------------------------------------------------------------------- /DEM/Low/src/Video/VideoServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/Low/src/Video/VideoServer.h -------------------------------------------------------------------------------- /DEM/RPG/src/Combat/Damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Combat/Damage.h -------------------------------------------------------------------------------- /DEM/RPG/src/Items/ItemList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Items/ItemList.cpp -------------------------------------------------------------------------------- /DEM/RPG/src/Items/ItemList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Items/ItemList.h -------------------------------------------------------------------------------- /DEM/RPG/src/Items/ItemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Items/ItemManager.h -------------------------------------------------------------------------------- /DEM/RPG/src/Items/ItemUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Items/ItemUtils.cpp -------------------------------------------------------------------------------- /DEM/RPG/src/Items/ItemUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Items/ItemUtils.h -------------------------------------------------------------------------------- /DEM/RPG/src/Items/VendorLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Items/VendorLogic.h -------------------------------------------------------------------------------- /DEM/RPG/src/Quests/QuestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/DEM/RPG/src/Quests/QuestData.h -------------------------------------------------------------------------------- /Deps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/.gitignore -------------------------------------------------------------------------------- /Deps/CEGUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/CEGUI/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/COPYING -------------------------------------------------------------------------------- /Deps/CEGUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/README.md -------------------------------------------------------------------------------- /Deps/CEGUI/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/CEGUI.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/CEGUI.pc.in -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/Colour.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/Event.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/Image.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/Logger.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/Scheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/Scheme.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/ScriptModules/Python/bindings/distutils/PyCEGUI/fake.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/String.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/System.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cegui/src/Window.cpp -------------------------------------------------------------------------------- /Deps/CEGUI/cegui/src/WindowRendererSets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Core) 2 | 3 | -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindEGL.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindGLFW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindGLFW.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindGLM.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindGLUT.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindOIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindOIS.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindOgre.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindOgre.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindPCRE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindPCRE.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindRaqm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindRaqm.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindSFML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindSFML.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindZLIB.cmake -------------------------------------------------------------------------------- /Deps/CEGUI/cmake/FindZZip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CEGUI/cmake/FindZZip.cmake -------------------------------------------------------------------------------- /Deps/CLI11/CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CLI11/CLI11.hpp -------------------------------------------------------------------------------- /Deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/DEMCMakeUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DEMCMakeUtils.cmake -------------------------------------------------------------------------------- /Deps/DevIL/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/.gitattributes -------------------------------------------------------------------------------- /Deps/DevIL/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/.gitignore -------------------------------------------------------------------------------- /Deps/DevIL/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/.travis.yml -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/AUTHORS -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/COPYING -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/CREDITS -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/ChangeLog -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/INSTALL: -------------------------------------------------------------------------------- 1 | see README.cmake for details 2 | -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/Libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/Libraries.txt -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/NEWS -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/README.cmake -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/README.md -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/DevIL/TODO -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/bindings/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains bindings to DevIL for various languages. 2 | -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/data/DevIL_logo.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/examples/iller/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/examples/iller/iller.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/examples/iller/iller.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/examples/windows_example/WindowsTest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Deps/DevIL/DevIL/include/IL/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /Deps/DevIL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/LICENSE -------------------------------------------------------------------------------- /Deps/DevIL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/README.md -------------------------------------------------------------------------------- /Deps/DevIL/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/DevIL/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/GLTFSDK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/GLTFSDK/Inc/GLTFSDK/GLTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/Inc/GLTFSDK/GLTF.h -------------------------------------------------------------------------------- /Deps/GLTFSDK/Inc/GLTFSDK/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/Inc/GLTFSDK/Math.h -------------------------------------------------------------------------------- /Deps/GLTFSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/README.md -------------------------------------------------------------------------------- /Deps/GLTFSDK/Source/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/Source/Color.cpp -------------------------------------------------------------------------------- /Deps/GLTFSDK/Source/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/Source/Math.cpp -------------------------------------------------------------------------------- /Deps/GLTFSDK/Source/Schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/Source/Schema.cpp -------------------------------------------------------------------------------- /Deps/GLTFSDK/Source/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/Source/Version.cpp -------------------------------------------------------------------------------- /Deps/GLTFSDK/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/GLTFSDK/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/acl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/CHANGELOG.md -------------------------------------------------------------------------------- /Deps/acl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/LICENSE -------------------------------------------------------------------------------- /Deps/acl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/README.md -------------------------------------------------------------------------------- /Deps/acl/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/acl/cmake/CMakeUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/cmake/CMakeUtils.cmake -------------------------------------------------------------------------------- /Deps/acl/includes/acl/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/includes/acl/fwd.h -------------------------------------------------------------------------------- /Deps/acl/includes/acl/io/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/includes/acl/io/fwd.h -------------------------------------------------------------------------------- /Deps/acl/includes/acl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/acl/includes/acl/version.h -------------------------------------------------------------------------------- /Deps/build_cegui_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/build_cegui_deps.py -------------------------------------------------------------------------------- /Deps/bullet/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/AUTHORS.txt -------------------------------------------------------------------------------- /Deps/bullet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/bullet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/LICENSE.txt -------------------------------------------------------------------------------- /Deps/bullet/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/MANIFEST.in -------------------------------------------------------------------------------- /Deps/bullet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/README.md -------------------------------------------------------------------------------- /Deps/bullet/UseBullet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/UseBullet.cmake -------------------------------------------------------------------------------- /Deps/bullet/VERSION: -------------------------------------------------------------------------------- 1 | 3.25 2 | -------------------------------------------------------------------------------- /Deps/bullet/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/bullet/bullet.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/bullet.pc.cmake -------------------------------------------------------------------------------- /Deps/bullet/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/src/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/bullet/src/clew/clew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/src/clew/clew.c -------------------------------------------------------------------------------- /Deps/bullet/src/clew/clew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/bullet/src/clew/clew.h -------------------------------------------------------------------------------- /Deps/fmt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/.clang-format -------------------------------------------------------------------------------- /Deps/fmt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/.gitignore -------------------------------------------------------------------------------- /Deps/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/fmt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/CONTRIBUTING.md -------------------------------------------------------------------------------- /Deps/fmt/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/ChangeLog.md -------------------------------------------------------------------------------- /Deps/fmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/LICENSE -------------------------------------------------------------------------------- /Deps/fmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/README.md -------------------------------------------------------------------------------- /Deps/fmt/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/args.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/base.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/chrono.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/color.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/compile.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/core.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/format.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/os.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/ostream.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/printf.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/ranges.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/std.h -------------------------------------------------------------------------------- /Deps/fmt/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/include/fmt/xchar.h -------------------------------------------------------------------------------- /Deps/fmt/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/src/fmt.cc -------------------------------------------------------------------------------- /Deps/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/src/format.cc -------------------------------------------------------------------------------- /Deps/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/src/os.cc -------------------------------------------------------------------------------- /Deps/fmt/support/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/Android.mk -------------------------------------------------------------------------------- /Deps/fmt/support/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Deps/fmt/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/README -------------------------------------------------------------------------------- /Deps/fmt/support/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/Vagrantfile -------------------------------------------------------------------------------- /Deps/fmt/support/bazel/.bazelversion: -------------------------------------------------------------------------------- 1 | 8.1.1 2 | -------------------------------------------------------------------------------- /Deps/fmt/support/bazel/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | # WORKSPACE marker file needed by Bazel 2 | 3 | -------------------------------------------------------------------------------- /Deps/fmt/support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/build.gradle -------------------------------------------------------------------------------- /Deps/fmt/support/check-commits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/check-commits -------------------------------------------------------------------------------- /Deps/fmt/support/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/docopt.py -------------------------------------------------------------------------------- /Deps/fmt/support/mkdocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/mkdocs -------------------------------------------------------------------------------- /Deps/fmt/support/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/mkdocs.yml -------------------------------------------------------------------------------- /Deps/fmt/support/printable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/printable.py -------------------------------------------------------------------------------- /Deps/fmt/support/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/fmt/support/release.py -------------------------------------------------------------------------------- /Deps/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/Makefile -------------------------------------------------------------------------------- /Deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/README -------------------------------------------------------------------------------- /Deps/lua/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/contents.html -------------------------------------------------------------------------------- /Deps/lua/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/index.css -------------------------------------------------------------------------------- /Deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /Deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /Deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/lua.css -------------------------------------------------------------------------------- /Deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /Deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/manual.css -------------------------------------------------------------------------------- /Deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/manual.html -------------------------------------------------------------------------------- /Deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/doc/readme.html -------------------------------------------------------------------------------- /Deps/lua/src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src.cmake -------------------------------------------------------------------------------- /Deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/Makefile -------------------------------------------------------------------------------- /Deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lapi.c -------------------------------------------------------------------------------- /Deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lapi.h -------------------------------------------------------------------------------- /Deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /Deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /Deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /Deps/lua/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lbitlib.c -------------------------------------------------------------------------------- /Deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lcode.c -------------------------------------------------------------------------------- /Deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lcode.h -------------------------------------------------------------------------------- /Deps/lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lcorolib.c -------------------------------------------------------------------------------- /Deps/lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lctype.c -------------------------------------------------------------------------------- /Deps/lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lctype.h -------------------------------------------------------------------------------- /Deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /Deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /Deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /Deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ldo.c -------------------------------------------------------------------------------- /Deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ldo.h -------------------------------------------------------------------------------- /Deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ldump.c -------------------------------------------------------------------------------- /Deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /Deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /Deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lgc.c -------------------------------------------------------------------------------- /Deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lgc.h -------------------------------------------------------------------------------- /Deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/linit.c -------------------------------------------------------------------------------- /Deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/liolib.c -------------------------------------------------------------------------------- /Deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/llex.c -------------------------------------------------------------------------------- /Deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/llex.h -------------------------------------------------------------------------------- /Deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/llimits.h -------------------------------------------------------------------------------- /Deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /Deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lmem.c -------------------------------------------------------------------------------- /Deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lmem.h -------------------------------------------------------------------------------- /Deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /Deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lobject.c -------------------------------------------------------------------------------- /Deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lobject.h -------------------------------------------------------------------------------- /Deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /Deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /Deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/loslib.c -------------------------------------------------------------------------------- /Deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lparser.c -------------------------------------------------------------------------------- /Deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lparser.h -------------------------------------------------------------------------------- /Deps/lua/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lprefix.h -------------------------------------------------------------------------------- /Deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lstate.c -------------------------------------------------------------------------------- /Deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lstate.h -------------------------------------------------------------------------------- /Deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lstring.c -------------------------------------------------------------------------------- /Deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lstring.h -------------------------------------------------------------------------------- /Deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /Deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ltable.c -------------------------------------------------------------------------------- /Deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ltable.h -------------------------------------------------------------------------------- /Deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /Deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ltm.c -------------------------------------------------------------------------------- /Deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/ltm.h -------------------------------------------------------------------------------- /Deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lua.c -------------------------------------------------------------------------------- /Deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lua.h -------------------------------------------------------------------------------- /Deps/lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lua.hpp -------------------------------------------------------------------------------- /Deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/luac.c -------------------------------------------------------------------------------- /Deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /Deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lualib.h -------------------------------------------------------------------------------- /Deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lundump.c -------------------------------------------------------------------------------- /Deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lundump.h -------------------------------------------------------------------------------- /Deps/lua/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lutf8lib.c -------------------------------------------------------------------------------- /Deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lvm.c -------------------------------------------------------------------------------- /Deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lvm.h -------------------------------------------------------------------------------- /Deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lzio.c -------------------------------------------------------------------------------- /Deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/lua/src/lzio.h -------------------------------------------------------------------------------- /Deps/magic_enum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/magic_enum/LICENSE -------------------------------------------------------------------------------- /Deps/magic_enum/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/magic_enum/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/ogg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/.gitignore -------------------------------------------------------------------------------- /Deps/ogg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/.travis.yml -------------------------------------------------------------------------------- /Deps/ogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/AUTHORS -------------------------------------------------------------------------------- /Deps/ogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/CHANGES -------------------------------------------------------------------------------- /Deps/ogg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/ogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/COPYING -------------------------------------------------------------------------------- /Deps/ogg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/Makefile.am -------------------------------------------------------------------------------- /Deps/ogg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/README.md -------------------------------------------------------------------------------- /Deps/ogg/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/ogg/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/appveyor.yml -------------------------------------------------------------------------------- /Deps/ogg/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/autogen.sh -------------------------------------------------------------------------------- /Deps/ogg/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/configure.ac -------------------------------------------------------------------------------- /Deps/ogg/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/include/Makefile.am -------------------------------------------------------------------------------- /Deps/ogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /Deps/ogg/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/include/ogg/os_types.h -------------------------------------------------------------------------------- /Deps/ogg/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/libogg.spec.in -------------------------------------------------------------------------------- /Deps/ogg/ogg-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/ogg-uninstalled.pc.in -------------------------------------------------------------------------------- /Deps/ogg/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/ogg.m4 -------------------------------------------------------------------------------- /Deps/ogg/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/ogg.pc.in -------------------------------------------------------------------------------- /Deps/ogg/releases.sha2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/releases.sha2 -------------------------------------------------------------------------------- /Deps/ogg/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/src/Makefile.am -------------------------------------------------------------------------------- /Deps/ogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/src/bitwise.c -------------------------------------------------------------------------------- /Deps/ogg/src/crctable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/src/crctable.h -------------------------------------------------------------------------------- /Deps/ogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/src/framing.c -------------------------------------------------------------------------------- /Deps/ogg/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/ogg/win32/ogg.def -------------------------------------------------------------------------------- /Deps/pugixml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/pugixml/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/pugixml/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/pugixml/LICENSE.md -------------------------------------------------------------------------------- /Deps/pugixml/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/pugixml/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/pugixml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/pugixml/readme.txt -------------------------------------------------------------------------------- /Deps/pugixml/src/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/pugixml/src/pugiconfig.hpp -------------------------------------------------------------------------------- /Deps/pugixml/src/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/pugixml/src/pugixml.cpp -------------------------------------------------------------------------------- /Deps/pugixml/src/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/pugixml/src/pugixml.hpp -------------------------------------------------------------------------------- /Deps/recastnavigation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/recastnavigation/Doxyfile -------------------------------------------------------------------------------- /Deps/recastnavigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/recastnavigation/README.md -------------------------------------------------------------------------------- /Deps/recastnavigation/RecastDemo/Bin/.gitignore: -------------------------------------------------------------------------------- 1 | Recast.app 2 | -------------------------------------------------------------------------------- /Deps/recastnavigation/Tests/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /Deps/rtm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/CHANGELOG.md -------------------------------------------------------------------------------- /Deps/rtm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/LICENSE -------------------------------------------------------------------------------- /Deps/rtm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/README.md -------------------------------------------------------------------------------- /Deps/rtm/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/fwd.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/macros.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/mask4d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/mask4d.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/mask4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/mask4f.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/mask4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/mask4i.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/mask4q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/mask4q.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/math.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/quatd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/quatd.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/quatf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/quatf.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/qvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/qvd.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/qvf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/qvf.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/qvsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/qvsd.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/qvsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/qvsf.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/qvvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/qvvd.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/qvvf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/qvvf.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/scalard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/scalard.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/scalarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/scalarf.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/types.h -------------------------------------------------------------------------------- /Deps/rtm/includes/rtm/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/rtm/includes/rtm/version.h -------------------------------------------------------------------------------- /Deps/sol/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sol/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/sol/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sol/sol/config.hpp -------------------------------------------------------------------------------- /Deps/sol/sol/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sol/sol/forward.hpp -------------------------------------------------------------------------------- /Deps/sol/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sol/sol/sol.hpp -------------------------------------------------------------------------------- /Deps/sqlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sqlite/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/sqlite/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sqlite/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/sqlite/src/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sqlite/src/shell.c -------------------------------------------------------------------------------- /Deps/sqlite/src/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sqlite/src/sqlite3.c -------------------------------------------------------------------------------- /Deps/sqlite/src/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sqlite/src/sqlite3.h -------------------------------------------------------------------------------- /Deps/sqlite/src/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/sqlite/src/sqlite3ext.h -------------------------------------------------------------------------------- /Deps/theora/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/.gitignore -------------------------------------------------------------------------------- /Deps/theora/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/.travis.yml -------------------------------------------------------------------------------- /Deps/theora/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/AUTHORS -------------------------------------------------------------------------------- /Deps/theora/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/CHANGES -------------------------------------------------------------------------------- /Deps/theora/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/theora/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/COPYING -------------------------------------------------------------------------------- /Deps/theora/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/LICENSE -------------------------------------------------------------------------------- /Deps/theora/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/Makefile.am -------------------------------------------------------------------------------- /Deps/theora/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/README -------------------------------------------------------------------------------- /Deps/theora/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/SConstruct -------------------------------------------------------------------------------- /Deps/theora/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/theora/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/autogen.sh -------------------------------------------------------------------------------- /Deps/theora/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/configure.ac -------------------------------------------------------------------------------- /Deps/theora/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/include/Makefile.am -------------------------------------------------------------------------------- /Deps/theora/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/Makefile.am -------------------------------------------------------------------------------- /Deps/theora/lib/Version_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/Version_script -------------------------------------------------------------------------------- /Deps/theora/lib/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/analyze.c -------------------------------------------------------------------------------- /Deps/theora/lib/apiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/apiwrapper.c -------------------------------------------------------------------------------- /Deps/theora/lib/apiwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/apiwrapper.h -------------------------------------------------------------------------------- /Deps/theora/lib/arm/arm2gnu.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/arm2gnu.pl -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armbits.h -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armbits.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armbits.s -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armcpu.c -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armcpu.h -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armenc.c -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armenc.h -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armfrag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armfrag.s -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armidct.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armidct.s -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armint.h -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armloop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armloop.s -------------------------------------------------------------------------------- /Deps/theora/lib/arm/armstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/arm/armstate.c -------------------------------------------------------------------------------- /Deps/theora/lib/bitpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/bitpack.c -------------------------------------------------------------------------------- /Deps/theora/lib/bitpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/bitpack.h -------------------------------------------------------------------------------- /Deps/theora/lib/c64x/c64xdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/c64x/c64xdec.c -------------------------------------------------------------------------------- /Deps/theora/lib/c64x/c64xdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/c64x/c64xdec.h -------------------------------------------------------------------------------- /Deps/theora/lib/c64x/c64xfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/c64x/c64xfrag.c -------------------------------------------------------------------------------- /Deps/theora/lib/c64x/c64xidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/c64x/c64xidct.c -------------------------------------------------------------------------------- /Deps/theora/lib/c64x/c64xint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/c64x/c64xint.h -------------------------------------------------------------------------------- /Deps/theora/lib/collect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/collect.c -------------------------------------------------------------------------------- /Deps/theora/lib/collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/collect.h -------------------------------------------------------------------------------- /Deps/theora/lib/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/dct.h -------------------------------------------------------------------------------- /Deps/theora/lib/decapiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/decapiwrapper.c -------------------------------------------------------------------------------- /Deps/theora/lib/decinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/decinfo.c -------------------------------------------------------------------------------- /Deps/theora/lib/decint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/decint.h -------------------------------------------------------------------------------- /Deps/theora/lib/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/decode.c -------------------------------------------------------------------------------- /Deps/theora/lib/defexp.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/defexp.awk -------------------------------------------------------------------------------- /Deps/theora/lib/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/dequant.c -------------------------------------------------------------------------------- /Deps/theora/lib/dequant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/dequant.h -------------------------------------------------------------------------------- /Deps/theora/lib/encapiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/encapiwrapper.c -------------------------------------------------------------------------------- /Deps/theora/lib/encfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/encfrag.c -------------------------------------------------------------------------------- /Deps/theora/lib/encinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/encinfo.c -------------------------------------------------------------------------------- /Deps/theora/lib/encint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/encint.h -------------------------------------------------------------------------------- /Deps/theora/lib/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/encode.c -------------------------------------------------------------------------------- /Deps/theora/lib/enquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/enquant.c -------------------------------------------------------------------------------- /Deps/theora/lib/enquant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/enquant.h -------------------------------------------------------------------------------- /Deps/theora/lib/fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/fdct.c -------------------------------------------------------------------------------- /Deps/theora/lib/fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/fragment.c -------------------------------------------------------------------------------- /Deps/theora/lib/huffdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/huffdec.c -------------------------------------------------------------------------------- /Deps/theora/lib/huffdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/huffdec.h -------------------------------------------------------------------------------- /Deps/theora/lib/huffenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/huffenc.c -------------------------------------------------------------------------------- /Deps/theora/lib/huffenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/huffenc.h -------------------------------------------------------------------------------- /Deps/theora/lib/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/huffman.h -------------------------------------------------------------------------------- /Deps/theora/lib/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/idct.c -------------------------------------------------------------------------------- /Deps/theora/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/info.c -------------------------------------------------------------------------------- /Deps/theora/lib/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/internal.c -------------------------------------------------------------------------------- /Deps/theora/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/internal.h -------------------------------------------------------------------------------- /Deps/theora/lib/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/mathops.c -------------------------------------------------------------------------------- /Deps/theora/lib/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/mathops.h -------------------------------------------------------------------------------- /Deps/theora/lib/mcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/mcenc.c -------------------------------------------------------------------------------- /Deps/theora/lib/modedec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/modedec.h -------------------------------------------------------------------------------- /Deps/theora/lib/ocintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/ocintrin.h -------------------------------------------------------------------------------- /Deps/theora/lib/quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/quant.c -------------------------------------------------------------------------------- /Deps/theora/lib/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/quant.h -------------------------------------------------------------------------------- /Deps/theora/lib/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/rate.c -------------------------------------------------------------------------------- /Deps/theora/lib/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/state.c -------------------------------------------------------------------------------- /Deps/theora/lib/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/state.h -------------------------------------------------------------------------------- /Deps/theora/lib/theora.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/theora.def -------------------------------------------------------------------------------- /Deps/theora/lib/theora.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/theora.exp -------------------------------------------------------------------------------- /Deps/theora/lib/theoradec.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/theoradec.exp -------------------------------------------------------------------------------- /Deps/theora/lib/theoraenc.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/theoraenc.exp -------------------------------------------------------------------------------- /Deps/theora/lib/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/tokenize.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/mmxfdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/mmxfdct.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/mmxfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/mmxfrag.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/mmxidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/mmxidct.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/mmxloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/mmxloop.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86/mmxstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/mmxstate.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/sse2fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/sse2fdct.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/sse2idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/sse2idct.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/sse2trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/sse2trans.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/x86cpu.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/x86cpu.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86/x86enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/x86enc.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/x86enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/x86enc.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86/x86int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/x86int.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86/x86state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/x86state.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86/x86zigzag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86/x86zigzag.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86_vc/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86_vc/x86cpu.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86_vc/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86_vc/x86cpu.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86_vc/x86enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86_vc/x86enc.c -------------------------------------------------------------------------------- /Deps/theora/lib/x86_vc/x86enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86_vc/x86enc.h -------------------------------------------------------------------------------- /Deps/theora/lib/x86_vc/x86int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/lib/x86_vc/x86int.h -------------------------------------------------------------------------------- /Deps/theora/libtheora.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/libtheora.spec.in -------------------------------------------------------------------------------- /Deps/theora/theora.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/theora.pc.in -------------------------------------------------------------------------------- /Deps/theora/theoradec.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/theoradec.pc.in -------------------------------------------------------------------------------- /Deps/theora/theoraenc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/theora/theoraenc.pc.in -------------------------------------------------------------------------------- /Deps/tracy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/tracy/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/tracy/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/tracy/Config.cmake.in -------------------------------------------------------------------------------- /Deps/tracy/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/tracy/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/tracy/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/tracy/version.cmake -------------------------------------------------------------------------------- /Deps/update_source_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/update_source_lists.py -------------------------------------------------------------------------------- /Deps/vorbis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/.gitignore -------------------------------------------------------------------------------- /Deps/vorbis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/.travis.yml -------------------------------------------------------------------------------- /Deps/vorbis/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/.ycm_extra_conf.py -------------------------------------------------------------------------------- /Deps/vorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/AUTHORS -------------------------------------------------------------------------------- /Deps/vorbis/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/Brewfile -------------------------------------------------------------------------------- /Deps/vorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/CHANGES -------------------------------------------------------------------------------- /Deps/vorbis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/vorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/COPYING -------------------------------------------------------------------------------- /Deps/vorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/Makefile.am -------------------------------------------------------------------------------- /Deps/vorbis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/README.md -------------------------------------------------------------------------------- /Deps/vorbis/_ReadmeDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/_ReadmeDep.txt -------------------------------------------------------------------------------- /Deps/vorbis/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/appveyor.yml -------------------------------------------------------------------------------- /Deps/vorbis/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/autogen.sh -------------------------------------------------------------------------------- /Deps/vorbis/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/configure.ac -------------------------------------------------------------------------------- /Deps/vorbis/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/debian/changelog -------------------------------------------------------------------------------- /Deps/vorbis/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/debian/control -------------------------------------------------------------------------------- /Deps/vorbis/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/debian/copyright -------------------------------------------------------------------------------- /Deps/vorbis/debian/libvorbis-dev.docs: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/share/doc/libvorbis-*/* 2 | -------------------------------------------------------------------------------- /Deps/vorbis/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/debian/rules -------------------------------------------------------------------------------- /Deps/vorbis/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/debian/watch -------------------------------------------------------------------------------- /Deps/vorbis/doc/03-codebook.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/03-codebook.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/04-codec.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/04-codec.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/05-comment.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/05-comment.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/06-floor0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/06-floor0.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/07-floor1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/07-floor1.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/08-residue.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/08-residue.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/09-helper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/09-helper.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/10-tables.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/10-tables.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/Doxyfile.in -------------------------------------------------------------------------------- /Deps/vorbis/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/Makefile.am -------------------------------------------------------------------------------- /Deps/vorbis/doc/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/components.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/eightphase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/eightphase.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/floor1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/floor1-1.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/floor1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/floor1-2.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/floor1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/floor1-3.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/floor1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/floor1-4.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/floorval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/floorval.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/footer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/footer.tex -------------------------------------------------------------------------------- /Deps/vorbis/doc/fourphase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/fourphase.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/framing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/framing.html -------------------------------------------------------------------------------- /Deps/vorbis/doc/helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/helper.html -------------------------------------------------------------------------------- /Deps/vorbis/doc/hufftree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/hufftree.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/index.html -------------------------------------------------------------------------------- /Deps/vorbis/doc/oggstream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/oggstream.html -------------------------------------------------------------------------------- /Deps/vorbis/doc/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/release.txt -------------------------------------------------------------------------------- /Deps/vorbis/doc/residue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/residue2.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/rfc5215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/rfc5215.txt -------------------------------------------------------------------------------- /Deps/vorbis/doc/rfc5215.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/rfc5215.xml -------------------------------------------------------------------------------- /Deps/vorbis/doc/squarepolar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/squarepolar.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/stereo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/stereo.html -------------------------------------------------------------------------------- /Deps/vorbis/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/stream.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/v-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/v-comment.html -------------------------------------------------------------------------------- /Deps/vorbis/doc/vorbis-clip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/vorbis-clip.txt -------------------------------------------------------------------------------- /Deps/vorbis/doc/window1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/window1.png -------------------------------------------------------------------------------- /Deps/vorbis/doc/window2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/doc/window2.png -------------------------------------------------------------------------------- /Deps/vorbis/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/include/Makefile.am -------------------------------------------------------------------------------- /Deps/vorbis/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/CMakeLists.txt -------------------------------------------------------------------------------- /Deps/vorbis/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/Makefile.am -------------------------------------------------------------------------------- /Deps/vorbis/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/analysis.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/backends.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/barkmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/barkmel.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/bitrate.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/bitrate.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/block.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/codebook.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/codebook.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/envelope.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/envelope.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/floor0.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/floor1.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/highlevel.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/info.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lookup.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lookup.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/lookup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lookup_data.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/lookups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lookups.pl -------------------------------------------------------------------------------- /Deps/vorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lpc.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lpc.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lsp.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/lsp.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/mapping0.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/masking.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/mdct.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/mdct.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/misc.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/misc.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/modes/psych_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/modes/psych_8.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/modes/setup_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/modes/setup_8.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/modes/setup_X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/modes/setup_X.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/os.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/psy.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/psy.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/psytune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/psytune.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/registry.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/registry.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/res0.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/scales.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/sharedbook.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/smallft.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/smallft.h -------------------------------------------------------------------------------- /Deps/vorbis/lib/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/synthesis.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/tone.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/vorbisenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/vorbisenc.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/vorbisfile.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/window.c -------------------------------------------------------------------------------- /Deps/vorbis/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/lib/window.h -------------------------------------------------------------------------------- /Deps/vorbis/libvorbis.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/libvorbis.spec.in -------------------------------------------------------------------------------- /Deps/vorbis/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/m4/Makefile.am -------------------------------------------------------------------------------- /Deps/vorbis/m4/add_cflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/m4/add_cflags.m4 -------------------------------------------------------------------------------- /Deps/vorbis/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/m4/ogg.m4 -------------------------------------------------------------------------------- /Deps/vorbis/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/m4/pkg.m4 -------------------------------------------------------------------------------- /Deps/vorbis/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/macosx/Info.plist -------------------------------------------------------------------------------- /Deps/vorbis/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/symbian/bld.inf -------------------------------------------------------------------------------- /Deps/vorbis/symbian/vorbis.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/symbian/vorbis.mmp -------------------------------------------------------------------------------- /Deps/vorbis/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/test/Makefile.am -------------------------------------------------------------------------------- /Deps/vorbis/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/test/test.c -------------------------------------------------------------------------------- /Deps/vorbis/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/test/util.c -------------------------------------------------------------------------------- /Deps/vorbis/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/test/util.h -------------------------------------------------------------------------------- /Deps/vorbis/test/write_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/test/write_read.c -------------------------------------------------------------------------------- /Deps/vorbis/test/write_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/test/write_read.h -------------------------------------------------------------------------------- /Deps/vorbis/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vorbis.m4 -------------------------------------------------------------------------------- /Deps/vorbis/vorbis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vorbis.pc.in -------------------------------------------------------------------------------- /Deps/vorbis/vorbisenc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vorbisenc.pc.in -------------------------------------------------------------------------------- /Deps/vorbis/vorbisfile.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vorbisfile.pc.in -------------------------------------------------------------------------------- /Deps/vorbis/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/16.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/16u.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c-1.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c0.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c1.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c2.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c3.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c4.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c5.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c6.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c7.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c8.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44c9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44c9.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p-1.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p0.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p1.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p2.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p3.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p4.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p5.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p6.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p7.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p8.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44p9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44p9.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u0.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u1.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u2.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u3.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u4.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u5.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u6.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u7.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u8.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/44u9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/44u9.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/8.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/8u.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/Makefile.am -------------------------------------------------------------------------------- /Deps/vorbis/vq/bookutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/bookutil.c -------------------------------------------------------------------------------- /Deps/vorbis/vq/bookutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/bookutil.h -------------------------------------------------------------------------------- /Deps/vorbis/vq/distribution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/distribution.c -------------------------------------------------------------------------------- /Deps/vorbis/vq/floor_11.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/floor_11.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/floor_22.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/floor_22.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/floor_44.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/floor_44.vqs -------------------------------------------------------------------------------- /Deps/vorbis/vq/huffbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/huffbuild.c -------------------------------------------------------------------------------- /Deps/vorbis/vq/latticebuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/latticebuild.c -------------------------------------------------------------------------------- /Deps/vorbis/vq/latticetune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/latticetune.c -------------------------------------------------------------------------------- /Deps/vorbis/vq/localcodebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/localcodebook.h -------------------------------------------------------------------------------- /Deps/vorbis/vq/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/metrics.c -------------------------------------------------------------------------------- /Deps/vorbis/vq/vqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/vqgen.c -------------------------------------------------------------------------------- /Deps/vorbis/vq/vqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/vq/vqgen.h -------------------------------------------------------------------------------- /Deps/vorbis/win32/VS2005/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/win32/VS2005/README -------------------------------------------------------------------------------- /Deps/vorbis/win32/VS2008/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/win32/VS2008/README -------------------------------------------------------------------------------- /Deps/vorbis/win32/VS2010/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/win32/VS2010/README -------------------------------------------------------------------------------- /Deps/vorbis/win32/vorbis.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/win32/vorbis.def -------------------------------------------------------------------------------- /Deps/vorbis/win32/vorbisenc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Deps/vorbis/win32/vorbisenc.def -------------------------------------------------------------------------------- /Docs/EngineAPI/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Docs/EngineAPI/TODO.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/README.md -------------------------------------------------------------------------------- /Tools/BBuilder/src/Descs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/BBuilder/src/Descs.cpp -------------------------------------------------------------------------------- /Tools/BBuilder/src/ExtTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/BBuilder/src/ExtTools.cpp -------------------------------------------------------------------------------- /Tools/BBuilder/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/BBuilder/src/Main.cpp -------------------------------------------------------------------------------- /Tools/BBuilder/src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/BBuilder/src/Main.h -------------------------------------------------------------------------------- /Tools/BBuilder/src/Pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/BBuilder/src/Pack.cpp -------------------------------------------------------------------------------- /Tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/CMakeLists.txt -------------------------------------------------------------------------------- /Tools/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Tools/Common/ContentForgeTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/ContentForgeTool.h -------------------------------------------------------------------------------- /Tools/Common/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Data.cpp -------------------------------------------------------------------------------- /Tools/Common/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Data.h -------------------------------------------------------------------------------- /Tools/Common/DataScheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/DataScheme.cpp -------------------------------------------------------------------------------- /Tools/Common/DataScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/DataScheme.h -------------------------------------------------------------------------------- /Tools/Common/HRDParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/HRDParser.cpp -------------------------------------------------------------------------------- /Tools/Common/HRDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/HRDParser.h -------------------------------------------------------------------------------- /Tools/Common/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Logging.h -------------------------------------------------------------------------------- /Tools/Common/MurmurHash3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/MurmurHash3.cpp -------------------------------------------------------------------------------- /Tools/Common/MurmurHash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/MurmurHash3.h -------------------------------------------------------------------------------- /Tools/Common/ParamsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/ParamsUtils.cpp -------------------------------------------------------------------------------- /Tools/Common/ParamsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/ParamsUtils.h -------------------------------------------------------------------------------- /Tools/Common/StringID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/StringID.cpp -------------------------------------------------------------------------------- /Tools/Common/StringID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/StringID.h -------------------------------------------------------------------------------- /Tools/Common/StringIDStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/StringIDStorage.h -------------------------------------------------------------------------------- /Tools/Common/Subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Subprocess.h -------------------------------------------------------------------------------- /Tools/Common/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Type.h -------------------------------------------------------------------------------- /Tools/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Utils.cpp -------------------------------------------------------------------------------- /Tools/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Utils.h -------------------------------------------------------------------------------- /Tools/Common/ValueTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/ValueTable.cpp -------------------------------------------------------------------------------- /Tools/Common/ValueTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/ValueTable.h -------------------------------------------------------------------------------- /Tools/Common/Vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/Vectors.h -------------------------------------------------------------------------------- /Tools/Common/src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Common/src.cmake -------------------------------------------------------------------------------- /Tools/ContentForge/cf-fbx/src.cmake: -------------------------------------------------------------------------------- 1 | set(DEM_CF_FBX_SOURCES 2 | Main.cpp 3 | ) 4 | 5 | -------------------------------------------------------------------------------- /Tools/ContentForge/cf-hlsl/src.cmake: -------------------------------------------------------------------------------- 1 | set(DEM_CF_HLSL_SOURCES 2 | Main.cpp 3 | ) 4 | 5 | -------------------------------------------------------------------------------- /Tools/ContentForge/cf-material/src.cmake: -------------------------------------------------------------------------------- 1 | set(DEM_CF_MTL_SOURCES 2 | Main.cpp 3 | ) 4 | 5 | -------------------------------------------------------------------------------- /Tools/ContentForge/cf-skybox/src.cmake: -------------------------------------------------------------------------------- 1 | set(DEM_CF_SKY_SOURCES 2 | Main.cpp 3 | ) 4 | 5 | -------------------------------------------------------------------------------- /Tools/CreatorIDE/EngineAPI/App/ToolNavGeometry.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/DialogEditor/HrdLib/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/DialogEditor/HrdLib/SR.cs -------------------------------------------------------------------------------- /Tools/SceneCommon/SceneTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/SceneCommon/SceneTools.h -------------------------------------------------------------------------------- /Tools/SceneCommon/src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/SceneCommon/src.cmake -------------------------------------------------------------------------------- /Tools/ShaderCompiler/src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/ShaderCompiler/src.cmake -------------------------------------------------------------------------------- /Tools/Utils/GetDEM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Utils/GetDEM.bat -------------------------------------------------------------------------------- /Tools/Utils/NppSyntax/HLSL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Utils/NppSyntax/HLSL.xml -------------------------------------------------------------------------------- /Tools/Utils/NppSyntax/HRD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/Utils/NppSyntax/HRD.xml -------------------------------------------------------------------------------- /Tools/bin/ShaderCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/ShaderCompiler.dll -------------------------------------------------------------------------------- /Tools/bin/cf-effect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-effect.exe -------------------------------------------------------------------------------- /Tools/bin/cf-fbx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-fbx.exe -------------------------------------------------------------------------------- /Tools/bin/cf-gltf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-gltf.exe -------------------------------------------------------------------------------- /Tools/bin/cf-hlsl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-hlsl.exe -------------------------------------------------------------------------------- /Tools/bin/cf-l3dt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-l3dt.exe -------------------------------------------------------------------------------- /Tools/bin/cf-material.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-material.exe -------------------------------------------------------------------------------- /Tools/bin/cf-navmesh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-navmesh.exe -------------------------------------------------------------------------------- /Tools/bin/cf-rpath.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-rpath.exe -------------------------------------------------------------------------------- /Tools/bin/cf-skybox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cf-skybox.exe -------------------------------------------------------------------------------- /Tools/bin/cubemapgen/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cubemapgen/LICENSE.md -------------------------------------------------------------------------------- /Tools/bin/cubemapgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cubemapgen/README.md -------------------------------------------------------------------------------- /Tools/bin/cubemapgen/mcmg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/bin/cubemapgen/mcmg.exe -------------------------------------------------------------------------------- /Tools/schemes/scene.dss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/schemes/scene.dss -------------------------------------------------------------------------------- /Tools/schemes/settings.hrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niello/deusexmachina/HEAD/Tools/schemes/settings.hrd --------------------------------------------------------------------------------