├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── COPYING ├── README.md ├── docs ├── Coding.txt ├── Compiling.txt ├── Dependencies.txt ├── Notes.txt ├── SpecialThanks.txt ├── TextureCompression.txt ├── Todo.txt └── Troubleshooting.txt ├── lib ├── Box2D │ ├── Box2D │ │ ├── Box2D │ │ │ ├── Box2D.h │ │ │ ├── Box2DConfig.cmake.in │ │ │ ├── CMakeLists.txt │ │ │ ├── Collision │ │ │ │ ├── Shapes │ │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ │ ├── b2ChainShape.h │ │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ │ ├── b2CircleShape.h │ │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ │ ├── b2EdgeShape.h │ │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ │ ├── b2PolygonShape.h │ │ │ │ │ └── b2Shape.h │ │ │ │ ├── b2BroadPhase.cpp │ │ │ │ ├── b2BroadPhase.h │ │ │ │ ├── b2CollideCircle.cpp │ │ │ │ ├── b2CollideEdge.cpp │ │ │ │ ├── b2CollidePolygon.cpp │ │ │ │ ├── b2Collision.cpp │ │ │ │ ├── b2Collision.h │ │ │ │ ├── b2Distance.cpp │ │ │ │ ├── b2Distance.h │ │ │ │ ├── b2DynamicTree.cpp │ │ │ │ ├── b2DynamicTree.h │ │ │ │ ├── b2TimeOfImpact.cpp │ │ │ │ └── b2TimeOfImpact.h │ │ │ ├── Common │ │ │ │ ├── b2BlockAllocator.cpp │ │ │ │ ├── b2BlockAllocator.h │ │ │ │ ├── b2Draw.cpp │ │ │ │ ├── b2Draw.h │ │ │ │ ├── b2GrowableStack.h │ │ │ │ ├── b2Math.cpp │ │ │ │ ├── b2Math.h │ │ │ │ ├── b2Settings.cpp │ │ │ │ ├── b2Settings.h │ │ │ │ ├── b2StackAllocator.cpp │ │ │ │ ├── b2StackAllocator.h │ │ │ │ ├── b2Timer.cpp │ │ │ │ └── b2Timer.h │ │ │ ├── Dynamics │ │ │ │ ├── Contacts │ │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ │ ├── b2CircleContact.h │ │ │ │ │ ├── b2Contact.cpp │ │ │ │ │ ├── b2Contact.h │ │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ │ ├── b2ContactSolver.h │ │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ │ └── b2PolygonContact.h │ │ │ │ ├── Joints │ │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ │ ├── b2GearJoint.h │ │ │ │ │ ├── b2Joint.cpp │ │ │ │ │ ├── b2Joint.h │ │ │ │ │ ├── b2MotorJoint.cpp │ │ │ │ │ ├── b2MotorJoint.h │ │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ │ ├── b2MouseJoint.h │ │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ │ ├── b2RopeJoint.h │ │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ │ ├── b2WeldJoint.h │ │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ │ └── b2WheelJoint.h │ │ │ │ ├── b2Body.cpp │ │ │ │ ├── b2Body.h │ │ │ │ ├── b2ContactManager.cpp │ │ │ │ ├── b2ContactManager.h │ │ │ │ ├── b2Fixture.cpp │ │ │ │ ├── b2Fixture.h │ │ │ │ ├── b2Island.cpp │ │ │ │ ├── b2Island.h │ │ │ │ ├── b2TimeStep.h │ │ │ │ ├── b2World.cpp │ │ │ │ ├── b2World.h │ │ │ │ ├── b2WorldCallbacks.cpp │ │ │ │ └── b2WorldCallbacks.h │ │ │ ├── Rope │ │ │ │ ├── b2Rope.cpp │ │ │ │ └── b2Rope.h │ │ │ └── UseBox2D.cmake │ │ ├── Build │ │ │ ├── .vs │ │ │ │ └── Box2D │ │ │ │ │ └── v14 │ │ │ │ │ └── .suo │ │ │ ├── ALL_BUILD.vcxproj │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ ├── Box2D.sdf │ │ │ ├── Box2D.sln │ │ │ ├── Box2D │ │ │ │ ├── Box2D.dir │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── Box2D.log │ │ │ │ │ │ ├── Box2D.pdb │ │ │ │ │ │ └── Box2D.tlog │ │ │ │ │ │ │ ├── Box2D.lastbuildstate │ │ │ │ │ │ │ ├── CL.command.1.tlog │ │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ │ ├── Lib-link.read.1.tlog │ │ │ │ │ │ │ ├── Lib-link.write.1.tlog │ │ │ │ │ │ │ ├── custombuild.command.1.tlog │ │ │ │ │ │ │ ├── custombuild.read.1.tlog │ │ │ │ │ │ │ ├── custombuild.write.1.tlog │ │ │ │ │ │ │ └── lib.command.1.tlog │ │ │ │ │ └── Release │ │ │ │ │ │ ├── Box2D.log │ │ │ │ │ │ └── Box2D.tlog │ │ │ │ │ │ ├── Box2D.lastbuildstate │ │ │ │ │ │ ├── CL.command.1.tlog │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ ├── Lib-link.read.1.tlog │ │ │ │ │ │ ├── Lib-link.write.1.tlog │ │ │ │ │ │ ├── custombuild.command.1.tlog │ │ │ │ │ │ ├── custombuild.read.1.tlog │ │ │ │ │ │ ├── custombuild.write.1.tlog │ │ │ │ │ │ ├── lib.command.1.tlog │ │ │ │ │ │ └── unsuccessfulbuild │ │ │ │ ├── Box2D.vcxproj │ │ │ │ ├── Box2D.vcxproj.filters │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── generate.stamp │ │ │ │ │ └── generate.stamp.depend │ │ │ │ ├── Debug │ │ │ │ │ ├── Box2D.lib │ │ │ │ │ └── Box2D.pdb │ │ │ │ ├── Release │ │ │ │ │ └── Box2D.lib │ │ │ │ └── cmake_install.cmake │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.1.0-rc3 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeRCCompiler.cmake │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ ├── CompilerIdC.vcxproj │ │ │ │ │ │ └── Debug │ │ │ │ │ │ │ └── CompilerIdC.tlog │ │ │ │ │ │ │ ├── CL.command.1.tlog │ │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ │ ├── CompilerIdC.lastbuildstate │ │ │ │ │ │ │ ├── link.command.1.tlog │ │ │ │ │ │ │ ├── link.read.1.tlog │ │ │ │ │ │ │ └── link.write.1.tlog │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ ├── CompilerIdCXX.vcxproj │ │ │ │ │ │ └── Debug │ │ │ │ │ │ └── CompilerIdCXX.tlog │ │ │ │ │ │ ├── CL.command.1.tlog │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ ├── CompilerIdCXX.lastbuildstate │ │ │ │ │ │ ├── link.command.1.tlog │ │ │ │ │ │ ├── link.read.1.tlog │ │ │ │ │ │ └── link.write.1.tlog │ │ │ │ ├── CMakeOutput.log │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── ba63aef4d4a1ea520a95b31766ca8c77 │ │ │ │ │ └── generate.stamp.rule │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── generate.stamp │ │ │ │ ├── generate.stamp.depend │ │ │ │ └── generate.stamp.list │ │ │ ├── Data │ │ │ │ └── DroidSans.ttf │ │ │ ├── HelloWorld │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── generate.stamp │ │ │ │ │ └── generate.stamp.depend │ │ │ │ ├── HelloWorld.vcxproj │ │ │ │ ├── HelloWorld.vcxproj.filters │ │ │ │ └── cmake_install.cmake │ │ │ ├── Readme.txt │ │ │ ├── Testbed │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── generate.stamp │ │ │ │ │ └── generate.stamp.depend │ │ │ │ ├── Testbed.dir │ │ │ │ │ └── Release │ │ │ │ │ │ ├── Testbed.log │ │ │ │ │ │ └── Testbed.tlog │ │ │ │ │ │ ├── Testbed.lastbuildstate │ │ │ │ │ │ ├── custombuild.command.1.tlog │ │ │ │ │ │ ├── custombuild.read.1.tlog │ │ │ │ │ │ ├── custombuild.write.1.tlog │ │ │ │ │ │ └── unsuccessfulbuild │ │ │ │ ├── Testbed.vcxproj │ │ │ │ ├── Testbed.vcxproj.filters │ │ │ │ └── cmake_install.cmake │ │ │ ├── Win32 │ │ │ │ ├── Debug │ │ │ │ │ └── ZERO_CHECK │ │ │ │ │ │ ├── ZERO_CHECK.log │ │ │ │ │ │ └── ZERO_CHECK.tlog │ │ │ │ │ │ ├── ZERO_CHECK.lastbuildstate │ │ │ │ │ │ ├── custombuild.command.1.tlog │ │ │ │ │ │ ├── custombuild.read.1.tlog │ │ │ │ │ │ └── custombuild.write.1.tlog │ │ │ │ └── Release │ │ │ │ │ └── ZERO_CHECK │ │ │ │ │ ├── ZERO_CHECK.log │ │ │ │ │ └── ZERO_CHECK.tlog │ │ │ │ │ ├── ZERO_CHECK.lastbuildstate │ │ │ │ │ ├── custombuild.command.1.tlog │ │ │ │ │ ├── custombuild.read.1.tlog │ │ │ │ │ ├── custombuild.write.1.tlog │ │ │ │ │ └── unsuccessfulbuild │ │ │ ├── ZERO_CHECK.vcxproj │ │ │ ├── ZERO_CHECK.vcxproj.filters │ │ │ ├── cmake_install.cmake │ │ │ ├── glew │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── generate.stamp │ │ │ │ │ └── generate.stamp.depend │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── glew.dir │ │ │ │ │ └── Release │ │ │ │ │ │ ├── glew.log │ │ │ │ │ │ └── glew.tlog │ │ │ │ │ │ ├── custombuild.command.1.tlog │ │ │ │ │ │ ├── custombuild.read.1.tlog │ │ │ │ │ │ ├── custombuild.write.1.tlog │ │ │ │ │ │ ├── glew.lastbuildstate │ │ │ │ │ │ └── unsuccessfulbuild │ │ │ │ ├── glew.vcxproj │ │ │ │ └── glew.vcxproj.filters │ │ │ ├── glfw │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── generate.stamp │ │ │ │ │ └── generate.stamp.depend │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── glfw.dir │ │ │ │ │ └── Release │ │ │ │ │ │ ├── glfw.log │ │ │ │ │ │ └── glfw.tlog │ │ │ │ │ │ ├── custombuild.command.1.tlog │ │ │ │ │ │ ├── custombuild.read.1.tlog │ │ │ │ │ │ ├── custombuild.write.1.tlog │ │ │ │ │ │ ├── glfw.lastbuildstate │ │ │ │ │ │ └── unsuccessfulbuild │ │ │ │ ├── glfw.vcxproj │ │ │ │ └── glfw.vcxproj.filters │ │ │ ├── vs2013 │ │ │ │ ├── .vs │ │ │ │ │ └── Box2D │ │ │ │ │ │ └── v14 │ │ │ │ │ │ └── .suo │ │ │ │ ├── Box2D.sdf │ │ │ │ ├── Box2D.sln │ │ │ │ ├── Box2D.vcxproj │ │ │ │ ├── Box2D.vcxproj.filters │ │ │ │ ├── HelloWorld.vcxproj │ │ │ │ ├── HelloWorld.vcxproj.filters │ │ │ │ ├── Testbed.vcxproj │ │ │ │ ├── Testbed.vcxproj.filters │ │ │ │ ├── bin │ │ │ │ │ └── x32 │ │ │ │ │ │ └── Debug │ │ │ │ │ │ ├── Box2D.idb │ │ │ │ │ │ └── Box2D.pdb │ │ │ │ ├── glew.vcxproj │ │ │ │ ├── glew.vcxproj.filters │ │ │ │ ├── glfw.vcxproj │ │ │ │ ├── glfw.vcxproj.filters │ │ │ │ └── obj │ │ │ │ │ └── x32 │ │ │ │ │ └── Debug │ │ │ │ │ └── Box2D │ │ │ │ │ ├── Box2D.log │ │ │ │ │ └── Box2D.tlog │ │ │ │ │ ├── Box2D.lastbuildstate │ │ │ │ │ ├── CL.command.1.tlog │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ └── unsuccessfulbuild │ │ │ └── xcode5 │ │ │ │ └── Box2D.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── Building.txt │ │ ├── CMakeLists.txt │ │ ├── Changes.txt │ │ ├── Documentation │ │ │ ├── Doxyfile │ │ │ ├── images │ │ │ │ ├── Chain1.png │ │ │ │ ├── Chain1.svg │ │ │ │ ├── DebugDraw.png │ │ │ │ ├── GhostCollision.png │ │ │ │ ├── GhostCollision.svg │ │ │ │ ├── GhostVertices.png │ │ │ │ ├── GhostVertices.svg │ │ │ │ ├── SelfIntersect.png │ │ │ │ ├── SelfIntersect.svg │ │ │ │ ├── SkinCollision.png │ │ │ │ ├── SkinCollision.svg │ │ │ │ ├── SkinnedPolygon.png │ │ │ │ ├── SkinnedPolygon.svg │ │ │ │ ├── Tunnel1.png │ │ │ │ ├── Tunnel1.svg │ │ │ │ ├── WheelJoint.png │ │ │ │ ├── WheelJoint.svg │ │ │ │ ├── bodyOrigin.gif │ │ │ │ ├── captured.png │ │ │ │ ├── captured.svg │ │ │ │ ├── convex_concave.gif │ │ │ │ ├── distance.png │ │ │ │ ├── distance.svg │ │ │ │ ├── distanceJoint.gif │ │ │ │ ├── gearJoint.gif │ │ │ │ ├── manifolds.png │ │ │ │ ├── manifolds.svg │ │ │ │ ├── missed.png │ │ │ │ ├── missed.svg │ │ │ │ ├── modules.png │ │ │ │ ├── modules.svg │ │ │ │ ├── prismaticJoint.gif │ │ │ │ ├── pulleyJoint.gif │ │ │ │ ├── raycast.png │ │ │ │ ├── raycast.svg │ │ │ │ ├── regionquery.png │ │ │ │ ├── regionquery.svg │ │ │ │ ├── revoluteJoint.gif │ │ │ │ ├── testbed.gif │ │ │ │ ├── tunneling.png │ │ │ │ ├── tunneling.svg │ │ │ │ ├── winding.png │ │ │ │ └── winding.svg │ │ │ ├── manual.docx │ │ │ └── manual_Chinese.docx │ │ ├── HelloWorld │ │ │ ├── CMakeLists.txt │ │ │ └── HelloWorld.cpp │ │ ├── License.txt │ │ ├── Readme.txt │ │ ├── Testbed │ │ │ ├── CMakeLists.txt │ │ │ ├── Framework │ │ │ │ ├── DebugDraw.cpp │ │ │ │ ├── DebugDraw.h │ │ │ │ ├── Main.cpp │ │ │ │ ├── RenderGL3.cpp │ │ │ │ ├── RenderGL3.h │ │ │ │ ├── Test.cpp │ │ │ │ ├── Test.h │ │ │ │ ├── imgui.cpp │ │ │ │ ├── imgui.h │ │ │ │ └── stb_truetype.h │ │ │ └── Tests │ │ │ │ ├── AddPair.h │ │ │ │ ├── ApplyForce.h │ │ │ │ ├── BasicSliderCrank.h │ │ │ │ ├── BodyTypes.h │ │ │ │ ├── Breakable.h │ │ │ │ ├── Bridge.h │ │ │ │ ├── BulletTest.h │ │ │ │ ├── Cantilever.h │ │ │ │ ├── Car.h │ │ │ │ ├── Chain.h │ │ │ │ ├── CharacterCollision.h │ │ │ │ ├── CollisionFiltering.h │ │ │ │ ├── CollisionProcessing.h │ │ │ │ ├── CompoundShapes.h │ │ │ │ ├── Confined.h │ │ │ │ ├── ContinuousTest.h │ │ │ │ ├── ConvexHull.h │ │ │ │ ├── ConveyorBelt.h │ │ │ │ ├── DistanceTest.h │ │ │ │ ├── Dominos.h │ │ │ │ ├── DumpShell.h │ │ │ │ ├── DynamicTreeTest.h │ │ │ │ ├── EdgeShapes.h │ │ │ │ ├── EdgeTest.h │ │ │ │ ├── Gears.h │ │ │ │ ├── HeavyOnLight.h │ │ │ │ ├── HeavyOnLightTwo.h │ │ │ │ ├── Mobile.h │ │ │ │ ├── MobileBalanced.h │ │ │ │ ├── MotorJoint.h │ │ │ │ ├── OneSidedPlatform.h │ │ │ │ ├── Pinball.h │ │ │ │ ├── PolyCollision.h │ │ │ │ ├── PolyShapes.h │ │ │ │ ├── Prismatic.h │ │ │ │ ├── Pulleys.h │ │ │ │ ├── Pyramid.h │ │ │ │ ├── RayCast.h │ │ │ │ ├── Revolute.h │ │ │ │ ├── Rope.h │ │ │ │ ├── RopeJoint.h │ │ │ │ ├── SensorTest.h │ │ │ │ ├── ShapeEditing.h │ │ │ │ ├── SliderCrank.h │ │ │ │ ├── SphereStack.h │ │ │ │ ├── TestEntries.cpp │ │ │ │ ├── TheoJansen.h │ │ │ │ ├── Tiles.h │ │ │ │ ├── TimeOfImpact.h │ │ │ │ ├── Tumbler.h │ │ │ │ ├── VaryingFriction.h │ │ │ │ ├── VaryingRestitution.h │ │ │ │ ├── VerticalStack.h │ │ │ │ └── Web.h │ │ ├── glew │ │ │ ├── CMakeLists.txt │ │ │ ├── glew.c │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ │ ├── glfw │ │ │ ├── CMakeLists.txt │ │ │ ├── clipboard.c │ │ │ ├── cocoa_clipboard.m │ │ │ ├── cocoa_gamma.c │ │ │ ├── cocoa_init.m │ │ │ ├── cocoa_joystick.m │ │ │ ├── cocoa_monitor.m │ │ │ ├── cocoa_platform.h │ │ │ ├── cocoa_time.c │ │ │ ├── cocoa_window.m │ │ │ ├── config.h │ │ │ ├── context.c │ │ │ ├── egl_context.c │ │ │ ├── egl_platform.h │ │ │ ├── gamma.c │ │ │ ├── glext.h │ │ │ ├── glfw3.h │ │ │ ├── glfw3native.h │ │ │ ├── glx_context.c │ │ │ ├── glx_platform.h │ │ │ ├── glxext.h │ │ │ ├── init.c │ │ │ ├── input.c │ │ │ ├── internal.h │ │ │ ├── joystick.c │ │ │ ├── monitor.c │ │ │ ├── nsgl_context.m │ │ │ ├── nsgl_platform.h │ │ │ ├── time.c │ │ │ ├── wgl_context.c │ │ │ ├── wgl_platform.h │ │ │ ├── wglext.h │ │ │ ├── win32_clipboard.c │ │ │ ├── win32_gamma.c │ │ │ ├── win32_init.c │ │ │ ├── win32_joystick.c │ │ │ ├── win32_monitor.c │ │ │ ├── win32_platform.h │ │ │ ├── win32_time.c │ │ │ ├── win32_window.c │ │ │ ├── window.c │ │ │ ├── x11_clipboard.c │ │ │ ├── x11_gamma.c │ │ │ ├── x11_init.c │ │ │ ├── x11_joystick.c │ │ │ ├── x11_monitor.c │ │ │ ├── x11_platform.h │ │ │ ├── x11_time.c │ │ │ ├── x11_unicode.c │ │ │ └── x11_window.c │ │ └── premake4.lua │ ├── License.txt │ ├── include │ │ ├── Box2D.h │ │ ├── Box2D │ │ │ ├── Box2D.h │ │ │ ├── Box2DConfig.cmake.in │ │ │ ├── CMakeLists.txt │ │ │ ├── Collision │ │ │ │ ├── Shapes │ │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ │ ├── b2ChainShape.h │ │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ │ ├── b2CircleShape.h │ │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ │ ├── b2EdgeShape.h │ │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ │ ├── b2PolygonShape.h │ │ │ │ │ └── b2Shape.h │ │ │ │ ├── b2BroadPhase.cpp │ │ │ │ ├── b2BroadPhase.h │ │ │ │ ├── b2CollideCircle.cpp │ │ │ │ ├── b2CollideEdge.cpp │ │ │ │ ├── b2CollidePolygon.cpp │ │ │ │ ├── b2Collision.cpp │ │ │ │ ├── b2Collision.h │ │ │ │ ├── b2Distance.cpp │ │ │ │ ├── b2Distance.h │ │ │ │ ├── b2DynamicTree.cpp │ │ │ │ ├── b2DynamicTree.h │ │ │ │ ├── b2TimeOfImpact.cpp │ │ │ │ └── b2TimeOfImpact.h │ │ │ ├── Common │ │ │ │ ├── b2BlockAllocator.cpp │ │ │ │ ├── b2BlockAllocator.h │ │ │ │ ├── b2Draw.cpp │ │ │ │ ├── b2Draw.h │ │ │ │ ├── b2GrowableStack.h │ │ │ │ ├── b2Math.cpp │ │ │ │ ├── b2Math.h │ │ │ │ ├── b2Settings.cpp │ │ │ │ ├── b2Settings.h │ │ │ │ ├── b2StackAllocator.cpp │ │ │ │ ├── b2StackAllocator.h │ │ │ │ ├── b2Timer.cpp │ │ │ │ └── b2Timer.h │ │ │ ├── Dynamics │ │ │ │ ├── Contacts │ │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ │ ├── b2CircleContact.h │ │ │ │ │ ├── b2Contact.cpp │ │ │ │ │ ├── b2Contact.h │ │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ │ ├── b2ContactSolver.h │ │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ │ └── b2PolygonContact.h │ │ │ │ ├── Joints │ │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ │ ├── b2GearJoint.h │ │ │ │ │ ├── b2Joint.cpp │ │ │ │ │ ├── b2Joint.h │ │ │ │ │ ├── b2MotorJoint.cpp │ │ │ │ │ ├── b2MotorJoint.h │ │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ │ ├── b2MouseJoint.h │ │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ │ ├── b2RopeJoint.h │ │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ │ ├── b2WeldJoint.h │ │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ │ └── b2WheelJoint.h │ │ │ │ ├── b2Body.cpp │ │ │ │ ├── b2Body.h │ │ │ │ ├── b2ContactManager.cpp │ │ │ │ ├── b2ContactManager.h │ │ │ │ ├── b2Fixture.cpp │ │ │ │ ├── b2Fixture.h │ │ │ │ ├── b2Island.cpp │ │ │ │ ├── b2Island.h │ │ │ │ ├── b2TimeStep.h │ │ │ │ ├── b2World.cpp │ │ │ │ ├── b2World.h │ │ │ │ ├── b2WorldCallbacks.cpp │ │ │ │ └── b2WorldCallbacks.h │ │ │ ├── Rope │ │ │ │ ├── b2Rope.cpp │ │ │ │ └── b2Rope.h │ │ │ └── UseBox2D.cmake │ │ └── Directories.txt │ └── lib │ │ ├── debug │ │ ├── Box2D.lib │ │ └── Box2D.pdb │ │ └── release │ │ └── Box2D.lib ├── LuaIntf │ ├── LICENSE │ ├── LuaIntf │ │ ├── LuaCompat.h │ │ ├── LuaContext.h │ │ ├── LuaIntf.h │ │ ├── LuaRef.h │ │ ├── LuaState.h │ │ ├── QtLuaIntf.h │ │ ├── impl │ │ │ ├── CppArg.h │ │ │ ├── CppBindClass.h │ │ │ ├── CppBindModule.h │ │ │ ├── CppFunction.h │ │ │ ├── CppInvoke.h │ │ │ ├── CppObject.h │ │ │ ├── LuaException.h │ │ │ └── LuaType.h │ │ └── src │ │ │ ├── CppBindClass.cpp │ │ │ ├── CppBindModule.cpp │ │ │ ├── CppFunction.cpp │ │ │ ├── CppObject.cpp │ │ │ ├── LuaCompat.cpp │ │ │ ├── LuaRef.cpp │ │ │ ├── LuaState.cpp │ │ │ └── QtLuaIntf.cpp │ └── README.md ├── SDL2 │ ├── SDL2-2.0.4 │ │ ├── Android.mk │ │ ├── BUGS.txt │ │ ├── CMakeLists.txt │ │ ├── COPYING.txt │ │ ├── CREDITS.txt │ │ ├── INSTALL.txt │ │ ├── Makefile.in │ │ ├── Makefile.minimal │ │ ├── Makefile.pandora │ │ ├── Makefile.psp │ │ ├── Makefile.wiz │ │ ├── README-SDL.txt │ │ ├── README.txt │ │ ├── SDL2.spec │ │ ├── SDL2.spec.in │ │ ├── TODO.txt │ │ ├── VisualC-WinRT │ │ │ ├── SDL2-WinRT.nuspec │ │ │ ├── SDL2-WinRT.targets │ │ │ ├── SDL2main-WinRT-NonXAML.nuspec │ │ │ ├── SDL2main-WinRT-NonXAML.targets │ │ │ ├── UWP_VS2015 │ │ │ │ ├── SDL-UWP.vcxproj │ │ │ │ └── SDL-UWP.vcxproj.filters │ │ │ ├── WinPhone80_VS2012 │ │ │ │ ├── SDL-WinPhone80.vcxproj │ │ │ │ └── SDL-WinPhone80.vcxproj.filters │ │ │ ├── WinPhone81_VS2013 │ │ │ │ ├── SDL-WinPhone81.vcxproj │ │ │ │ └── SDL-WinPhone81.vcxproj.filters │ │ │ ├── WinRT80_VS2012 │ │ │ │ ├── SDL-WinRT80.sln │ │ │ │ ├── SDL-WinRT80.vcxproj │ │ │ │ └── SDL-WinRT80.vcxproj.filters │ │ │ ├── WinRT81_VS2013 │ │ │ │ ├── SDL-WinRT81.vcxproj │ │ │ │ └── SDL-WinRT81.vcxproj.filters │ │ │ └── tests │ │ │ │ ├── loopwave │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── loopwave_VS2012.vcxproj │ │ │ │ └── loopwave_VS2012_TemporaryKey.pfx │ │ │ │ └── testthread │ │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── testthread_VS2012.vcxproj │ │ │ │ └── testthread_VS2012_TemporaryKey.pfx │ │ ├── VisualC.html │ │ ├── VisualC │ │ │ ├── .vs │ │ │ │ └── SDL │ │ │ │ │ └── v14 │ │ │ │ │ └── .suo │ │ │ ├── SDL.sdf │ │ │ ├── SDL.sln │ │ │ ├── SDL.suo │ │ │ ├── SDL │ │ │ │ ├── SDL.vcxproj │ │ │ │ ├── SDL.vcxproj.filters │ │ │ │ ├── SDL.vcxproj.user │ │ │ │ ├── SDL_VS2008.vcproj │ │ │ │ └── Win32 │ │ │ │ │ ├── Debug │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ ├── SDL.log │ │ │ │ │ ├── SDL2.dll.intermediate.manifest │ │ │ │ │ ├── SDL2.lastbuildstate │ │ │ │ │ ├── SDL2.write.1.tlog │ │ │ │ │ ├── cl.command.1.tlog │ │ │ │ │ ├── link-cvtres.read.1.tlog │ │ │ │ │ ├── link-cvtres.write.1.tlog │ │ │ │ │ ├── link.command.1.tlog │ │ │ │ │ ├── link.read.1.tlog │ │ │ │ │ ├── link.write.1.tlog │ │ │ │ │ ├── mt.command.1.tlog │ │ │ │ │ ├── mt.read.1.tlog │ │ │ │ │ ├── mt.write.1.tlog │ │ │ │ │ ├── rc.command.1.tlog │ │ │ │ │ ├── rc.read.1.tlog │ │ │ │ │ ├── rc.write.1.tlog │ │ │ │ │ └── version.res │ │ │ │ │ └── Release │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ ├── SDL.log │ │ │ │ │ ├── SDL2.Build.CppClean.log │ │ │ │ │ ├── SDL2.dll.intermediate.manifest │ │ │ │ │ ├── SDL2.lastbuildstate │ │ │ │ │ ├── SDL2.write.1.tlog │ │ │ │ │ ├── cl.command.1.tlog │ │ │ │ │ ├── link-cvtres.read.1.tlog │ │ │ │ │ ├── link-cvtres.write.1.tlog │ │ │ │ │ ├── link.command.1.tlog │ │ │ │ │ ├── link.read.1.tlog │ │ │ │ │ ├── link.write.1.tlog │ │ │ │ │ ├── mt.command.1.tlog │ │ │ │ │ ├── mt.read.1.tlog │ │ │ │ │ ├── mt.write.1.tlog │ │ │ │ │ ├── rc.command.1.tlog │ │ │ │ │ ├── rc.read.1.tlog │ │ │ │ │ ├── rc.write.1.tlog │ │ │ │ │ ├── vc100.pdb │ │ │ │ │ └── version.res │ │ │ ├── SDL_VS2008.sln │ │ │ ├── SDLmain │ │ │ │ ├── SDLmain.vcxproj │ │ │ │ ├── SDLmain.vcxproj.user │ │ │ │ ├── SDLmain_VS2008.vcproj │ │ │ │ └── Win32 │ │ │ │ │ └── Release │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ ├── Lib-link.read.1.tlog │ │ │ │ │ ├── Lib-link.write.1.tlog │ │ │ │ │ ├── SDL2main.Build.CppClean.log │ │ │ │ │ ├── SDL2main.lastbuildstate │ │ │ │ │ ├── SDLmain.log │ │ │ │ │ ├── cl.command.1.tlog │ │ │ │ │ └── lib.command.1.tlog │ │ │ ├── SDLtest │ │ │ │ ├── SDLtest.vcxproj │ │ │ │ ├── SDLtest.vcxproj.user │ │ │ │ └── SDLtest_VS2008.vcproj │ │ │ ├── Win32 │ │ │ │ ├── Debug │ │ │ │ │ ├── SDL2.dll │ │ │ │ │ ├── SDL2.exp │ │ │ │ │ ├── SDL2.ilk │ │ │ │ │ ├── SDL2.lib │ │ │ │ │ └── SDL2.pdb │ │ │ │ └── Release │ │ │ │ │ ├── SDL2.dll │ │ │ │ │ ├── SDL2.exp │ │ │ │ │ ├── SDL2.lib │ │ │ │ │ ├── SDL2.pdb │ │ │ │ │ └── SDL2main.lib │ │ │ ├── clean.sh │ │ │ ├── tests │ │ │ │ ├── checkkeys │ │ │ │ │ ├── checkkeys.vcxproj │ │ │ │ │ ├── checkkeys.vcxproj.user │ │ │ │ │ └── checkkeys_VS2008.vcproj │ │ │ │ ├── controllermap │ │ │ │ │ ├── controllermap.vcxproj │ │ │ │ │ ├── controllermap.vcxproj.user │ │ │ │ │ └── controllermap_VS2008.vcproj │ │ │ │ ├── loopwave │ │ │ │ │ ├── loopwave.vcxproj │ │ │ │ │ ├── loopwave.vcxproj.user │ │ │ │ │ └── loopwave_VS2008.vcproj │ │ │ │ ├── testatomic │ │ │ │ │ ├── testatomic.vcxproj │ │ │ │ │ ├── testatomic.vcxproj.user │ │ │ │ │ └── testatomic_VS2008.vcproj │ │ │ │ ├── testautomation │ │ │ │ │ ├── testautomation.vcxproj │ │ │ │ │ ├── testautomation.vcxproj.user │ │ │ │ │ └── testautomation_VS2008.vcproj │ │ │ │ ├── testdraw2 │ │ │ │ │ ├── testdraw2.vcxproj │ │ │ │ │ ├── testdraw2.vcxproj.user │ │ │ │ │ └── testdraw2_VS2008.vcproj │ │ │ │ ├── testfile │ │ │ │ │ ├── testfile.vcxproj │ │ │ │ │ ├── testfile.vcxproj.user │ │ │ │ │ └── testfile_VS2008.vcproj │ │ │ │ ├── testgamecontroller │ │ │ │ │ ├── testgamecontroller.vcxproj │ │ │ │ │ ├── testgamecontroller.vcxproj.user │ │ │ │ │ └── testgamecontroller_VS2008.vcproj │ │ │ │ ├── testgesture │ │ │ │ │ ├── testgesture.vcxproj │ │ │ │ │ ├── testgesture.vcxproj.user │ │ │ │ │ └── testgesture_VS2008.vcproj │ │ │ │ ├── testgl2 │ │ │ │ │ ├── testgl2.vcxproj │ │ │ │ │ ├── testgl2.vcxproj.user │ │ │ │ │ └── testgl2_VS2008.vcproj │ │ │ │ ├── testgles2 │ │ │ │ │ ├── testgles2.vcxproj │ │ │ │ │ ├── testgles2.vcxproj.user │ │ │ │ │ └── testgles2_VS2008.vcproj │ │ │ │ ├── testjoystick │ │ │ │ │ ├── testjoystick.vcxproj │ │ │ │ │ ├── testjoystick.vcxproj.user │ │ │ │ │ └── testjoystick_VS2008.vcproj │ │ │ │ ├── testoverlay2 │ │ │ │ │ ├── testoverlay2.vcxproj │ │ │ │ │ ├── testoverlay2.vcxproj.user │ │ │ │ │ └── testoverlay2_VS2008.vcproj │ │ │ │ ├── testplatform │ │ │ │ │ ├── testplatform.vcxproj │ │ │ │ │ ├── testplatform.vcxproj.user │ │ │ │ │ └── testplatform_VS2008.vcproj │ │ │ │ ├── testpower │ │ │ │ │ ├── testpower.vcxproj │ │ │ │ │ ├── testpower.vcxproj.user │ │ │ │ │ └── testpower_VS2008.vcproj │ │ │ │ ├── testrendertarget │ │ │ │ │ ├── testrendertarget.vcxproj │ │ │ │ │ ├── testrendertarget.vcxproj.user │ │ │ │ │ └── testrendertarget_VS2008.vcproj │ │ │ │ ├── testrumble │ │ │ │ │ ├── testrumble.vcxproj │ │ │ │ │ ├── testrumble.vcxproj.user │ │ │ │ │ └── testrumble_VS2008.vcproj │ │ │ │ ├── testscale │ │ │ │ │ ├── testscale.vcxproj │ │ │ │ │ ├── testscale.vcxproj.user │ │ │ │ │ └── testscale_VS2008.vcproj │ │ │ │ ├── testshape │ │ │ │ │ ├── testshape.vcxproj │ │ │ │ │ ├── testshape.vcxproj.user │ │ │ │ │ └── testshape_VS2008.vcproj │ │ │ │ └── testsprite2 │ │ │ │ │ ├── testsprite2.vcxproj │ │ │ │ │ ├── testsprite2.vcxproj.user │ │ │ │ │ └── testsprite2_VS2008.vcproj │ │ │ └── visualtest │ │ │ │ ├── unittest │ │ │ │ └── testquit │ │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ │ └── visualtest_VS2012.vcxproj │ │ ├── WhatsNew.txt │ │ ├── Xcode-iOS │ │ │ ├── Demos │ │ │ │ ├── Default.png │ │ │ │ ├── Demos.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── README │ │ │ │ ├── data │ │ │ │ │ ├── bitmapfont │ │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ │ └── license.txt │ │ │ │ │ ├── drums │ │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ │ ├── icon.bmp │ │ │ │ │ ├── ship.bmp │ │ │ │ │ ├── space.bmp │ │ │ │ │ └── stroke.bmp │ │ │ │ └── src │ │ │ │ │ ├── accelerometer.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── fireworks.c │ │ │ │ │ ├── happy.c │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── mixer.c │ │ │ │ │ ├── rectangles.c │ │ │ │ │ └── touch.c │ │ │ ├── SDL │ │ │ │ └── SDL.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── SDLtest │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── Template │ │ │ │ └── SDL iOS Application │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── main.c │ │ │ └── Test │ │ │ │ ├── Info.plist │ │ │ │ ├── README │ │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Xcode │ │ │ ├── SDL │ │ │ │ ├── Info-Framework.plist │ │ │ │ ├── SDL.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── pkg-support │ │ │ │ │ ├── SDL.info │ │ │ │ │ ├── resources │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ └── SDL_DS_Store │ │ │ │ │ └── sdl_logo.pdf │ │ │ ├── SDLTest │ │ │ │ ├── SDLTest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── TestDropFile-Info.plist │ │ │ └── XcodeDocSet │ │ │ │ └── Doxyfile │ │ ├── acinclude │ │ │ ├── ac_check_define.m4 │ │ │ ├── alsa.m4 │ │ │ ├── ax_check_compiler_flags.m4 │ │ │ ├── ax_gcc_archflag.m4 │ │ │ ├── ax_gcc_x86_cpuid.m4.htm │ │ │ ├── esd.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── android-project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ant.properties │ │ │ ├── build.properties │ │ │ ├── build.xml │ │ │ ├── default.properties │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Android_static.mk │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ └── SDLActivity.java │ │ ├── autogen.sh │ │ ├── build-scripts │ │ │ ├── androidbuild.sh │ │ │ ├── checker-buildbot.sh │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── emscripten-buildbot.sh │ │ │ ├── g++-fat.sh │ │ │ ├── gcc-fat.sh │ │ │ ├── install-sh │ │ │ ├── iosbuild.sh │ │ │ ├── ltmain.sh │ │ │ ├── mkinstalldirs │ │ │ ├── nacl-buildbot.sh │ │ │ ├── naclbuild.sh │ │ │ ├── raspberrypi-buildbot.sh │ │ │ ├── showrev.sh │ │ │ ├── strip_fPIC.sh │ │ │ ├── update-copyright.sh │ │ │ ├── updaterev.sh │ │ │ ├── windows-buildbot-zipper.bat │ │ │ ├── winrtbuild.bat │ │ │ └── winrtbuild.ps1 │ │ ├── cmake │ │ │ ├── macros.cmake │ │ │ └── sdlchecks.cmake │ │ ├── cmake_uninstall.cmake.in │ │ ├── configure │ │ ├── configure.in │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── libsdl2-dev.install │ │ │ ├── libsdl2-dev.manpages │ │ │ ├── libsdl2.install │ │ │ ├── rules │ │ │ ├── sdl2-config.1 │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── docs │ │ │ ├── README-android.md │ │ │ ├── README-cmake.md │ │ │ ├── README-directfb.md │ │ │ ├── README-dynapi.md │ │ │ ├── README-emscripten.md │ │ │ ├── README-gesture.md │ │ │ ├── README-hg.md │ │ │ ├── README-ios.md │ │ │ ├── README-linux.md │ │ │ ├── README-macosx.md │ │ │ ├── README-nacl.md │ │ │ ├── README-pandora.md │ │ │ ├── README-platforms.md │ │ │ ├── README-porting.md │ │ │ ├── README-psp.md │ │ │ ├── README-raspberrypi.md │ │ │ ├── README-touch.md │ │ │ ├── README-wince.md │ │ │ ├── README-windows.md │ │ │ ├── README-winrt.md │ │ │ ├── README.md │ │ │ └── doxyfile │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.cmake │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_psp.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── sdl2-config.cmake.in │ │ ├── sdl2-config.in │ │ ├── sdl2.m4 │ │ ├── sdl2.pc.in │ │ ├── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_internal.h │ │ │ ├── SDL_log.c │ │ │ ├── atomic │ │ │ │ ├── SDL_atomic.c │ │ │ │ └── SDL_spinlock.c │ │ │ ├── audio │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audiomem.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ ├── alsa │ │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ │ └── SDL_alsa_audio.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ │ └── SDL_androidaudio.h │ │ │ │ ├── arts │ │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ │ └── SDL_artsaudio.h │ │ │ │ ├── bsd │ │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ │ └── SDL_bsdaudio.h │ │ │ │ ├── coreaudio │ │ │ │ │ ├── SDL_coreaudio.c │ │ │ │ │ └── SDL_coreaudio.h │ │ │ │ ├── directsound │ │ │ │ │ ├── SDL_directsound.c │ │ │ │ │ └── SDL_directsound.h │ │ │ │ ├── disk │ │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ │ └── SDL_diskaudio.h │ │ │ │ ├── dsp │ │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ │ └── SDL_dspaudio.h │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ │ └── SDL_dummyaudio.h │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ │ ├── esd │ │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ │ └── SDL_esdaudio.h │ │ │ │ ├── fusionsound │ │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ │ └── SDL_fsaudio.h │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ │ └── SDL_haikuaudio.h │ │ │ │ ├── nacl │ │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ │ └── SDL_naclaudio.h │ │ │ │ ├── nas │ │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ │ └── SDL_nasaudio.h │ │ │ │ ├── paudio │ │ │ │ │ ├── SDL_paudio.c │ │ │ │ │ └── SDL_paudio.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ │ └── SDL_pspaudio.h │ │ │ │ ├── pulseaudio │ │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ │ └── SDL_pulseaudio.h │ │ │ │ ├── qsa │ │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ │ └── SDL_qsa_audio.h │ │ │ │ ├── sdlgenaudiocvt.pl │ │ │ │ ├── sndio │ │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ │ └── SDL_sndioaudio.h │ │ │ │ ├── sun │ │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ │ └── SDL_sunaudio.h │ │ │ │ ├── winmm │ │ │ │ │ ├── SDL_winmm.c │ │ │ │ │ └── SDL_winmm.h │ │ │ │ └── xaudio2 │ │ │ │ │ ├── SDL_xaudio2.c │ │ │ │ │ ├── SDL_xaudio2.h │ │ │ │ │ ├── SDL_xaudio2_winrthelpers.cpp │ │ │ │ │ └── SDL_xaudio2_winrthelpers.h │ │ │ ├── core │ │ │ │ ├── android │ │ │ │ │ ├── SDL_android.c │ │ │ │ │ └── SDL_android.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_dbus.c │ │ │ │ │ ├── SDL_dbus.h │ │ │ │ │ ├── SDL_evdev.c │ │ │ │ │ ├── SDL_evdev.h │ │ │ │ │ ├── SDL_ibus.c │ │ │ │ │ ├── SDL_ibus.h │ │ │ │ │ ├── SDL_udev.c │ │ │ │ │ └── SDL_udev.h │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_directx.h │ │ │ │ │ ├── SDL_windows.c │ │ │ │ │ ├── SDL_windows.h │ │ │ │ │ ├── SDL_xinput.c │ │ │ │ │ └── SDL_xinput.h │ │ │ │ └── winrt │ │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ │ └── SDL_winrtapp_xaml.h │ │ │ ├── cpuinfo │ │ │ │ └── SDL_cpuinfo.c │ │ │ ├── dynapi │ │ │ │ ├── SDL_dynapi.c │ │ │ │ ├── SDL_dynapi.h │ │ │ │ ├── SDL_dynapi_overrides.h │ │ │ │ ├── SDL_dynapi_procs.h │ │ │ │ └── gendynapi.pl │ │ │ ├── events │ │ │ │ ├── SDL_clipboardevents.c │ │ │ │ ├── SDL_clipboardevents_c.h │ │ │ │ ├── SDL_dropevents.c │ │ │ │ ├── SDL_dropevents_c.h │ │ │ │ ├── SDL_events.c │ │ │ │ ├── SDL_events_c.h │ │ │ │ ├── SDL_gesture.c │ │ │ │ ├── SDL_gesture_c.h │ │ │ │ ├── SDL_keyboard.c │ │ │ │ ├── SDL_keyboard_c.h │ │ │ │ ├── SDL_mouse.c │ │ │ │ ├── SDL_mouse_c.h │ │ │ │ ├── SDL_quit.c │ │ │ │ ├── SDL_sysevents.h │ │ │ │ ├── SDL_touch.c │ │ │ │ ├── SDL_touch_c.h │ │ │ │ ├── SDL_windowevents.c │ │ │ │ ├── SDL_windowevents_c.h │ │ │ │ ├── blank_cursor.h │ │ │ │ ├── default_cursor.h │ │ │ │ ├── scancodes_darwin.h │ │ │ │ ├── scancodes_linux.h │ │ │ │ ├── scancodes_windows.h │ │ │ │ └── scancodes_xfree86.h │ │ │ ├── file │ │ │ │ ├── SDL_rwops.c │ │ │ │ └── cocoa │ │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ │ ├── filesystem │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── cocoa │ │ │ │ │ └── SDL_sysfilesystem.m │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_sysfilesystem.cpp │ │ │ ├── haptic │ │ │ │ ├── SDL_haptic.c │ │ │ │ ├── SDL_haptic_c.h │ │ │ │ ├── SDL_syshaptic.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ │ └── SDL_syshaptic_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputhaptic.c │ │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ │ └── SDL_xinputhaptic_c.h │ │ │ ├── joystick │ │ │ │ ├── SDL_gamecontroller.c │ │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ │ ├── SDL_joystick.c │ │ │ │ ├── SDL_joystick_c.h │ │ │ │ ├── SDL_sysjoystick.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── bsd │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_haikujoystick.cc │ │ │ │ ├── iphoneos │ │ │ │ │ ├── SDL_sysjoystick.m │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── sort_controllers.py │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ ├── libm │ │ │ │ ├── e_atan2.c │ │ │ │ ├── e_log.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── k_tan.c │ │ │ │ ├── math_libm.h │ │ │ │ ├── math_private.h │ │ │ │ ├── s_atan.c │ │ │ │ ├── s_copysign.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_sin.c │ │ │ │ └── s_tan.c │ │ │ ├── loadso │ │ │ │ ├── dlopen │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── main │ │ │ │ ├── android │ │ │ │ │ └── SDL_android_main.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_dummy_main.c │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_BApp.h │ │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ │ └── SDL_BeApp.h │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_nacl_main.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_psp_main.c │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_windows_main.c │ │ │ │ │ └── version.rc │ │ │ │ └── winrt │ │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ │ ├── power │ │ │ │ ├── SDL_power.c │ │ │ │ ├── android │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── uikit │ │ │ │ │ ├── SDL_syspower.h │ │ │ │ │ └── SDL_syspower.m │ │ │ │ ├── windows │ │ │ │ │ └── SDL_syspower.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_syspower.cpp │ │ │ ├── render │ │ │ │ ├── SDL_d3dmath.c │ │ │ │ ├── SDL_d3dmath.h │ │ │ │ ├── SDL_render.c │ │ │ │ ├── SDL_sysrender.h │ │ │ │ ├── SDL_yuv_mmx.c │ │ │ │ ├── SDL_yuv_sw.c │ │ │ │ ├── SDL_yuv_sw_c.h │ │ │ │ ├── direct3d │ │ │ │ │ └── SDL_render_d3d.c │ │ │ │ ├── direct3d11 │ │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ │ └── SDL_render_winrt.h │ │ │ │ ├── mmx.h │ │ │ │ ├── opengl │ │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ │ ├── SDL_render_gl.c │ │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ │ └── SDL_shaders_gl.h │ │ │ │ ├── opengles │ │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ │ └── SDL_render_gles.c │ │ │ │ ├── opengles2 │ │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ │ └── SDL_shaders_gles2.h │ │ │ │ ├── psp │ │ │ │ │ └── SDL_render_psp.c │ │ │ │ └── software │ │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ │ ├── SDL_blendline.c │ │ │ │ │ ├── SDL_blendline.h │ │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ │ ├── SDL_draw.h │ │ │ │ │ ├── SDL_drawline.c │ │ │ │ │ ├── SDL_drawline.h │ │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ │ ├── SDL_render_sw.c │ │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ │ ├── SDL_rotate.c │ │ │ │ │ └── SDL_rotate.h │ │ │ ├── stdlib │ │ │ │ ├── SDL_getenv.c │ │ │ │ ├── SDL_iconv.c │ │ │ │ ├── SDL_malloc.c │ │ │ │ ├── SDL_qsort.c │ │ │ │ ├── SDL_stdlib.c │ │ │ │ └── SDL_string.c │ │ │ ├── test │ │ │ │ ├── SDL_test_assert.c │ │ │ │ ├── SDL_test_common.c │ │ │ │ ├── SDL_test_compare.c │ │ │ │ ├── SDL_test_crc32.c │ │ │ │ ├── SDL_test_font.c │ │ │ │ ├── SDL_test_fuzzer.c │ │ │ │ ├── SDL_test_harness.c │ │ │ │ ├── SDL_test_imageBlit.c │ │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ │ ├── SDL_test_imageFace.c │ │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ │ ├── SDL_test_log.c │ │ │ │ ├── SDL_test_md5.c │ │ │ │ └── SDL_test_random.c │ │ │ ├── thread │ │ │ │ ├── SDL_systhread.h │ │ │ │ ├── SDL_thread.c │ │ │ │ ├── SDL_thread_c.h │ │ │ │ ├── generic │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── pthread │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── stdcpp │ │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ ├── timer │ │ │ │ ├── SDL_timer.c │ │ │ │ ├── SDL_timer_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_systimer.c │ │ │ └── video │ │ │ │ ├── SDL_RLEaccel.c │ │ │ │ ├── SDL_RLEaccel_c.h │ │ │ │ ├── SDL_blit.c │ │ │ │ ├── SDL_blit.h │ │ │ │ ├── SDL_blit_0.c │ │ │ │ ├── SDL_blit_1.c │ │ │ │ ├── SDL_blit_A.c │ │ │ │ ├── SDL_blit_N.c │ │ │ │ ├── SDL_blit_auto.c │ │ │ │ ├── SDL_blit_auto.h │ │ │ │ ├── SDL_blit_copy.c │ │ │ │ ├── SDL_blit_copy.h │ │ │ │ ├── SDL_blit_slow.c │ │ │ │ ├── SDL_blit_slow.h │ │ │ │ ├── SDL_bmp.c │ │ │ │ ├── SDL_clipboard.c │ │ │ │ ├── SDL_egl.c │ │ │ │ ├── SDL_egl_c.h │ │ │ │ ├── SDL_fillrect.c │ │ │ │ ├── SDL_pixels.c │ │ │ │ ├── SDL_pixels_c.h │ │ │ │ ├── SDL_rect.c │ │ │ │ ├── SDL_rect_c.h │ │ │ │ ├── SDL_shape.c │ │ │ │ ├── SDL_shape_internals.h │ │ │ │ ├── SDL_stretch.c │ │ │ │ ├── SDL_surface.c │ │ │ │ ├── SDL_sysvideo.h │ │ │ │ ├── SDL_video.c │ │ │ │ ├── android │ │ │ │ ├── SDL_androidclipboard.c │ │ │ │ ├── SDL_androidclipboard.h │ │ │ │ ├── SDL_androidevents.c │ │ │ │ ├── SDL_androidevents.h │ │ │ │ ├── SDL_androidgl.c │ │ │ │ ├── SDL_androidkeyboard.c │ │ │ │ ├── SDL_androidkeyboard.h │ │ │ │ ├── SDL_androidmessagebox.c │ │ │ │ ├── SDL_androidmessagebox.h │ │ │ │ ├── SDL_androidmouse.c │ │ │ │ ├── SDL_androidmouse.h │ │ │ │ ├── SDL_androidtouch.c │ │ │ │ ├── SDL_androidtouch.h │ │ │ │ ├── SDL_androidvideo.c │ │ │ │ ├── SDL_androidvideo.h │ │ │ │ ├── SDL_androidwindow.c │ │ │ │ └── SDL_androidwindow.h │ │ │ │ ├── cocoa │ │ │ │ ├── SDL_cocoaclipboard.h │ │ │ │ ├── SDL_cocoaclipboard.m │ │ │ │ ├── SDL_cocoaevents.h │ │ │ │ ├── SDL_cocoaevents.m │ │ │ │ ├── SDL_cocoakeyboard.h │ │ │ │ ├── SDL_cocoakeyboard.m │ │ │ │ ├── SDL_cocoamessagebox.h │ │ │ │ ├── SDL_cocoamessagebox.m │ │ │ │ ├── SDL_cocoamodes.h │ │ │ │ ├── SDL_cocoamodes.m │ │ │ │ ├── SDL_cocoamouse.h │ │ │ │ ├── SDL_cocoamouse.m │ │ │ │ ├── SDL_cocoamousetap.h │ │ │ │ ├── SDL_cocoamousetap.m │ │ │ │ ├── SDL_cocoaopengl.h │ │ │ │ ├── SDL_cocoaopengl.m │ │ │ │ ├── SDL_cocoashape.h │ │ │ │ ├── SDL_cocoashape.m │ │ │ │ ├── SDL_cocoavideo.h │ │ │ │ ├── SDL_cocoavideo.m │ │ │ │ ├── SDL_cocoawindow.h │ │ │ │ └── SDL_cocoawindow.m │ │ │ │ ├── directfb │ │ │ │ ├── SDL_DirectFB_WM.c │ │ │ │ ├── SDL_DirectFB_WM.h │ │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ │ ├── SDL_DirectFB_events.c │ │ │ │ ├── SDL_DirectFB_events.h │ │ │ │ ├── SDL_DirectFB_modes.c │ │ │ │ ├── SDL_DirectFB_modes.h │ │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ │ ├── SDL_DirectFB_render.c │ │ │ │ ├── SDL_DirectFB_render.h │ │ │ │ ├── SDL_DirectFB_shape.c │ │ │ │ ├── SDL_DirectFB_shape.h │ │ │ │ ├── SDL_DirectFB_video.c │ │ │ │ ├── SDL_DirectFB_video.h │ │ │ │ ├── SDL_DirectFB_window.c │ │ │ │ └── SDL_DirectFB_window.h │ │ │ │ ├── dummy │ │ │ │ ├── SDL_nullevents.c │ │ │ │ ├── SDL_nullevents_c.h │ │ │ │ ├── SDL_nullframebuffer.c │ │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ │ ├── SDL_nullvideo.c │ │ │ │ └── SDL_nullvideo.h │ │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenevents.c │ │ │ │ ├── SDL_emscriptenevents.h │ │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ │ ├── SDL_emscriptenmouse.c │ │ │ │ ├── SDL_emscriptenmouse.h │ │ │ │ ├── SDL_emscriptenopengles.c │ │ │ │ ├── SDL_emscriptenopengles.h │ │ │ │ ├── SDL_emscriptenvideo.c │ │ │ │ └── SDL_emscriptenvideo.h │ │ │ │ ├── haiku │ │ │ │ ├── SDL_BWin.h │ │ │ │ ├── SDL_bclipboard.cc │ │ │ │ ├── SDL_bclipboard.h │ │ │ │ ├── SDL_bevents.cc │ │ │ │ ├── SDL_bevents.h │ │ │ │ ├── SDL_bframebuffer.cc │ │ │ │ ├── SDL_bframebuffer.h │ │ │ │ ├── SDL_bkeyboard.cc │ │ │ │ ├── SDL_bkeyboard.h │ │ │ │ ├── SDL_bmodes.cc │ │ │ │ ├── SDL_bmodes.h │ │ │ │ ├── SDL_bopengl.cc │ │ │ │ ├── SDL_bopengl.h │ │ │ │ ├── SDL_bvideo.cc │ │ │ │ ├── SDL_bvideo.h │ │ │ │ ├── SDL_bwindow.cc │ │ │ │ └── SDL_bwindow.h │ │ │ │ ├── mir │ │ │ │ ├── SDL_mirdyn.c │ │ │ │ ├── SDL_mirdyn.h │ │ │ │ ├── SDL_mirevents.c │ │ │ │ ├── SDL_mirevents.h │ │ │ │ ├── SDL_mirframebuffer.c │ │ │ │ ├── SDL_mirframebuffer.h │ │ │ │ ├── SDL_mirmouse.c │ │ │ │ ├── SDL_mirmouse.h │ │ │ │ ├── SDL_miropengl.c │ │ │ │ ├── SDL_miropengl.h │ │ │ │ ├── SDL_mirsym.h │ │ │ │ ├── SDL_mirvideo.c │ │ │ │ ├── SDL_mirvideo.h │ │ │ │ ├── SDL_mirwindow.c │ │ │ │ └── SDL_mirwindow.h │ │ │ │ ├── nacl │ │ │ │ ├── SDL_naclevents.c │ │ │ │ ├── SDL_naclevents_c.h │ │ │ │ ├── SDL_naclglue.c │ │ │ │ ├── SDL_naclopengles.c │ │ │ │ ├── SDL_naclopengles.h │ │ │ │ ├── SDL_naclvideo.c │ │ │ │ ├── SDL_naclvideo.h │ │ │ │ ├── SDL_naclwindow.c │ │ │ │ └── SDL_naclwindow.h │ │ │ │ ├── pandora │ │ │ │ ├── SDL_pandora.c │ │ │ │ ├── SDL_pandora.h │ │ │ │ ├── SDL_pandora_events.c │ │ │ │ └── SDL_pandora_events.h │ │ │ │ ├── psp │ │ │ │ ├── SDL_pspevents.c │ │ │ │ ├── SDL_pspevents_c.h │ │ │ │ ├── SDL_pspgl.c │ │ │ │ ├── SDL_pspgl_c.h │ │ │ │ ├── SDL_pspmouse.c │ │ │ │ ├── SDL_pspmouse_c.h │ │ │ │ ├── SDL_pspvideo.c │ │ │ │ └── SDL_pspvideo.h │ │ │ │ ├── raspberry │ │ │ │ ├── SDL_rpievents.c │ │ │ │ ├── SDL_rpievents_c.h │ │ │ │ ├── SDL_rpimouse.c │ │ │ │ ├── SDL_rpimouse.h │ │ │ │ ├── SDL_rpiopengles.c │ │ │ │ ├── SDL_rpiopengles.h │ │ │ │ ├── SDL_rpivideo.c │ │ │ │ └── SDL_rpivideo.h │ │ │ │ ├── sdlgenblit.pl │ │ │ │ ├── uikit │ │ │ │ ├── SDL_uikitappdelegate.h │ │ │ │ ├── SDL_uikitappdelegate.m │ │ │ │ ├── SDL_uikitevents.h │ │ │ │ ├── SDL_uikitevents.m │ │ │ │ ├── SDL_uikitmessagebox.h │ │ │ │ ├── SDL_uikitmessagebox.m │ │ │ │ ├── SDL_uikitmodes.h │ │ │ │ ├── SDL_uikitmodes.m │ │ │ │ ├── SDL_uikitopengles.h │ │ │ │ ├── SDL_uikitopengles.m │ │ │ │ ├── SDL_uikitopenglview.h │ │ │ │ ├── SDL_uikitopenglview.m │ │ │ │ ├── SDL_uikitvideo.h │ │ │ │ ├── SDL_uikitvideo.m │ │ │ │ ├── SDL_uikitview.h │ │ │ │ ├── SDL_uikitview.m │ │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ │ ├── SDL_uikitwindow.h │ │ │ │ ├── SDL_uikitwindow.m │ │ │ │ └── keyinfotable.h │ │ │ │ ├── vivante │ │ │ │ ├── SDL_vivanteopengles.c │ │ │ │ ├── SDL_vivanteopengles.h │ │ │ │ ├── SDL_vivanteplatform.c │ │ │ │ ├── SDL_vivanteplatform.h │ │ │ │ ├── SDL_vivantevideo.c │ │ │ │ └── SDL_vivantevideo.h │ │ │ │ ├── wayland │ │ │ │ ├── SDL_waylanddyn.c │ │ │ │ ├── SDL_waylanddyn.h │ │ │ │ ├── SDL_waylandevents.c │ │ │ │ ├── SDL_waylandevents_c.h │ │ │ │ ├── SDL_waylandmouse.c │ │ │ │ ├── SDL_waylandmouse.h │ │ │ │ ├── SDL_waylandopengles.c │ │ │ │ ├── SDL_waylandopengles.h │ │ │ │ ├── SDL_waylandsym.h │ │ │ │ ├── SDL_waylandtouch.c │ │ │ │ ├── SDL_waylandtouch.h │ │ │ │ ├── SDL_waylandvideo.c │ │ │ │ ├── SDL_waylandvideo.h │ │ │ │ ├── SDL_waylandwindow.c │ │ │ │ └── SDL_waylandwindow.h │ │ │ │ ├── windows │ │ │ │ ├── SDL_msctf.h │ │ │ │ ├── SDL_vkeys.h │ │ │ │ ├── SDL_windowsclipboard.c │ │ │ │ ├── SDL_windowsclipboard.h │ │ │ │ ├── SDL_windowsevents.c │ │ │ │ ├── SDL_windowsevents.h │ │ │ │ ├── SDL_windowsframebuffer.c │ │ │ │ ├── SDL_windowsframebuffer.h │ │ │ │ ├── SDL_windowskeyboard.c │ │ │ │ ├── SDL_windowskeyboard.h │ │ │ │ ├── SDL_windowsmessagebox.c │ │ │ │ ├── SDL_windowsmessagebox.h │ │ │ │ ├── SDL_windowsmodes.c │ │ │ │ ├── SDL_windowsmodes.h │ │ │ │ ├── SDL_windowsmouse.c │ │ │ │ ├── SDL_windowsmouse.h │ │ │ │ ├── SDL_windowsopengl.c │ │ │ │ ├── SDL_windowsopengl.h │ │ │ │ ├── SDL_windowsopengles.c │ │ │ │ ├── SDL_windowsopengles.h │ │ │ │ ├── SDL_windowsshape.c │ │ │ │ ├── SDL_windowsshape.h │ │ │ │ ├── SDL_windowsvideo.c │ │ │ │ ├── SDL_windowsvideo.h │ │ │ │ ├── SDL_windowswindow.c │ │ │ │ ├── SDL_windowswindow.h │ │ │ │ └── wmmsg.h │ │ │ │ ├── winrt │ │ │ │ ├── SDL_winrtevents.cpp │ │ │ │ ├── SDL_winrtevents_c.h │ │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ │ ├── SDL_winrtmessagebox.h │ │ │ │ ├── SDL_winrtmouse.cpp │ │ │ │ ├── SDL_winrtmouse_c.h │ │ │ │ ├── SDL_winrtopengles.cpp │ │ │ │ ├── SDL_winrtopengles.h │ │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ │ ├── SDL_winrtvideo.cpp │ │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ │ └── x11 │ │ │ │ ├── SDL_x11clipboard.c │ │ │ │ ├── SDL_x11clipboard.h │ │ │ │ ├── SDL_x11dyn.c │ │ │ │ ├── SDL_x11dyn.h │ │ │ │ ├── SDL_x11events.c │ │ │ │ ├── SDL_x11events.h │ │ │ │ ├── SDL_x11framebuffer.c │ │ │ │ ├── SDL_x11framebuffer.h │ │ │ │ ├── SDL_x11keyboard.c │ │ │ │ ├── SDL_x11keyboard.h │ │ │ │ ├── SDL_x11messagebox.c │ │ │ │ ├── SDL_x11messagebox.h │ │ │ │ ├── SDL_x11modes.c │ │ │ │ ├── SDL_x11modes.h │ │ │ │ ├── SDL_x11mouse.c │ │ │ │ ├── SDL_x11mouse.h │ │ │ │ ├── SDL_x11opengl.c │ │ │ │ ├── SDL_x11opengl.h │ │ │ │ ├── SDL_x11opengles.c │ │ │ │ ├── SDL_x11opengles.h │ │ │ │ ├── SDL_x11shape.c │ │ │ │ ├── SDL_x11shape.h │ │ │ │ ├── SDL_x11sym.h │ │ │ │ ├── SDL_x11touch.c │ │ │ │ ├── SDL_x11touch.h │ │ │ │ ├── SDL_x11video.c │ │ │ │ ├── SDL_x11video.h │ │ │ │ ├── SDL_x11window.c │ │ │ │ ├── SDL_x11window.h │ │ │ │ ├── SDL_x11xinput2.c │ │ │ │ ├── SDL_x11xinput2.h │ │ │ │ ├── edid-parse.c │ │ │ │ ├── edid.h │ │ │ │ ├── imKStoUCS.c │ │ │ │ └── imKStoUCS.h │ │ └── test │ │ │ ├── COPYING │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── acinclude.m4 │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── axis.bmp │ │ │ ├── button.bmp │ │ │ ├── checkkeys.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── controllermap.bmp │ │ │ ├── controllermap.c │ │ │ ├── emscripten │ │ │ └── joystick-pre.js │ │ │ ├── gcc-fat.sh │ │ │ ├── icon.bmp │ │ │ ├── loopwave.c │ │ │ ├── loopwavequeue.c │ │ │ ├── moose.dat │ │ │ ├── nacl │ │ │ ├── Makefile │ │ │ ├── background.js │ │ │ ├── common.js │ │ │ ├── index.html │ │ │ └── manifest.json │ │ │ ├── picture.xbm │ │ │ ├── relative_mode.markdown │ │ │ ├── sample.bmp │ │ │ ├── sample.wav │ │ │ ├── shapes │ │ │ ├── p01_shape24.bmp │ │ │ ├── p01_shape32alpha.bmp │ │ │ ├── p01_shape8.bmp │ │ │ ├── p02_shape24.bmp │ │ │ ├── p02_shape32alpha.bmp │ │ │ ├── p02_shape8.bmp │ │ │ ├── p03_shape24.bmp │ │ │ ├── p03_shape8.bmp │ │ │ ├── p04_shape1.bmp │ │ │ ├── p04_shape24.bmp │ │ │ ├── p04_shape32alpha.bmp │ │ │ ├── p04_shape8.bmp │ │ │ ├── p05_shape8.bmp │ │ │ ├── p06_shape1alpha.bmp │ │ │ ├── p06_shape24.bmp │ │ │ ├── p06_shape32alpha.bmp │ │ │ ├── p06_shape8.bmp │ │ │ ├── p07_shape24.bmp │ │ │ ├── p07_shape32alpha.bmp │ │ │ ├── p07_shape8.bmp │ │ │ ├── p08_shape24.bmp │ │ │ ├── p08_shape32alpha.bmp │ │ │ ├── p08_shape8.bmp │ │ │ ├── p09_shape24.bmp │ │ │ ├── p09_shape32alpha.bmp │ │ │ ├── p09_shape8.bmp │ │ │ ├── p10_shape1.bmp │ │ │ ├── p10_shape24.bmp │ │ │ ├── p10_shape32alpha.bmp │ │ │ ├── p10_shape8.bmp │ │ │ ├── p11_shape24.bmp │ │ │ ├── p11_shape32alpha.bmp │ │ │ ├── p11_shape8.bmp │ │ │ ├── p12_shape24.bmp │ │ │ ├── p12_shape8.bmp │ │ │ ├── p13_shape24.bmp │ │ │ ├── p13_shape32alpha.bmp │ │ │ ├── p13_shape8.bmp │ │ │ ├── p14_shape24.bmp │ │ │ ├── p14_shape8.bmp │ │ │ ├── p15_shape24.bmp │ │ │ ├── p15_shape32alpha.bmp │ │ │ ├── p15_shape8.bmp │ │ │ ├── p16_shape1.bmp │ │ │ ├── p16_shape24.bmp │ │ │ ├── p16_shape8.bmp │ │ │ ├── trollface_24.bmp │ │ │ └── trollface_32alpha.bmp │ │ │ ├── testatomic.c │ │ │ ├── testaudiohotplug.c │ │ │ ├── testaudioinfo.c │ │ │ ├── testautomation.c │ │ │ ├── testautomation_audio.c │ │ │ ├── testautomation_clipboard.c │ │ │ ├── testautomation_events.c │ │ │ ├── testautomation_hints.c │ │ │ ├── testautomation_keyboard.c │ │ │ ├── testautomation_main.c │ │ │ ├── testautomation_mouse.c │ │ │ ├── testautomation_pixels.c │ │ │ ├── testautomation_platform.c │ │ │ ├── testautomation_rect.c │ │ │ ├── testautomation_render.c │ │ │ ├── testautomation_rwops.c │ │ │ ├── testautomation_sdltest.c │ │ │ ├── testautomation_stdlib.c │ │ │ ├── testautomation_suites.h │ │ │ ├── testautomation_surface.c │ │ │ ├── testautomation_syswm.c │ │ │ ├── testautomation_timer.c │ │ │ ├── testautomation_video.c │ │ │ ├── testdisplayinfo.c │ │ │ ├── testdraw2.c │ │ │ ├── testdrawchessboard.c │ │ │ ├── testdropfile.c │ │ │ ├── testerror.c │ │ │ ├── testfile.c │ │ │ ├── testfilesystem.c │ │ │ ├── testgamecontroller.c │ │ │ ├── testgesture.c │ │ │ ├── testgl2.c │ │ │ ├── testgles.c │ │ │ ├── testgles2.c │ │ │ ├── testhaptic.c │ │ │ ├── testhittesting.c │ │ │ ├── testhotplug.c │ │ │ ├── testiconv.c │ │ │ ├── testime.c │ │ │ ├── testintersections.c │ │ │ ├── testjoystick.c │ │ │ ├── testkeys.c │ │ │ ├── testloadso.c │ │ │ ├── testlock.c │ │ │ ├── testmessage.c │ │ │ ├── testmultiaudio.c │ │ │ ├── testnative.c │ │ │ ├── testnative.h │ │ │ ├── testnativecocoa.m │ │ │ ├── testnativew32.c │ │ │ ├── testnativex11.c │ │ │ ├── testoverlay2.c │ │ │ ├── testplatform.c │ │ │ ├── testpower.c │ │ │ ├── testrelative.c │ │ │ ├── testrendercopyex.c │ │ │ ├── testrendertarget.c │ │ │ ├── testresample.c │ │ │ ├── testrumble.c │ │ │ ├── testscale.c │ │ │ ├── testsem.c │ │ │ ├── testshader.c │ │ │ ├── testshape.c │ │ │ ├── testsprite2.c │ │ │ ├── testspriteminimal.c │ │ │ ├── teststreaming.c │ │ │ ├── testthread.c │ │ │ ├── testtimer.c │ │ │ ├── testver.c │ │ │ ├── testviewport.c │ │ │ ├── testwm2.c │ │ │ ├── torturethread.c │ │ │ └── utf8.txt │ ├── SDL2_mixer-2.0.1 │ │ ├── Android.mk │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── SDL2_mixer.pc.in │ │ ├── SDL2_mixer.spec │ │ ├── SDL2_mixer.spec.in │ │ ├── SDL_mixer.h │ │ ├── VisualC │ │ │ ├── SDL_mixer.sln │ │ │ ├── SDL_mixer.vcxproj │ │ │ ├── SDL_mixer.vcxproj.filters │ │ │ ├── SDL_mixer_VS2008.sln │ │ │ ├── SDL_mixer_VS2008.vcproj │ │ │ ├── Version.rc │ │ │ ├── clean.sh │ │ │ ├── external │ │ │ │ ├── include │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ ├── libmodplug │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── ogg │ │ │ │ │ │ ├── config_types.h │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ ├── smpeg.h │ │ │ │ │ └── vorbis │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ └── lib │ │ │ │ │ ├── x64 │ │ │ │ │ ├── LICENSE.FLAC.txt │ │ │ │ │ ├── LICENSE.mikmod.txt │ │ │ │ │ ├── LICENSE.modplug.txt │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── LICENSE.smpeg.txt │ │ │ │ │ ├── libFLAC-8.dll │ │ │ │ │ ├── libmikmod-2.dll │ │ │ │ │ ├── libmodplug-1.dll │ │ │ │ │ ├── libogg-0.dll │ │ │ │ │ ├── libvorbis-0.dll │ │ │ │ │ ├── libvorbisfile-3.dll │ │ │ │ │ └── smpeg2.dll │ │ │ │ │ └── x86 │ │ │ │ │ ├── LICENSE.FLAC.txt │ │ │ │ │ ├── LICENSE.modplug.txt │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── LICENSE.smpeg.txt │ │ │ │ │ ├── libFLAC-8.dll │ │ │ │ │ ├── libmodplug-1.dll │ │ │ │ │ ├── libogg-0.dll │ │ │ │ │ ├── libvorbis-0.dll │ │ │ │ │ ├── libvorbisfile-3.dll │ │ │ │ │ └── smpeg2.dll │ │ │ ├── native_midi │ │ │ │ ├── native_midi.vcxproj │ │ │ │ └── native_midi_VS2008.vcproj │ │ │ ├── playmus │ │ │ │ ├── playmus.vcxproj │ │ │ │ └── playmus_VS2008.vcproj │ │ │ ├── playwave │ │ │ │ ├── playwave.vcxproj │ │ │ │ └── playwave_VS2008.vcproj │ │ │ ├── resource.h │ │ │ └── timidity │ │ │ │ ├── timidity.vcxproj │ │ │ │ └── timidity_VS2008.vcproj │ │ ├── Xcode-iOS │ │ │ └── SDL_mixer.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Xcode │ │ │ ├── Frameworks │ │ │ │ ├── FLAC.framework │ │ │ │ │ ├── FLAC │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ ├── Ogg.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ ├── Ogg │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ ├── Vorbis.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ └── Vorbis │ │ │ │ ├── modplug.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ └── modplug │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ └── modplug │ │ │ │ │ └── modplug │ │ │ │ └── smpeg2.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ └── smpeg.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.smpeg.txt │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ │ │ └── smpeg.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.smpeg.txt │ │ │ │ │ │ └── smpeg2 │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ │ └── smpeg.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.smpeg.txt │ │ │ │ │ │ └── smpeg2 │ │ │ │ │ └── smpeg2 │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL_mixer.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── package │ │ │ ├── pkg-support │ │ │ │ ├── SDL_mixer.info │ │ │ │ ├── mkpackage.sh │ │ │ │ └── resources │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ └── Welcome.txt │ │ │ ├── playmus │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info-playmus__Upgraded_.plist │ │ │ │ ├── SDLMain.h │ │ │ │ ├── SDLMain.m │ │ │ │ └── playmus.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── playwave │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info-playwave__Upgraded_.plist │ │ │ │ ├── SDLMain.h │ │ │ │ ├── SDLMain.m │ │ │ │ └── playwave.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── acinclude │ │ │ ├── libtool.m4 │ │ │ ├── ltdl.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── pkg.m4 │ │ │ ├── sdl2.m4 │ │ │ └── smpeg2.m4 │ │ ├── autogen.sh │ │ ├── build-scripts │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── mkinstalldirs │ │ ├── configure │ │ ├── configure.in │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── examples │ │ │ │ └── Makefile │ │ │ ├── libsdl2-mixer-dev.examples │ │ │ ├── libsdl2-mixer-dev.install │ │ │ ├── libsdl2-mixer.install │ │ │ ├── rules │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── dynamic_flac.c │ │ ├── dynamic_flac.h │ │ ├── dynamic_fluidsynth.c │ │ ├── dynamic_fluidsynth.h │ │ ├── dynamic_mod.c │ │ ├── dynamic_mod.h │ │ ├── dynamic_modplug.c │ │ ├── dynamic_modplug.h │ │ ├── dynamic_mp3.c │ │ ├── dynamic_mp3.h │ │ ├── dynamic_ogg.c │ │ ├── dynamic_ogg.h │ │ ├── effect_position.c │ │ ├── effect_stereoreverse.c │ │ ├── effects_internal.c │ │ ├── effects_internal.h │ │ ├── external │ │ │ ├── flac-1.2.1.patch │ │ │ ├── flac-1.2.1 │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING.FDL │ │ │ │ ├── COPYING.GPL │ │ │ │ ├── COPYING.LGPL │ │ │ │ ├── COPYING.Xiph │ │ │ │ ├── FLAC.dsw │ │ │ │ ├── FLAC.sln │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.lite │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── all.dsp │ │ │ │ ├── all_dynamic.dsp │ │ │ │ ├── all_static.dsp │ │ │ │ ├── autogen.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.rpath │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── FLAC.tag │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── doxygen.footer.html │ │ │ │ │ ├── doxygen.header.html │ │ │ │ │ └── html │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── +_2all_8h-source.html │ │ │ │ │ │ ├── +_2export_8h-source.html │ │ │ │ │ │ ├── +_2export_8h.html │ │ │ │ │ │ ├── +_2metadata_8h-source.html │ │ │ │ │ │ ├── +_2metadata_8h.html │ │ │ │ │ │ ├── all_8h-source.html │ │ │ │ │ │ ├── annotated.html │ │ │ │ │ │ ├── assert_8h-source.html │ │ │ │ │ │ ├── callback_8h-source.html │ │ │ │ │ │ ├── callback_8h.html │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1File-members.html │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1File.html │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1File.png │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1Stream-members.html │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1Stream.html │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1Stream.png │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1Stream_1_1State-members.html │ │ │ │ │ │ ├── classFLAC_1_1Decoder_1_1Stream_1_1State.html │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1File-members.html │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1File.html │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1File.png │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1Stream-members.html │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1Stream.html │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1Stream.png │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1Stream_1_1State-members.html │ │ │ │ │ │ ├── classFLAC_1_1Encoder_1_1Stream_1_1State.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Application-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Application.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Application.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Chain-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Chain.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Chain_1_1Status.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Iterator-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Iterator.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Padding-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Padding.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Padding.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Picture-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Picture.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Picture.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Prototype-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Prototype.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Prototype.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1SeekTable-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1SeekTable.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1SeekTable.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Unknown-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Unknown.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1Unknown.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment.png │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html │ │ │ │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── decoder_8h-source.html │ │ │ │ │ │ ├── decoder_8h.html │ │ │ │ │ │ ├── dir_000000.html │ │ │ │ │ │ ├── dir_000001.html │ │ │ │ │ │ ├── dir_000002.html │ │ │ │ │ │ ├── dirs.html │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── encoder_8h-source.html │ │ │ │ │ │ ├── encoder_8h.html │ │ │ │ │ │ ├── export_8h-source.html │ │ │ │ │ │ ├── export_8h.html │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ ├── format_8h-source.html │ │ │ │ │ │ ├── format_8h.html │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ ├── functions_func.html │ │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ │ ├── globals.html │ │ │ │ │ │ ├── globals_0x66.html │ │ │ │ │ │ ├── globals_0x67.html │ │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ │ ├── globals_func.html │ │ │ │ │ │ ├── globals_type.html │ │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ │ ├── group__flac.html │ │ │ │ │ │ ├── group__flac__callbacks.html │ │ │ │ │ │ ├── group__flac__decoder.html │ │ │ │ │ │ ├── group__flac__encoder.html │ │ │ │ │ │ ├── group__flac__export.html │ │ │ │ │ │ ├── group__flac__format.html │ │ │ │ │ │ ├── group__flac__metadata.html │ │ │ │ │ │ ├── group__flac__metadata__level0.html │ │ │ │ │ │ ├── group__flac__metadata__level1.html │ │ │ │ │ │ ├── group__flac__metadata__level2.html │ │ │ │ │ │ ├── group__flac__metadata__object.html │ │ │ │ │ │ ├── group__flac__stream__decoder.html │ │ │ │ │ │ ├── group__flac__stream__encoder.html │ │ │ │ │ │ ├── group__flacpp.html │ │ │ │ │ │ ├── group__flacpp__decoder.html │ │ │ │ │ │ ├── group__flacpp__encoder.html │ │ │ │ │ │ ├── group__flacpp__export.html │ │ │ │ │ │ ├── group__flacpp__metadata.html │ │ │ │ │ │ ├── group__flacpp__metadata__level0.html │ │ │ │ │ │ ├── group__flacpp__metadata__level1.html │ │ │ │ │ │ ├── group__flacpp__metadata__level2.html │ │ │ │ │ │ ├── group__flacpp__metadata__object.html │ │ │ │ │ │ ├── group__porting.html │ │ │ │ │ │ ├── group__porting__1__1__2__to__1__1__3.html │ │ │ │ │ │ ├── group__porting__1__1__3__to__1__1__4.html │ │ │ │ │ │ ├── group__porting__1__1__4__to__1__2__0.html │ │ │ │ │ │ ├── hierarchy.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── metadata_8h-source.html │ │ │ │ │ │ ├── metadata_8h.html │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── ordinals_8h-source.html │ │ │ │ │ │ ├── stream__decoder_8h-source.html │ │ │ │ │ │ ├── stream__decoder_8h.html │ │ │ │ │ │ ├── stream__encoder_8h-source.html │ │ │ │ │ │ ├── stream__encoder_8h.html │ │ │ │ │ │ ├── structFLAC____EntropyCodingMethod-members.html │ │ │ │ │ │ ├── structFLAC____EntropyCodingMethod.html │ │ │ │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRice-members.html │ │ │ │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRice.html │ │ │ │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRiceContents-members.html │ │ │ │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRiceContents.html │ │ │ │ │ │ ├── structFLAC____Frame-members.html │ │ │ │ │ │ ├── structFLAC____Frame.html │ │ │ │ │ │ ├── structFLAC____FrameFooter-members.html │ │ │ │ │ │ ├── structFLAC____FrameFooter.html │ │ │ │ │ │ ├── structFLAC____FrameHeader-members.html │ │ │ │ │ │ ├── structFLAC____FrameHeader.html │ │ │ │ │ │ ├── structFLAC____IOCallbacks-members.html │ │ │ │ │ │ ├── structFLAC____IOCallbacks.html │ │ │ │ │ │ ├── structFLAC____StreamDecoder-members.html │ │ │ │ │ │ ├── structFLAC____StreamDecoder.html │ │ │ │ │ │ ├── structFLAC____StreamEncoder-members.html │ │ │ │ │ │ ├── structFLAC____StreamEncoder.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Application-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Application.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__CueSheet-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__CueSheet.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Index-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Index.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Track-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Track.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Padding-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Padding.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Picture-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Picture.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__SeekPoint-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__SeekPoint.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__SeekTable-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__SeekTable.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__StreamInfo-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__StreamInfo.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Unknown-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__Unknown.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__VorbisComment-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__VorbisComment.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__VorbisComment__Entry-members.html │ │ │ │ │ │ ├── structFLAC____StreamMetadata__VorbisComment__Entry.html │ │ │ │ │ │ ├── structFLAC____Subframe-members.html │ │ │ │ │ │ ├── structFLAC____Subframe.html │ │ │ │ │ │ ├── structFLAC____Subframe__Constant-members.html │ │ │ │ │ │ ├── structFLAC____Subframe__Constant.html │ │ │ │ │ │ ├── structFLAC____Subframe__Fixed-members.html │ │ │ │ │ │ ├── structFLAC____Subframe__Fixed.html │ │ │ │ │ │ ├── structFLAC____Subframe__LPC-members.html │ │ │ │ │ │ ├── structFLAC____Subframe__LPC.html │ │ │ │ │ │ ├── structFLAC____Subframe__Verbatim-members.html │ │ │ │ │ │ └── structFLAC____Subframe__Verbatim.html │ │ │ │ │ │ ├── changelog.html │ │ │ │ │ │ ├── comparison.html │ │ │ │ │ │ ├── comparison__chopin_prelude_24.html │ │ │ │ │ │ ├── comparison__dream_theater_600.html │ │ │ │ │ │ ├── comparison__eddie_warner_titus.html │ │ │ │ │ │ ├── comparison__fanfare_de_l_eventail_de_jeanne.html │ │ │ │ │ │ ├── comparison__gloria_estefan_conga.html │ │ │ │ │ │ ├── comparison__hand_in_my_pocket.html │ │ │ │ │ │ ├── comparison__l_sub_raga_sivapriya.html │ │ │ │ │ │ ├── comparison__laetatus_sum.html │ │ │ │ │ │ ├── comparison__mummified_in_barbed_wire.html │ │ │ │ │ │ ├── comparison__prokofiev_pcon3_3.html │ │ │ │ │ │ ├── comparison__ravel_sq4_4.html │ │ │ │ │ │ ├── comparison__scarlatti_k42.html │ │ │ │ │ │ ├── comparison__tool_forty_six_and_2.html │ │ │ │ │ │ ├── comparison__white_room.html │ │ │ │ │ │ ├── comparison_all_cpudectime.html │ │ │ │ │ │ ├── comparison_all_cpuenctime.html │ │ │ │ │ │ ├── comparison_all_procdectime.html │ │ │ │ │ │ ├── comparison_all_procenctime.html │ │ │ │ │ │ ├── comparison_all_ratio.html │ │ │ │ │ │ ├── developers.html │ │ │ │ │ │ ├── documentation.html │ │ │ │ │ │ ├── documentation_bugs.html │ │ │ │ │ │ ├── documentation_example_code.html │ │ │ │ │ │ ├── documentation_format_overview.html │ │ │ │ │ │ ├── documentation_tasks.html │ │ │ │ │ │ ├── documentation_tools.html │ │ │ │ │ │ ├── documentation_tools_flac.html │ │ │ │ │ │ ├── documentation_tools_metaflac.html │ │ │ │ │ │ ├── documentation_tools_plugins.html │ │ │ │ │ │ ├── download.html │ │ │ │ │ │ ├── faq.html │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── features.html │ │ │ │ │ │ ├── flac.css │ │ │ │ │ │ ├── format.html │ │ │ │ │ │ ├── id.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 1x1.gif │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── cafebug.gif │ │ │ │ │ │ ├── hw │ │ │ │ │ │ │ ├── Blackbird_Front_low3_325x87.jpg │ │ │ │ │ │ │ ├── MS300frontsmall_270x108.jpg │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MediaBox_Frt_170x325.jpg │ │ │ │ │ │ │ ├── SB_Hero_Black_325x182.jpg │ │ │ │ │ │ │ ├── Sooloos-ControlOne_325x328.jpg │ │ │ │ │ │ │ ├── Z500_front_325x94.jpg │ │ │ │ │ │ │ ├── a2_01_325x252.jpg │ │ │ │ │ │ │ ├── arcus_325x135.jpg │ │ │ │ │ │ │ ├── bmp-1430_325x241.jpg │ │ │ │ │ │ │ ├── cs505_front_lrg_325x113.jpg │ │ │ │ │ │ │ ├── enus_3-4lft-hires_product_eva8000_325x127.jpg │ │ │ │ │ │ │ ├── escient_ProductLine_325x163.jpg │ │ │ │ │ │ │ ├── hifidelio_bl_front_Z_RGB_325x163.jpg │ │ │ │ │ │ │ ├── i-station-mini-dx_325x237.jpg │ │ │ │ │ │ │ ├── iwod-g10_325x257.jpg │ │ │ │ │ │ │ ├── knc_hr-2800_325x209.jpg │ │ │ │ │ │ │ ├── mediaready_prodmain_MRMCa_325x232.jpg │ │ │ │ │ │ │ ├── meizu_m6_325x206.jpg │ │ │ │ │ │ │ ├── musica_artwork_325x90.jpg │ │ │ │ │ │ │ ├── neodigits_x5000_325x124.jpg │ │ │ │ │ │ │ ├── onda-vx737_325x240.jpg │ │ │ │ │ │ │ ├── request_n_front_325x103.jpg │ │ │ │ │ │ │ ├── rio_karma_279x254.jpg │ │ │ │ │ │ │ ├── sonos_family_RGB_325x200.jpg │ │ │ │ │ │ │ ├── teclast-tl29_325x244.jpg │ │ │ │ │ │ │ ├── transporter_hero_grey_325x208.jpg │ │ │ │ │ │ │ ├── tvix-4000_325x204.jpg │ │ │ │ │ │ │ └── vibez_nofm_combi_black_b_325x220.jpg │ │ │ │ │ │ ├── logo100.gif │ │ │ │ │ │ └── logo130.gif │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── itunes.html │ │ │ │ │ │ ├── license.html │ │ │ │ │ │ ├── links.html │ │ │ │ │ │ ├── news.html │ │ │ │ │ │ ├── ogg_mapping.html │ │ │ │ │ │ └── ru │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── authors.html │ │ │ │ │ │ ├── comparison.html │ │ │ │ │ │ ├── developers.html │ │ │ │ │ │ ├── documentation.html │ │ │ │ │ │ ├── download.html │ │ │ │ │ │ ├── features.html │ │ │ │ │ │ ├── format.html │ │ │ │ │ │ ├── goals.html │ │ │ │ │ │ ├── id.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── links.html │ │ │ │ │ │ └── news.html │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── README │ │ │ │ │ ├── c │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── decode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ │ ├── example_c_decode_file.dsp │ │ │ │ │ │ │ │ ├── example_c_decode_file.vcproj │ │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── encode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── example_c_encode_file.dsp │ │ │ │ │ │ │ ├── example_c_encode_file.vcproj │ │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── decode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ │ ├── example_cpp_decode_file.dsp │ │ │ │ │ │ │ │ ├── example_cpp_decode_file.vcproj │ │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ └── encode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── example_cpp_encode_file.dsp │ │ │ │ │ │ │ ├── example_cpp_encode_file.vcproj │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ └── examples.dsp │ │ │ │ ├── include │ │ │ │ │ ├── FLAC++ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── decoder.h │ │ │ │ │ │ ├── encoder.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ └── metadata.h │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── share │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── alloc.h │ │ │ │ │ │ ├── getopt.h │ │ │ │ │ │ ├── grabbag.h │ │ │ │ │ │ ├── grabbag │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── cuesheet.h │ │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ │ ├── picture.h │ │ │ │ │ │ │ ├── replaygain.h │ │ │ │ │ │ │ └── seektable.h │ │ │ │ │ │ ├── replaygain_analysis.h │ │ │ │ │ │ ├── replaygain_synthesis.h │ │ │ │ │ │ └── utf8.h │ │ │ │ │ └── test_libs_common │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── file_utils_flac.h │ │ │ │ │ │ └── metadata_utils.h │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── m4 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ogg.m4 │ │ │ │ │ └── xmms.m4 │ │ │ │ ├── man │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── flac.1 │ │ │ │ │ ├── flac.sgml │ │ │ │ │ ├── metaflac.1 │ │ │ │ │ └── metaflac.sgml │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── obj │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ └── release │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ ├── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── flac │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── Makefile.lite.iffscan │ │ │ │ │ │ ├── analyze.c │ │ │ │ │ │ ├── analyze.h │ │ │ │ │ │ ├── decode.c │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.c │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ ├── flac.dsp │ │ │ │ │ │ ├── flac.vcproj │ │ │ │ │ │ ├── foreign_metadata.c │ │ │ │ │ │ ├── foreign_metadata.h │ │ │ │ │ │ ├── iffscan.c │ │ │ │ │ │ ├── iffscan.dsp │ │ │ │ │ │ ├── iffscan.vcproj │ │ │ │ │ │ ├── local_string_utils.c │ │ │ │ │ │ ├── local_string_utils.h │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ ├── vorbiscomment.c │ │ │ │ │ │ └── vorbiscomment.h │ │ │ │ │ ├── libFLAC++ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── flac++.pc.in │ │ │ │ │ │ ├── libFLAC++.m4 │ │ │ │ │ │ ├── libFLAC++_dynamic.dsp │ │ │ │ │ │ ├── libFLAC++_dynamic.vcproj │ │ │ │ │ │ ├── libFLAC++_static.dsp │ │ │ │ │ │ ├── libFLAC++_static.vcproj │ │ │ │ │ │ ├── metadata.cpp │ │ │ │ │ │ ├── stream_decoder.cpp │ │ │ │ │ │ └── stream_encoder.cpp │ │ │ │ │ ├── libFLAC │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── bitmath.c │ │ │ │ │ │ ├── bitreader.c │ │ │ │ │ │ ├── bitwriter.c │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── crc.c │ │ │ │ │ │ ├── fixed.c │ │ │ │ │ │ ├── flac.pc.in │ │ │ │ │ │ ├── float.c │ │ │ │ │ │ ├── format.c │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── bitreader_asm.nasm │ │ │ │ │ │ │ ├── cpu_asm.nasm │ │ │ │ │ │ │ ├── fixed_asm.nasm │ │ │ │ │ │ │ ├── lpc_asm.nasm │ │ │ │ │ │ │ ├── nasm.h │ │ │ │ │ │ │ └── stream_encoder_asm.nasm │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ │ │ │ │ ├── ogg_helper.h │ │ │ │ │ │ │ │ ├── ogg_mapping.h │ │ │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ │ │ └── window.h │ │ │ │ │ │ │ └── protected │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ ├── libFLAC.m4 │ │ │ │ │ │ ├── libFLAC_dynamic.dsp │ │ │ │ │ │ ├── libFLAC_dynamic.vcproj │ │ │ │ │ │ ├── libFLAC_static.dsp │ │ │ │ │ │ ├── libFLAC_static.vcproj │ │ │ │ │ │ ├── lpc.c │ │ │ │ │ │ ├── md5.c │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── metadata_iterators.c │ │ │ │ │ │ ├── metadata_object.c │ │ │ │ │ │ ├── ogg_decoder_aspect.c │ │ │ │ │ │ ├── ogg_encoder_aspect.c │ │ │ │ │ │ ├── ogg_helper.c │ │ │ │ │ │ ├── ogg_mapping.c │ │ │ │ │ │ ├── ppc │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── as │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── lpc_asm.s │ │ │ │ │ │ │ └── gas │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── lpc_asm.s │ │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ │ │ └── window.c │ │ │ │ │ ├── metaflac │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── metaflac.dsp │ │ │ │ │ │ ├── metaflac.vcproj │ │ │ │ │ │ ├── operations.c │ │ │ │ │ │ ├── operations.h │ │ │ │ │ │ ├── operations_shorthand.h │ │ │ │ │ │ ├── operations_shorthand_cuesheet.c │ │ │ │ │ │ ├── operations_shorthand_picture.c │ │ │ │ │ │ ├── operations_shorthand_seektable.c │ │ │ │ │ │ ├── operations_shorthand_streaminfo.c │ │ │ │ │ │ ├── operations_shorthand_vorbiscomment.c │ │ │ │ │ │ ├── options.c │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── usage.c │ │ │ │ │ │ ├── usage.h │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── monkeys_audio_utilities │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── flac_mac │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── flac_mac.dsp │ │ │ │ │ │ │ ├── flac_mac.vcproj │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── flac_ren │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── flac_ren.dsp │ │ │ │ │ │ │ ├── flac_ren.vcproj │ │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── plugin_common │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── charset.c │ │ │ │ │ │ ├── charset.h │ │ │ │ │ │ ├── defs.h │ │ │ │ │ │ ├── dither.c │ │ │ │ │ │ ├── dither.h │ │ │ │ │ │ ├── plugin_common_static.dsp │ │ │ │ │ │ ├── plugin_common_static.vcproj │ │ │ │ │ │ ├── replaygain.c │ │ │ │ │ │ ├── replaygain.h │ │ │ │ │ │ ├── tags.c │ │ │ │ │ │ └── tags.h │ │ │ │ │ ├── plugin_winamp2 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── configure.c │ │ │ │ │ │ ├── configure.h │ │ │ │ │ │ ├── in_flac.c │ │ │ │ │ │ ├── in_flac.dsp │ │ │ │ │ │ ├── in_flac.vcproj │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── winamp2 │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── in2.h │ │ │ │ │ │ │ │ └── out.h │ │ │ │ │ │ ├── infobox.c │ │ │ │ │ │ ├── infobox.h │ │ │ │ │ │ ├── playback.c │ │ │ │ │ │ ├── playback.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ ├── tagz.cpp │ │ │ │ │ │ └── tagz.h │ │ │ │ │ ├── plugin_xmms │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── charset.c │ │ │ │ │ │ ├── charset.h │ │ │ │ │ │ ├── configure.c │ │ │ │ │ │ ├── configure.h │ │ │ │ │ │ ├── fileinfo.c │ │ │ │ │ │ ├── http.c │ │ │ │ │ │ ├── http.h │ │ │ │ │ │ ├── locale_hack.h │ │ │ │ │ │ ├── plugin.c │ │ │ │ │ │ ├── plugin.h │ │ │ │ │ │ ├── tag.c │ │ │ │ │ │ └── tag.h │ │ │ │ │ ├── share │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── getopt │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── getopt.c │ │ │ │ │ │ │ ├── getopt1.c │ │ │ │ │ │ │ ├── getopt_static.dsp │ │ │ │ │ │ │ └── getopt_static.vcproj │ │ │ │ │ │ ├── grabbag │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── cuesheet.c │ │ │ │ │ │ │ ├── file.c │ │ │ │ │ │ │ ├── grabbag_static.dsp │ │ │ │ │ │ │ ├── grabbag_static.vcproj │ │ │ │ │ │ │ ├── picture.c │ │ │ │ │ │ │ ├── replaygain.c │ │ │ │ │ │ │ └── seektable.c │ │ │ │ │ │ ├── replaygain_analysis │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── replaygain_analysis.c │ │ │ │ │ │ │ ├── replaygain_analysis_static.dsp │ │ │ │ │ │ │ └── replaygain_analysis_static.vcproj │ │ │ │ │ │ ├── replaygain_synthesis │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── private │ │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ │ └── fast_float_math_hack.h │ │ │ │ │ │ │ ├── replaygain_synthesis.c │ │ │ │ │ │ │ ├── replaygain_synthesis_static.dsp │ │ │ │ │ │ │ └── replaygain_synthesis_static.vcproj │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── charmaps.h │ │ │ │ │ │ │ ├── charset.c │ │ │ │ │ │ │ ├── charset.h │ │ │ │ │ │ │ ├── charset_test.c │ │ │ │ │ │ │ ├── charsetmap.h │ │ │ │ │ │ │ ├── iconvert.c │ │ │ │ │ │ │ ├── iconvert.h │ │ │ │ │ │ │ ├── makemap.c │ │ │ │ │ │ │ ├── utf8.c │ │ │ │ │ │ │ ├── utf8_static.dsp │ │ │ │ │ │ │ └── utf8_static.vcproj │ │ │ │ │ ├── test_grabbag │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── cuesheet │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ ├── test_cuesheet.dsp │ │ │ │ │ │ │ └── test_cuesheet.vcproj │ │ │ │ │ │ └── picture │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ ├── test_picture.dsp │ │ │ │ │ │ │ └── test_picture.vcproj │ │ │ │ │ ├── test_libFLAC++ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── decoders.cpp │ │ │ │ │ │ ├── decoders.h │ │ │ │ │ │ ├── encoders.cpp │ │ │ │ │ │ ├── encoders.h │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── metadata.cpp │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── metadata_manip.cpp │ │ │ │ │ │ ├── metadata_object.cpp │ │ │ │ │ │ ├── test_libFLAC++.dsp │ │ │ │ │ │ └── test_libFLAC++.vcproj │ │ │ │ │ ├── test_libFLAC │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── bitwriter.c │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── decoders.c │ │ │ │ │ │ ├── decoders.h │ │ │ │ │ │ ├── encoders.c │ │ │ │ │ │ ├── encoders.h │ │ │ │ │ │ ├── format.c │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── metadata.c │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── metadata_manip.c │ │ │ │ │ │ ├── metadata_object.c │ │ │ │ │ │ ├── test_libFLAC.dsp │ │ │ │ │ │ └── test_libFLAC.vcproj │ │ │ │ │ ├── test_libs_common │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── file_utils_flac.c │ │ │ │ │ │ ├── metadata_utils.c │ │ │ │ │ │ ├── test_libs_common_static.dsp │ │ │ │ │ │ └── test_libs_common_static.vcproj │ │ │ │ │ ├── test_seeking │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── test_seeking.dsp │ │ │ │ │ │ └── test_seeking.vcproj │ │ │ │ │ └── test_streams │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── test_streams.dsp │ │ │ │ │ │ └── test_streams.vcproj │ │ │ │ ├── strip_non_asm_libtool_args.sh │ │ │ │ └── test │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── cuesheet.ok │ │ │ │ │ ├── cuesheets │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bad.000.CATALOG_multiple.cue │ │ │ │ │ ├── bad.001.CATALOG_missing_number.cue │ │ │ │ │ ├── bad.002.CATALOG_number_too_long.cue │ │ │ │ │ ├── bad.003.CATALOG_not_13_digits.cue │ │ │ │ │ ├── bad.030.FLAGS_multiple.cue │ │ │ │ │ ├── bad.031.FLAGS_wrong_place_1.cue │ │ │ │ │ ├── bad.032.FLAGS_wrong_place_2.cue │ │ │ │ │ ├── bad.060.INDEX_wrong_place.cue │ │ │ │ │ ├── bad.061.INDEX_missing_number.cue │ │ │ │ │ ├── bad.062.INDEX_invalid_number_1.cue │ │ │ │ │ ├── bad.063.first_INDEX_not_0_or_1.cue │ │ │ │ │ ├── bad.064.INDEX_num_non_sequential.cue │ │ │ │ │ ├── bad.065.INDEX_num_out_of_range.cue │ │ │ │ │ ├── bad.066.INDEX_missing_offset.cue │ │ │ │ │ ├── bad.067.INDEX_illegal_offset.cue │ │ │ │ │ ├── bad.068.INDEX_cdda_illegal_offset.cue │ │ │ │ │ ├── bad.069.nonzero_first_INDEX.cue │ │ │ │ │ ├── bad.070.INDEX_offset_not_ascending_1.cue │ │ │ │ │ ├── bad.071.INDEX_offset_not_ascending_2.cue │ │ │ │ │ ├── bad.110.ISRC_multiple.cue │ │ │ │ │ ├── bad.111.ISRC_wrong_place_1.cue │ │ │ │ │ ├── bad.112.ISRC_wrong_place_2.cue │ │ │ │ │ ├── bad.113.ISRC_missing_number.cue │ │ │ │ │ ├── bad.114.ISRC_invalid_number.cue │ │ │ │ │ ├── bad.130.TRACK_missing_INDEX_01_1.cue │ │ │ │ │ ├── bad.131.TRACK_missing_INDEX_01_2.cue │ │ │ │ │ ├── bad.132.TRACK_missing_INDEX_01_3.cue │ │ │ │ │ ├── bad.133.TRACK_missing_INDEX_01_4.cue │ │ │ │ │ ├── bad.134.TRACK_missing_number.cue │ │ │ │ │ ├── bad.135.TRACK_invalid_number_1.cue │ │ │ │ │ ├── bad.136.TRACK_invalid_number_2.cue │ │ │ │ │ ├── bad.137.TRACK_cdda_out_of_range.cue │ │ │ │ │ ├── bad.138.TRACK_num_non_sequential.cue │ │ │ │ │ ├── bad.139.TRACK_missing_type.cue │ │ │ │ │ ├── bad.140.no_TRACKs.cue │ │ │ │ │ ├── bad.200.FLAC_leadin_missing_offset.cue │ │ │ │ │ ├── bad.201.FLAC_leadin_illegal_offset.cue │ │ │ │ │ ├── bad.202.FLAC_leadin_cdda_illegal_offset.cue │ │ │ │ │ ├── bad.230.FLAC_leadout_multiple.cue │ │ │ │ │ ├── bad.231.FLAC_leadout_missing_track.cue │ │ │ │ │ ├── bad.232.FLAC_leadout_illegal_track.cue │ │ │ │ │ ├── bad.233.FLAC_leadout_missing_offset.cue │ │ │ │ │ ├── bad.234.FLAC_leadout_illegal_offset.cue │ │ │ │ │ ├── bad.235.FLAC_leadout_offset_not_211680000.cue │ │ │ │ │ ├── good.000.cue │ │ │ │ │ ├── good.001.cue │ │ │ │ │ ├── good.002.dos_format.cue │ │ │ │ │ ├── good.003.missing_final_newline.cue │ │ │ │ │ └── good.004.dos_format.missing_final_newline.cue │ │ │ │ │ ├── flac-to-flac-metadata-test-files │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── case00a-expect.meta │ │ │ │ │ ├── case01a-expect.meta │ │ │ │ │ ├── case01b-expect.meta │ │ │ │ │ ├── case01c-expect.meta │ │ │ │ │ ├── case01d-expect.meta │ │ │ │ │ ├── case01e-expect.meta │ │ │ │ │ ├── case02a-expect.meta │ │ │ │ │ ├── case02b-expect.meta │ │ │ │ │ ├── case02c-expect.meta │ │ │ │ │ ├── case03a-expect.meta │ │ │ │ │ ├── case03b-expect.meta │ │ │ │ │ ├── case03c-expect.meta │ │ │ │ │ ├── case04a-expect.meta │ │ │ │ │ ├── case04b-expect.meta │ │ │ │ │ ├── case04c-expect.meta │ │ │ │ │ ├── case04d-expect.meta │ │ │ │ │ ├── case04e-expect.meta │ │ │ │ │ ├── input-SCPAP.flac │ │ │ │ │ ├── input-SCVA.flac │ │ │ │ │ ├── input-SCVAUP.flac │ │ │ │ │ ├── input-SCVPAP.flac │ │ │ │ │ ├── input-SVAUP.flac │ │ │ │ │ ├── input-VA.flac │ │ │ │ │ └── input0.cue │ │ │ │ │ ├── metaflac-test-files │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── case00-expect.meta │ │ │ │ │ ├── case01-expect.meta │ │ │ │ │ ├── case02-expect.meta │ │ │ │ │ ├── case03-expect.meta │ │ │ │ │ ├── case04-expect.meta │ │ │ │ │ ├── case05-expect.meta │ │ │ │ │ ├── case06-expect.meta │ │ │ │ │ ├── case07-expect.meta │ │ │ │ │ ├── case08-expect.meta │ │ │ │ │ ├── case09-expect.meta │ │ │ │ │ ├── case10-expect.meta │ │ │ │ │ ├── case11-expect.meta │ │ │ │ │ ├── case12-expect.meta │ │ │ │ │ ├── case13-expect.meta │ │ │ │ │ ├── case14-expect.meta │ │ │ │ │ ├── case15-expect.meta │ │ │ │ │ ├── case16-expect.meta │ │ │ │ │ ├── case17-expect.meta │ │ │ │ │ ├── case18-expect.meta │ │ │ │ │ ├── case19-expect.meta │ │ │ │ │ ├── case20-expect.meta │ │ │ │ │ ├── case21-expect.meta │ │ │ │ │ ├── case22-expect.meta │ │ │ │ │ ├── case23-expect.meta │ │ │ │ │ ├── case24-expect.meta │ │ │ │ │ ├── case25-expect.meta │ │ │ │ │ ├── case26-expect.meta │ │ │ │ │ ├── case27-expect.meta │ │ │ │ │ ├── case28-expect.meta │ │ │ │ │ ├── case29-expect.meta │ │ │ │ │ ├── case30-expect.meta │ │ │ │ │ ├── case31-expect.meta │ │ │ │ │ ├── case32-expect.meta │ │ │ │ │ ├── case33-expect.meta │ │ │ │ │ ├── case34-expect.meta │ │ │ │ │ ├── case35-expect.meta │ │ │ │ │ ├── case36-expect.meta │ │ │ │ │ ├── case37-expect.meta │ │ │ │ │ ├── case38-expect.meta │ │ │ │ │ ├── case39-expect.meta │ │ │ │ │ ├── case40-expect.meta │ │ │ │ │ ├── case41-expect.meta │ │ │ │ │ ├── case42-expect.meta │ │ │ │ │ ├── case43-expect.meta │ │ │ │ │ ├── case44-expect.meta │ │ │ │ │ ├── case45-expect.meta │ │ │ │ │ ├── case46-expect.meta │ │ │ │ │ ├── case47-expect.meta │ │ │ │ │ ├── case48-expect.meta │ │ │ │ │ ├── case49-expect.meta │ │ │ │ │ ├── case50-expect.meta │ │ │ │ │ ├── case51-expect.meta │ │ │ │ │ ├── case52-expect.meta │ │ │ │ │ ├── case53-expect.meta │ │ │ │ │ ├── case54-expect.meta │ │ │ │ │ ├── case55-expect.meta │ │ │ │ │ ├── case56-expect.meta │ │ │ │ │ ├── case57-expect.meta │ │ │ │ │ ├── case58-expect.meta │ │ │ │ │ ├── case59-expect.meta │ │ │ │ │ ├── case60-expect.meta │ │ │ │ │ ├── case61-expect.meta │ │ │ │ │ └── case62-expect.meta │ │ │ │ │ ├── metaflac.flac.in │ │ │ │ │ ├── metaflac.flac.ok │ │ │ │ │ ├── picture.ok │ │ │ │ │ ├── pictures │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 0.jpg │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── test_bins.sh │ │ │ │ │ ├── test_flac.sh │ │ │ │ │ ├── test_grabbag.sh │ │ │ │ │ ├── test_libFLAC++.sh │ │ │ │ │ ├── test_libFLAC.sh │ │ │ │ │ ├── test_metaflac.sh │ │ │ │ │ ├── test_seeking.sh │ │ │ │ │ └── test_streams.sh │ │ │ ├── libmikmod-3.1.12 │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── COPYING.LESSER │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── acconfig.h │ │ │ │ ├── acinclude │ │ │ │ │ ├── esd.m4 │ │ │ │ │ └── libtool.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── dlapi │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dl_hpux.c │ │ │ │ │ └── dlfcn.h │ │ │ │ ├── docs │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── libmikmod-config.1.in │ │ │ │ │ ├── mikmod.html │ │ │ │ │ ├── mikmod.info │ │ │ │ │ ├── mikmod.texi │ │ │ │ │ └── texinfo.tex │ │ │ │ ├── drivers │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── drv_AF.c │ │ │ │ │ ├── drv_aix.c │ │ │ │ │ ├── drv_alsa.c │ │ │ │ │ ├── drv_dart.c │ │ │ │ │ ├── drv_ds.c │ │ │ │ │ ├── drv_esd.c │ │ │ │ │ ├── drv_hp.c │ │ │ │ │ ├── drv_mac.c │ │ │ │ │ ├── drv_nos.c │ │ │ │ │ ├── drv_os2.c │ │ │ │ │ ├── drv_oss.c │ │ │ │ │ ├── drv_pipe.c │ │ │ │ │ ├── drv_raw.c │ │ │ │ │ ├── drv_sam9407.c │ │ │ │ │ ├── drv_sgi.c │ │ │ │ │ ├── drv_stdout.c │ │ │ │ │ ├── drv_sun.c │ │ │ │ │ ├── drv_ultra.c │ │ │ │ │ ├── drv_wav.c │ │ │ │ │ └── drv_win.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── mikmod.h │ │ │ │ │ ├── mikmod.h.in │ │ │ │ │ ├── mikmod_build.h │ │ │ │ │ ├── mikmod_build.h.in │ │ │ │ │ └── mikmod_internals.h │ │ │ │ ├── install-sh │ │ │ │ ├── libmikmod-config.in │ │ │ │ ├── libmikmod.m4 │ │ │ │ ├── libmikmod │ │ │ │ │ └── Makefile.in │ │ │ │ ├── loaders │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── load_669.c │ │ │ │ │ ├── load_amf.c │ │ │ │ │ ├── load_dsm.c │ │ │ │ │ ├── load_far.c │ │ │ │ │ ├── load_gdm.c │ │ │ │ │ ├── load_imf.c │ │ │ │ │ ├── load_it.c │ │ │ │ │ ├── load_m15.c │ │ │ │ │ ├── load_med.c │ │ │ │ │ ├── load_mod.c │ │ │ │ │ ├── load_mtm.c │ │ │ │ │ ├── load_okt.c │ │ │ │ │ ├── load_s3m.c │ │ │ │ │ ├── load_stm.c │ │ │ │ │ ├── load_stx.c │ │ │ │ │ ├── load_ult.c │ │ │ │ │ ├── load_uni.c │ │ │ │ │ └── load_xm.c │ │ │ │ ├── ltmain.sh │ │ │ │ ├── macintosh │ │ │ │ │ ├── BuildLibmikmod │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cwmikmodheaders.h │ │ │ │ │ ├── libmikmod.exp │ │ │ │ │ ├── libmikmod.make │ │ │ │ │ ├── libmikmod.mcp │ │ │ │ │ ├── libmikmodversion.r │ │ │ │ │ ├── mikmod.h │ │ │ │ │ ├── mikmod_build.h │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ └── strdup.c │ │ │ │ ├── macosx │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── Cocoa Framework-Info.plist │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── config.h │ │ │ │ │ ├── libmikmod.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── mikmod.h │ │ │ │ │ └── mikmod_build.h │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── mmio │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── mmalloc.c │ │ │ │ │ ├── mmerror.c │ │ │ │ │ └── mmio.c │ │ │ │ ├── os2 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.os2 │ │ │ │ │ ├── Makefile.tmpl │ │ │ │ │ ├── README │ │ │ │ │ ├── configure.cmd │ │ │ │ │ └── mikmod2.def.in │ │ │ │ ├── playercode │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── mdreg.c │ │ │ │ │ ├── mdriver.c │ │ │ │ │ ├── mdulaw.c │ │ │ │ │ ├── mloader.c │ │ │ │ │ ├── mlreg.c │ │ │ │ │ ├── mlutil.c │ │ │ │ │ ├── mplayer.c │ │ │ │ │ ├── munitrk.c │ │ │ │ │ ├── mwav.c │ │ │ │ │ ├── npertab.c │ │ │ │ │ ├── sloader.c │ │ │ │ │ ├── virtch.c │ │ │ │ │ ├── virtch2.c │ │ │ │ │ └── virtch_common.c │ │ │ │ ├── posix │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── memcmp.c │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ ├── strdup.c │ │ │ │ │ └── strstr.c │ │ │ │ ├── stamp-h.in │ │ │ │ └── win32 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.dynamic │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lcc │ │ │ │ │ ├── Makefile.static │ │ │ │ │ ├── README │ │ │ │ │ ├── mikmod.def │ │ │ │ │ └── mikmod_build.h │ │ │ ├── libmikmod-patches │ │ │ │ ├── libmikmod-3.1.12-64bit-fix.diff │ │ │ │ ├── libmikmod-3.1.12-android.diff │ │ │ │ ├── libmikmod-3.1.12-exitcrash-fix.diff │ │ │ │ ├── libmikmod-3.1.12-loopingvolume-fix.diff │ │ │ │ ├── libmikmod-3.1.12-md_sngchn-fix.diff │ │ │ │ ├── libmikmod-3.1.12-mingw64.diff │ │ │ │ └── libmikmod-CVE-2009-0179.patch │ │ │ ├── libmodplug-0.8.8.4 │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── libmodplug.pc.in │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ └── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── fastmix.cpp │ │ │ │ │ ├── libmodplug │ │ │ │ │ ├── it_defs.h │ │ │ │ │ ├── sndfile.h │ │ │ │ │ └── stdafx.h │ │ │ │ │ ├── load_669.cpp │ │ │ │ │ ├── load_abc.cpp │ │ │ │ │ ├── load_amf.cpp │ │ │ │ │ ├── load_ams.cpp │ │ │ │ │ ├── load_dbm.cpp │ │ │ │ │ ├── load_dmf.cpp │ │ │ │ │ ├── load_dsm.cpp │ │ │ │ │ ├── load_far.cpp │ │ │ │ │ ├── load_it.cpp │ │ │ │ │ ├── load_j2b.cpp │ │ │ │ │ ├── load_mdl.cpp │ │ │ │ │ ├── load_med.cpp │ │ │ │ │ ├── load_mid.cpp │ │ │ │ │ ├── load_mod.cpp │ │ │ │ │ ├── load_mt2.cpp │ │ │ │ │ ├── load_mtm.cpp │ │ │ │ │ ├── load_okt.cpp │ │ │ │ │ ├── load_pat.cpp │ │ │ │ │ ├── load_pat.h │ │ │ │ │ ├── load_psm.cpp │ │ │ │ │ ├── load_ptm.cpp │ │ │ │ │ ├── load_s3m.cpp │ │ │ │ │ ├── load_stm.cpp │ │ │ │ │ ├── load_ult.cpp │ │ │ │ │ ├── load_umx.cpp │ │ │ │ │ ├── load_wav.cpp │ │ │ │ │ ├── load_xm.cpp │ │ │ │ │ ├── mmcmp.cpp │ │ │ │ │ ├── modplug.cpp │ │ │ │ │ ├── modplug.h │ │ │ │ │ ├── snd_dsp.cpp │ │ │ │ │ ├── snd_flt.cpp │ │ │ │ │ ├── snd_fx.cpp │ │ │ │ │ ├── sndfile.cpp │ │ │ │ │ ├── sndmix.cpp │ │ │ │ │ └── tables.h │ │ │ ├── libogg-1.3.1.patch │ │ │ ├── libogg-1.3.1 │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── fish_xiph_org.png │ │ │ │ │ ├── framing.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── libogg │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bitpacking.html │ │ │ │ │ │ ├── datastructures.html │ │ │ │ │ │ ├── decoding.html │ │ │ │ │ │ ├── encoding.html │ │ │ │ │ │ ├── general.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ogg_iovec_t.html │ │ │ │ │ │ ├── ogg_packet.html │ │ │ │ │ │ ├── ogg_packet_clear.html │ │ │ │ │ │ ├── ogg_page.html │ │ │ │ │ │ ├── ogg_page_bos.html │ │ │ │ │ │ ├── ogg_page_checksum_set.html │ │ │ │ │ │ ├── ogg_page_continued.html │ │ │ │ │ │ ├── ogg_page_eos.html │ │ │ │ │ │ ├── ogg_page_granulepos.html │ │ │ │ │ │ ├── ogg_page_packets.html │ │ │ │ │ │ ├── ogg_page_pageno.html │ │ │ │ │ │ ├── ogg_page_serialno.html │ │ │ │ │ │ ├── ogg_page_version.html │ │ │ │ │ │ ├── ogg_stream_check.html │ │ │ │ │ │ ├── ogg_stream_clear.html │ │ │ │ │ │ ├── ogg_stream_destroy.html │ │ │ │ │ │ ├── ogg_stream_eos.html │ │ │ │ │ │ ├── ogg_stream_flush.html │ │ │ │ │ │ ├── ogg_stream_flush_fill.html │ │ │ │ │ │ ├── ogg_stream_init.html │ │ │ │ │ │ ├── ogg_stream_iovecin.html │ │ │ │ │ │ ├── ogg_stream_packetin.html │ │ │ │ │ │ ├── ogg_stream_packetout.html │ │ │ │ │ │ ├── ogg_stream_packetpeek.html │ │ │ │ │ │ ├── ogg_stream_pagein.html │ │ │ │ │ │ ├── ogg_stream_pageout.html │ │ │ │ │ │ ├── ogg_stream_pageout_fill.html │ │ │ │ │ │ ├── ogg_stream_reset.html │ │ │ │ │ │ ├── ogg_stream_reset_serialno.html │ │ │ │ │ │ ├── ogg_stream_state.html │ │ │ │ │ │ ├── ogg_sync_buffer.html │ │ │ │ │ │ ├── ogg_sync_check.html │ │ │ │ │ │ ├── ogg_sync_clear.html │ │ │ │ │ │ ├── ogg_sync_destroy.html │ │ │ │ │ │ ├── ogg_sync_init.html │ │ │ │ │ │ ├── ogg_sync_pageout.html │ │ │ │ │ │ ├── ogg_sync_pageseek.html │ │ │ │ │ │ ├── ogg_sync_reset.html │ │ │ │ │ │ ├── ogg_sync_state.html │ │ │ │ │ │ ├── ogg_sync_wrote.html │ │ │ │ │ │ ├── oggpack_adv.html │ │ │ │ │ │ ├── oggpack_adv1.html │ │ │ │ │ │ ├── oggpack_bits.html │ │ │ │ │ │ ├── oggpack_buffer.html │ │ │ │ │ │ ├── oggpack_bytes.html │ │ │ │ │ │ ├── oggpack_get_buffer.html │ │ │ │ │ │ ├── oggpack_look.html │ │ │ │ │ │ ├── oggpack_look1.html │ │ │ │ │ │ ├── oggpack_read.html │ │ │ │ │ │ ├── oggpack_read1.html │ │ │ │ │ │ ├── oggpack_readinit.html │ │ │ │ │ │ ├── oggpack_reset.html │ │ │ │ │ │ ├── oggpack_write.html │ │ │ │ │ │ ├── oggpack_writealign.html │ │ │ │ │ │ ├── oggpack_writecheck.html │ │ │ │ │ │ ├── oggpack_writeclear.html │ │ │ │ │ │ ├── oggpack_writecopy.html │ │ │ │ │ │ ├── oggpack_writeinit.html │ │ │ │ │ │ ├── oggpack_writetrunc.html │ │ │ │ │ │ ├── overview.html │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── multiplex1.png │ │ │ │ │ ├── ogg-multiplex.html │ │ │ │ │ ├── oggstream.html │ │ │ │ │ ├── packets.png │ │ │ │ │ ├── pages.png │ │ │ │ │ ├── rfc3533.txt │ │ │ │ │ ├── rfc5334.txt │ │ │ │ │ ├── skeleton.html │ │ │ │ │ ├── stream.png │ │ │ │ │ ├── vorbisword2.png │ │ │ │ │ ├── white-ogg.png │ │ │ │ │ └── white-xifish.png │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── ogg │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── config_types.h │ │ │ │ │ │ ├── config_types.h.in │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ ├── install-sh │ │ │ │ ├── libogg.spec │ │ │ │ ├── libogg.spec.in │ │ │ │ ├── ltmain.sh │ │ │ │ ├── macosx │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Ogg.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── Ogg_Prefix.pch │ │ │ │ ├── missing │ │ │ │ ├── ogg-uninstalled.pc.in │ │ │ │ ├── ogg.m4 │ │ │ │ ├── ogg.pc.in │ │ │ │ ├── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bitwise.c │ │ │ │ │ └── framing.c │ │ │ │ └── win32 │ │ │ │ │ ├── VS2003 │ │ │ │ │ ├── libogg │ │ │ │ │ │ └── libogg.vcproj │ │ │ │ │ └── ogg.sln │ │ │ │ │ ├── VS2005 │ │ │ │ │ ├── libogg_dynamic.sln │ │ │ │ │ ├── libogg_dynamic.vcproj │ │ │ │ │ ├── libogg_static.sln │ │ │ │ │ └── libogg_static.vcproj │ │ │ │ │ ├── VS2008 │ │ │ │ │ ├── libogg_dynamic.sln │ │ │ │ │ ├── libogg_dynamic.vcproj │ │ │ │ │ ├── libogg_static.sln │ │ │ │ │ └── libogg_static.vcproj │ │ │ │ │ ├── VS2010 │ │ │ │ │ ├── libogg_dynamic.sln │ │ │ │ │ ├── libogg_dynamic.vcxproj │ │ │ │ │ ├── libogg_static.sln │ │ │ │ │ └── libogg_static.vcxproj │ │ │ │ │ ├── VS6 │ │ │ │ │ ├── build_ogg_dynamic.bat │ │ │ │ │ ├── build_ogg_dynamic_debug.bat │ │ │ │ │ ├── build_ogg_static.bat │ │ │ │ │ ├── build_ogg_static_debug.bat │ │ │ │ │ ├── ogg.dsw │ │ │ │ │ ├── ogg_dynamic.dsp │ │ │ │ │ └── ogg_static.dsp │ │ │ │ │ └── ogg.def │ │ │ ├── libvorbis-1.3.3.patch │ │ │ ├── libvorbis-1.3.3 │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Vorbis_I_spec.cfg │ │ │ │ │ ├── Vorbis_I_spec.css │ │ │ │ │ ├── Vorbis_I_spec.html │ │ │ │ │ ├── Vorbis_I_spec.pdf │ │ │ │ │ ├── Vorbis_I_spec.tex │ │ │ │ │ ├── a1-encapsulation-ogg.tex │ │ │ │ │ ├── a2-encapsulation-rtp.tex │ │ │ │ │ ├── components.png │ │ │ │ │ ├── eightphase.png │ │ │ │ │ ├── evenlsp.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 │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── lspmap.png │ │ │ │ │ ├── oddlsp.png │ │ │ │ │ ├── oggstream.html │ │ │ │ │ ├── programming.html │ │ │ │ │ ├── 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 │ │ │ │ │ ├── vorbis.html │ │ │ │ │ ├── vorbisenc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── vorbisword2.png │ │ │ │ │ ├── wait.png │ │ │ │ │ ├── white-xifish.png │ │ │ │ │ ├── window1.png │ │ │ │ │ ├── window2.png │ │ │ │ │ └── xifish.pdf │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── chaining_example.c │ │ │ │ │ ├── decoder_example.c │ │ │ │ │ ├── encoder_example.c │ │ │ │ │ ├── frameview.pl │ │ │ │ │ ├── seeking_example.c │ │ │ │ │ └── vorbisfile_example.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── vorbis │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ ├── install-sh │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── analysis.c │ │ │ │ │ ├── backends.h │ │ │ │ │ ├── barkmel.c │ │ │ │ │ ├── bitrate.c │ │ │ │ │ ├── bitrate.h │ │ │ │ │ ├── block.c │ │ │ │ │ ├── books │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── coupled │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ │ │ └── res_books_stereo.h │ │ │ │ │ │ ├── floor │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── floor_books.h │ │ │ │ │ │ └── uncoupled │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── 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.h │ │ │ │ │ ├── modes │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── 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 │ │ │ │ ├── libvorbis.spec.in │ │ │ │ ├── ltmain.sh │ │ │ │ ├── m4 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── add_cflags.m4 │ │ │ │ │ ├── ogg.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── macos │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── strdup.c │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── decoder_example.mcp │ │ │ │ │ ├── encoder_example.mcp │ │ │ │ │ ├── libvorbis.mcp │ │ │ │ │ ├── libvorbis.mcp.exp │ │ │ │ │ ├── libvorbisenc.mcp │ │ │ │ │ ├── libvorbisenc.mcp.exp │ │ │ │ │ ├── libvorbisfile.mcp │ │ │ │ │ ├── libvorbisfile.mcp.exp │ │ │ │ │ └── vorbis.mcp │ │ │ │ ├── macosx │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Vorbis.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── missing │ │ │ │ ├── symbian │ │ │ │ │ ├── bld.inf │ │ │ │ │ ├── config.h │ │ │ │ │ └── vorbis.mmp │ │ │ │ ├── test │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── test.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── util.h │ │ │ │ │ ├── write_read.c │ │ │ │ │ └── write_read.h │ │ │ │ ├── todo.txt │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── 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 │ │ │ ├── libvorbisidec-1.2.1.patch │ │ │ ├── libvorbisidec-1.2.1 │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── Version_script.in │ │ │ │ ├── acinclude │ │ │ │ │ ├── ogg.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── asm_arm.h │ │ │ │ ├── backends.h │ │ │ │ ├── block.c │ │ │ │ ├── block.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── config_types.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── OggVorbis_File.html │ │ │ │ │ ├── build.html │ │ │ │ │ ├── callbacks.html │ │ │ │ │ ├── datastructures.html │ │ │ │ │ ├── decoding.html │ │ │ │ │ ├── diff.html │ │ │ │ │ ├── example.html │ │ │ │ │ ├── fileinfo.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── initialization.html │ │ │ │ │ ├── ov_bitrate.html │ │ │ │ │ ├── ov_bitrate_instant.html │ │ │ │ │ ├── ov_callbacks.html │ │ │ │ │ ├── ov_clear.html │ │ │ │ │ ├── ov_comment.html │ │ │ │ │ ├── ov_info.html │ │ │ │ │ ├── ov_open.html │ │ │ │ │ ├── ov_open_callbacks.html │ │ │ │ │ ├── ov_pcm_seek.html │ │ │ │ │ ├── ov_pcm_seek_page.html │ │ │ │ │ ├── ov_pcm_tell.html │ │ │ │ │ ├── ov_pcm_total.html │ │ │ │ │ ├── ov_raw_seek.html │ │ │ │ │ ├── ov_raw_tell.html │ │ │ │ │ ├── ov_raw_total.html │ │ │ │ │ ├── ov_read.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_page.html │ │ │ │ │ ├── ov_time_tell.html │ │ │ │ │ ├── ov_time_total.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── reference.html │ │ │ │ │ ├── return.html │ │ │ │ │ ├── seeking.html │ │ │ │ │ ├── threads.html │ │ │ │ │ ├── vorbis_comment.html │ │ │ │ │ └── vorbis_info.html │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── info.c │ │ │ │ ├── install-sh │ │ │ │ ├── iseeking_example.c │ │ │ │ ├── ivorbiscodec.h │ │ │ │ ├── ivorbisfile.h │ │ │ │ ├── ivorbisfile_example.c │ │ │ │ ├── lsp_lookup.h │ │ │ │ ├── ltmain.sh │ │ │ │ ├── mapping0.c │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── mdct_lookup.h │ │ │ │ ├── misc.h │ │ │ │ ├── missing │ │ │ │ ├── os.h │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res012.c │ │ │ │ ├── sharedbook.c │ │ │ │ ├── synthesis.c │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── vorbisidec.pc.in │ │ │ │ ├── win32 │ │ │ │ │ ├── VS2005 │ │ │ │ │ │ └── libtremor │ │ │ │ │ │ │ └── libtremor.vcproj │ │ │ │ │ └── VS2008 │ │ │ │ │ │ └── libtremor │ │ │ │ │ │ └── libtremor.vcproj │ │ │ │ ├── window.c │ │ │ │ ├── window.h │ │ │ │ └── window_lookup.h │ │ │ └── smpeg2-2.0.0 │ │ │ │ ├── Android.mk │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── MPEG.cpp │ │ │ │ ├── MPEG.h │ │ │ │ ├── MPEGaction.h │ │ │ │ ├── MPEGaudio.h │ │ │ │ ├── MPEGerror.h │ │ │ │ ├── MPEGframe.h │ │ │ │ ├── MPEGlist.cpp │ │ │ │ ├── MPEGlist.h │ │ │ │ ├── MPEGring.cpp │ │ │ │ ├── MPEGring.h │ │ │ │ ├── MPEGstream.cpp │ │ │ │ ├── MPEGstream.h │ │ │ │ ├── MPEGsystem.cpp │ │ │ │ ├── MPEGsystem.h │ │ │ │ ├── MPEGvideo.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── README.SDL_mixer │ │ │ │ ├── TODO │ │ │ │ ├── VisualC.zip │ │ │ │ ├── acinclude │ │ │ │ ├── gtk-2.0.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltdl.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ ├── pkg.m4 │ │ │ │ ├── sdl2.m4 │ │ │ │ └── socklen_t.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── audio │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── MPEGaudio.cpp │ │ │ │ ├── README │ │ │ │ ├── README.LIB │ │ │ │ ├── bitwindow.cpp │ │ │ │ ├── filter.cpp │ │ │ │ ├── filter_2.cpp │ │ │ │ ├── hufftable.cpp │ │ │ │ ├── mpeglayer1.cpp │ │ │ │ ├── mpeglayer2.cpp │ │ │ │ ├── mpeglayer3.cpp │ │ │ │ ├── mpegtable.cpp │ │ │ │ └── mpegtoraw.cpp │ │ │ │ ├── autogen.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── g++-fat.sh │ │ │ │ ├── gcc-fat.sh │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── plaympeg.1 │ │ │ │ ├── plaympeg.c │ │ │ │ ├── smpeg.cpp │ │ │ │ ├── smpeg.h │ │ │ │ ├── smpeg2-config.in │ │ │ │ ├── smpeg2.m4 │ │ │ │ ├── smpeg2.spec │ │ │ │ ├── smpeg2.spec.in │ │ │ │ └── video │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── MPEGvideo.cpp │ │ │ │ ├── README │ │ │ │ ├── decoders.cpp │ │ │ │ ├── decoders.h │ │ │ │ ├── dither.h │ │ │ │ ├── floatdct.cpp │ │ │ │ ├── gdith.cpp │ │ │ │ ├── jrevdct.cpp │ │ │ │ ├── mmxflags_asm.S │ │ │ │ ├── mmxidct_asm.S │ │ │ │ ├── motionvec.cpp │ │ │ │ ├── parseblock.cpp │ │ │ │ ├── proto.h │ │ │ │ ├── readfile.cpp │ │ │ │ ├── util.cpp │ │ │ │ ├── util.h │ │ │ │ ├── video.cpp │ │ │ │ └── video.h │ │ ├── fluidsynth.c │ │ ├── fluidsynth.h │ │ ├── gcc-fat.sh │ │ ├── load_aiff.c │ │ ├── load_aiff.h │ │ ├── load_flac.c │ │ ├── load_flac.h │ │ ├── load_mp3.c │ │ ├── load_mp3.h │ │ ├── load_ogg.c │ │ ├── load_ogg.h │ │ ├── load_voc.c │ │ ├── load_voc.h │ │ ├── mixer.c │ │ ├── music.c │ │ ├── music_cmd.c │ │ ├── music_cmd.h │ │ ├── music_flac.c │ │ ├── music_flac.h │ │ ├── music_mad.c │ │ ├── music_mad.h │ │ ├── music_mod.c │ │ ├── music_mod.h │ │ ├── music_modplug.c │ │ ├── music_modplug.h │ │ ├── music_ogg.c │ │ ├── music_ogg.h │ │ ├── native_midi │ │ │ ├── native_midi.h │ │ │ ├── native_midi_common.c │ │ │ ├── native_midi_common.h │ │ │ ├── native_midi_haiku.cpp │ │ │ ├── native_midi_mac.c │ │ │ ├── native_midi_macosx.c │ │ │ └── native_midi_win32.c │ │ ├── playmus.c │ │ ├── playwave.c │ │ ├── timidity │ │ │ ├── COPYING │ │ │ ├── FAQ │ │ │ ├── README │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── ctrlmode.c │ │ │ ├── ctrlmode.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── instrum.c │ │ │ ├── instrum.h │ │ │ ├── mix.c │ │ │ ├── mix.h │ │ │ ├── output.c │ │ │ ├── output.h │ │ │ ├── playmidi.c │ │ │ ├── playmidi.h │ │ │ ├── readmidi.c │ │ │ ├── readmidi.h │ │ │ ├── resample.c │ │ │ ├── resample.h │ │ │ ├── sdl_a.c │ │ │ ├── sdl_c.c │ │ │ ├── tables.c │ │ │ ├── tables.h │ │ │ ├── timidity.c │ │ │ └── timidity.h │ │ ├── version.rc │ │ ├── wavestream.c │ │ └── wavestream.h │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mixer.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── lib │ │ ├── SDL2.lib │ │ ├── SDL2_mixer.lib │ │ ├── SDL2main.lib │ │ ├── native_midi.lib │ │ ├── timidity.lib │ │ └── x86 │ │ ├── LICENSE.FLAC.txt │ │ ├── LICENSE.modplug.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.smpeg.txt │ │ ├── SDL2.dll │ │ ├── SDL2_mixer.dll │ │ ├── libFLAC-8.dll │ │ ├── libmodplug-1.dll │ │ ├── libogg-0.dll │ │ ├── libvorbis-0.dll │ │ ├── libvorbisfile-3.dll │ │ └── smpeg2.dll ├── glad │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── copying.txt │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_noise.hpp │ │ ├── func_noise.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ ├── type_vec4_avx.inl │ │ ├── type_vec4_avx2.inl │ │ └── type_vec4_sse2.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ ├── vec1.hpp │ │ └── vec1.inl │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extented_min_max.hpp │ │ ├── extented_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── multiple.hpp │ │ ├── multiple.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── lua │ ├── C++CompilingVisualStudio.bat │ ├── Compiling.txt │ ├── include │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ └── lualib.h │ ├── lib │ │ ├── lua.lib │ │ └── x86 │ │ │ └── lua.dll │ └── lua-5.3.2 │ │ ├── Makefile │ │ ├── README │ │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ │ └── 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 │ │ ├── lua.c │ │ ├── lua.exp │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac │ │ ├── luac.c │ │ ├── luac.exp │ │ ├── luac.lib │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── poly2tri │ ├── AUTHORS │ ├── LICENSE │ ├── README │ ├── poly2tri │ │ ├── common │ │ │ ├── shapes.cc │ │ │ ├── shapes.h │ │ │ └── utils.h │ │ ├── poly2tri.h │ │ └── sweep │ │ │ ├── advancing_front.cc │ │ │ ├── advancing_front.h │ │ │ ├── cdt.cc │ │ │ ├── cdt.h │ │ │ ├── sweep.cc │ │ │ ├── sweep.h │ │ │ ├── sweep_context.cc │ │ │ └── sweep_context.h │ ├── testbed │ │ ├── data │ │ │ ├── 2.dat │ │ │ ├── bird.dat │ │ │ ├── custom.dat │ │ │ ├── debug.dat │ │ │ ├── debug2.dat │ │ │ ├── diamond.dat │ │ │ ├── dude.dat │ │ │ ├── funny.dat │ │ │ ├── kzer-za.dat │ │ │ ├── nazca_heron.dat │ │ │ ├── nazca_monkey.dat │ │ │ ├── polygon.dae │ │ │ ├── sketchup.dat │ │ │ ├── star.dat │ │ │ ├── strange.dat │ │ │ ├── tank.dat │ │ │ └── test.dat │ │ └── main.cc │ ├── waf │ └── wscript └── tinyobjloader │ ├── COPYING │ ├── README.md │ ├── tiny_obj_loader.cc │ └── tiny_obj_loader.h ├── resources ├── building.dds ├── building.obj ├── building2.dds ├── scripts │ ├── main.lua │ └── test.lua ├── shaders │ ├── basic.f.glsl │ ├── basic.v.glsl │ ├── shaded.f.glsl │ ├── shaded.v.glsl │ ├── shadedF.f.glsl │ ├── shadedF.v.glsl │ ├── textured.f.glsl │ └── textured.v.glsl ├── soundEffect.ogg ├── suzanne.dds ├── suzanne.obj ├── test.bmp ├── texasradiofish_-_Funk_n_Jazz.ogg └── texasradiofish_-_Funk_n_Jazz_copying.txt ├── src ├── Camera.cpp ├── Camera.hpp ├── Definitions.hpp ├── Entity.cpp ├── Entity.hpp ├── EntityManager.cpp ├── EntityManager.hpp ├── GPUBuffer.hpp ├── Game.cpp ├── Game.hpp ├── IncludeLuaIntf.hpp ├── InputManager.cpp ├── InputManager.hpp ├── Light.cpp ├── Light.hpp ├── Object.cpp ├── Object.hpp ├── ObjectGeometry.cpp ├── ObjectGeometry.hpp ├── ObjectGeometryGroup.cpp ├── ObjectGeometryGroup.hpp ├── PhysicsBody.cpp ├── PhysicsBody.hpp ├── ResourceManager.cpp ├── ResourceManager.hpp ├── SDL3D.cpp ├── SDL3D.hpp ├── Script.cpp ├── Script.hpp ├── ShadedObject.cpp ├── ShadedObject.hpp ├── Shader.cpp ├── Shader.hpp ├── SimpleTimer.cpp ├── SimpleTimer.hpp ├── Sound.cpp ├── Sound.hpp ├── Texture.cpp ├── Texture.hpp ├── TexturedObject.cpp ├── TexturedObject.hpp ├── Utils.cpp └── Utils.hpp └── tools ├── DDS_Compression_Windows.txt ├── Frameworkify ├── LICENSE └── frameworkify.py └── SDL3D_DDS_Texture_Compressor.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/README.md -------------------------------------------------------------------------------- /docs/Coding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/Coding.txt -------------------------------------------------------------------------------- /docs/Compiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/Compiling.txt -------------------------------------------------------------------------------- /docs/Dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/Dependencies.txt -------------------------------------------------------------------------------- /docs/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/Notes.txt -------------------------------------------------------------------------------- /docs/SpecialThanks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/SpecialThanks.txt -------------------------------------------------------------------------------- /docs/TextureCompression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/TextureCompression.txt -------------------------------------------------------------------------------- /docs/Todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/Todo.txt -------------------------------------------------------------------------------- /docs/Troubleshooting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/docs/Troubleshooting.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Box2D.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Common/b2Draw.cpp -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Common/b2Math.cpp -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Common/b2Timer.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Dynamics/b2Body.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Box2D/UseBox2D.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Box2D/UseBox2D.cmake -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Box2D.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/Box2D.sdf -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Box2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/Box2D.sln -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Box2D/Box2D.dir/Release/Box2D.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Box2D/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/CMakeCache.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/CMakeFiles/ba63aef4d4a1ea520a95b31766ca8c77/generate.stamp.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/HelloWorld/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Readme.txt: -------------------------------------------------------------------------------- 1 | You should use CMake to target this directory for build files. -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Testbed/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Testbed/Testbed.dir/Release/Testbed.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/Win32/Release/ZERO_CHECK/ZERO_CHECK.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/glew/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/glew/glew.dir/Release/glew.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/glew/glew.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/glew/glew.vcxproj -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/glfw/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/glfw/glfw.dir/Release/glfw.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/glfw/glfw.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/glfw/glfw.vcxproj -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/vs2013/Box2D.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/vs2013/Box2D.sdf -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/vs2013/Box2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Build/vs2013/Box2D.sln -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Build/vs2013/obj/x32/Debug/Box2D/Box2D.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Building.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Building.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Changes.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Documentation/Doxyfile -------------------------------------------------------------------------------- /lib/Box2D/Box2D/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/License.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Readme.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/AddPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/AddPair.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Bridge.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Car.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Chain.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Dominos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Dominos.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Gears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Gears.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Mobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Mobile.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Pinball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Pinball.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Pulleys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Pulleys.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Pyramid.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/RayCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/RayCast.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Rope.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Tiles.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Tumbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Tumbler.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/Testbed/Tests/Web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/Testbed/Tests/Web.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glew/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glew/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glew/glew.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glew/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glew/glew.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glew/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glew/glxew.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glew/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glew/wglew.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/clipboard.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_clipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_clipboard.m -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_gamma.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_init.m -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_joystick.m -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_monitor.m -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_platform.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_time.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/cocoa_window.m -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/config.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/context.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/egl_context.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/egl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/egl_platform.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/gamma.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/glext.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/glfw3.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/glfw3native.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/glx_context.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/glx_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/glx_platform.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/glxext.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/init.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/input.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/internal.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/joystick.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/monitor.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/nsgl_context.m -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/nsgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/nsgl_platform.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/time.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/wgl_context.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/wgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/wgl_platform.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/wglext.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_clipboard.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_gamma.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_init.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_joystick.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_monitor.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_platform.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_time.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/win32_window.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/window.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_clipboard.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_gamma.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_init.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_joystick.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_monitor.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_platform.h -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_time.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_unicode.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/glfw/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/glfw/x11_window.c -------------------------------------------------------------------------------- /lib/Box2D/Box2D/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/Box2D/premake4.lua -------------------------------------------------------------------------------- /lib/Box2D/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/License.txt -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D.h -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D/Box2D.h -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /lib/Box2D/include/Box2D/UseBox2D.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Box2D/UseBox2D.cmake -------------------------------------------------------------------------------- /lib/Box2D/include/Directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/include/Directories.txt -------------------------------------------------------------------------------- /lib/Box2D/lib/debug/Box2D.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/lib/debug/Box2D.lib -------------------------------------------------------------------------------- /lib/Box2D/lib/debug/Box2D.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/lib/debug/Box2D.pdb -------------------------------------------------------------------------------- /lib/Box2D/lib/release/Box2D.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/Box2D/lib/release/Box2D.lib -------------------------------------------------------------------------------- /lib/LuaIntf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LICENSE -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/LuaCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/LuaCompat.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/LuaContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/LuaContext.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/LuaIntf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/LuaIntf.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/LuaRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/LuaRef.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/LuaState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/LuaState.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/QtLuaIntf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/QtLuaIntf.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/impl/CppArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/impl/CppArg.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/impl/CppBindClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/impl/CppBindClass.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/impl/CppFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/impl/CppFunction.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/impl/CppInvoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/impl/CppInvoke.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/impl/CppObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/impl/CppObject.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/impl/LuaException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/impl/LuaException.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/impl/LuaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/impl/LuaType.h -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/src/CppFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/src/CppFunction.cpp -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/src/CppObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/src/CppObject.cpp -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/src/LuaCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/src/LuaCompat.cpp -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/src/LuaRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/src/LuaRef.cpp -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/src/LuaState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/src/LuaState.cpp -------------------------------------------------------------------------------- /lib/LuaIntf/LuaIntf/src/QtLuaIntf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/LuaIntf/src/QtLuaIntf.cpp -------------------------------------------------------------------------------- /lib/LuaIntf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/LuaIntf/README.md -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/Android.mk -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/BUGS.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/COPYING.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/CREDITS.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/INSTALL.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/Makefile.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/Makefile.minimal -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/Makefile.pandora -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/Makefile.psp -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/Makefile.wiz -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/README-SDL.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/README.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/SDL2.spec -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/SDL2.spec.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/TODO.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/VisualC.html -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/VisualC/SDL.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/VisualC/SDL.sdf -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/VisualC/SDL.sln -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/VisualC/SDL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/VisualC/SDL.suo -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/VisualC/clean.sh -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/WhatsNew.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/acinclude/alsa.m4 -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/acinclude/esd.m4 -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/autogen.sh -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/cmake/macros.cmake -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/configure -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/configure.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/debian/changelog -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/debian/control -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/debian/copyright -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/debian/docs -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/debian/rules -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/docs/README-hg.md -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/docs/README-ios.md -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/docs/README-nacl.md -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/docs/README-psp.md -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/docs/README.md -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/docs/doxyfile -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_audio.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_bits.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_egl.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_error.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_hints.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_log.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_main.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_mouse.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_mutex.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_name.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_power.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_quit.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_rect.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_rwops.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_shape.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_syswm.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_test.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_timer.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_touch.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_types.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/include/SDL_video.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/sdl2-config.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/sdl2.m4 -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/sdl2.pc.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL_assert.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL_assert_c.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL_error.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL_error_c.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL_hints.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL_internal.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/SDL_log.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/e_atan2.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/e_log.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/e_pow.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/k_cos.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/k_sin.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/k_tan.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/s_atan.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/s_cos.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/s_fabs.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/s_floor.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/s_sin.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/libm/s_tan.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/render/mmx.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/src/video/SDL_egl.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/COPYING -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/Makefile.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/README -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/acinclude.m4 -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/aclocal.m4 -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/autogen.sh -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/axis.bmp -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/button.bmp -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/checkkeys.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/configure -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/configure.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/gcc-fat.sh -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/icon.bmp -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/loopwave.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/moose.dat -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/nacl/Makefile -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/nacl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/nacl/common.js -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/picture.xbm -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/sample.bmp -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/sample.wav -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testatomic.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testdraw2.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testdropfile.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testerror.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testfile.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testgesture.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testgl2.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testgles.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testgles2.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testhaptic.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testhotplug.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testiconv.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testime.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testjoystick.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testkeys.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testloadso.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testlock.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testmessage.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testnative.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testnative.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testoverlay2.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testplatform.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testpower.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testrelative.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testresample.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testrumble.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testscale.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testsem.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testshader.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testshape.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testsprite2.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testthread.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testtimer.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testver.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testviewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testviewport.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/testwm2.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2-2.0.4/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2-2.0.4/test/utf8.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/Android.mk -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/CHANGES.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/COPYING.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/Makefile.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/README.txt -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/SDL_mixer.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/Xcode/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/Xcode/package -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/autogen.sh -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/configure -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/configure.in -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/debian/docs: -------------------------------------------------------------------------------- 1 | README.txt 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/debian/rules -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/debian/watch -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/dynamic_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/dynamic_mod.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/dynamic_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/dynamic_mod.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/dynamic_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/dynamic_mp3.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/dynamic_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/dynamic_mp3.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/dynamic_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/dynamic_ogg.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/dynamic_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/dynamic_ogg.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/flac-1.2.1/test/cuesheets/bad.134.TRACK_missing_number.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 3 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/flac-1.2.1/test/cuesheets/bad.139.TRACK_missing_type.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 01 3 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/flac-1.2.1/test/cuesheets/bad.140.no_TRACKs.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/flac-1.2.1/test/cuesheets/bad.200.FLAC_leadin_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/flac-1.2.1/test/cuesheets/bad.201.FLAC_leadin_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in thhpt! 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/flac-1.2.1/test/cuesheets/bad.231.FLAC_leadout_missing_track.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/flac-1.2.1/test/cuesheets/bad.233.FLAC_leadout_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/libmikmod-3.1.12/dlapi/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = dl_hpux.c dlfcn.h 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/libmikmod-3.1.12/include/mikmod_build.h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/libmikmod-3.1.12/macintosh/mikmod_build.h: -------------------------------------------------------------------------------- 1 | #include "mikmod.h" -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/libmikmod-3.1.12/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/external/libmodplug-0.8.8.4/COPYING: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/fluidsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/fluidsynth.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/fluidsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/fluidsynth.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/gcc-fat.sh -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_aiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_aiff.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_aiff.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_flac.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_flac.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_mp3.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_mp3.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_ogg.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_ogg.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_voc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_voc.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/load_voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/load_voc.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/mixer.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_cmd.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_cmd.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_flac.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_flac.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_mad.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_mad.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_mod.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_mod.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_ogg.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/music_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/music_ogg.h -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/playmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/playmus.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/playwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/playwave.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/timidity/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/timidity/FAQ -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/version.rc -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/wavestream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/wavestream.c -------------------------------------------------------------------------------- /lib/SDL2/SDL2_mixer-2.0.1/wavestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/SDL2_mixer-2.0.1/wavestream.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_blendmode.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_clipboard.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config.h.in -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config_android.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config_psp.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_copying.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_filesystem.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_joystick.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_keyboard.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_messagebox.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_mixer.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_opengles.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_opengles2.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_platform.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_revision.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_scancode.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_assert.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_common.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_compare.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_font.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_harness.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_images.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_log.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_md5.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_test_random.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /lib/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /lib/SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /lib/SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/include/close_code.h -------------------------------------------------------------------------------- /lib/SDL2/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/SDL2.lib -------------------------------------------------------------------------------- /lib/SDL2/lib/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/SDL2_mixer.lib -------------------------------------------------------------------------------- /lib/SDL2/lib/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/SDL2main.lib -------------------------------------------------------------------------------- /lib/SDL2/lib/native_midi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/native_midi.lib -------------------------------------------------------------------------------- /lib/SDL2/lib/timidity.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/timidity.lib -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/LICENSE.smpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/LICENSE.smpeg.txt -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/SDL2_mixer.dll -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/libFLAC-8.dll -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/libmodplug-1.dll -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/libogg-0.dll -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/libvorbis-0.dll -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/libvorbisfile-3.dll -------------------------------------------------------------------------------- /lib/SDL2/lib/x86/smpeg2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/SDL2/lib/x86/smpeg2.dll -------------------------------------------------------------------------------- /lib/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /lib/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glad/include/glad/glad.h -------------------------------------------------------------------------------- /lib/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glad/src/glad.c -------------------------------------------------------------------------------- /lib/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/common.hpp -------------------------------------------------------------------------------- /lib/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/copying.txt -------------------------------------------------------------------------------- /lib/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/_features.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /lib/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /lib/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_common.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /lib/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/glm.cpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /lib/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/precision.hpp -------------------------------------------------------------------------------- /lib/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/setup.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_half.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4_avx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec4_avx.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4_avx2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec4_avx2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4_sse2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/detail/type_vec4_sse2.inl -------------------------------------------------------------------------------- /lib/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/exponential.hpp -------------------------------------------------------------------------------- /lib/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/ext.hpp -------------------------------------------------------------------------------- /lib/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/fwd.hpp -------------------------------------------------------------------------------- /lib/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/geometric.hpp -------------------------------------------------------------------------------- /lib/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/glm.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /lib/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/constants.inl -------------------------------------------------------------------------------- /lib/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /lib/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/integer.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /lib/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/noise.inl -------------------------------------------------------------------------------- /lib/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/packing.inl -------------------------------------------------------------------------------- /lib/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/random.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/random.inl -------------------------------------------------------------------------------- /lib/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /lib/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/round.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/round.inl -------------------------------------------------------------------------------- /lib/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /lib/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /lib/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /lib/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /lib/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /lib/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/bit.inl -------------------------------------------------------------------------------- /lib/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /lib/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /lib/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /lib/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/common.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/common.inl -------------------------------------------------------------------------------- /lib/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /lib/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /lib/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /lib/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/extend.inl -------------------------------------------------------------------------------- /lib/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /lib/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /lib/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/integer.inl -------------------------------------------------------------------------------- /lib/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /lib/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/io.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/io.inl -------------------------------------------------------------------------------- /lib/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /lib/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /lib/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /lib/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/norm.inl -------------------------------------------------------------------------------- /lib/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/normal.inl -------------------------------------------------------------------------------- /lib/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /lib/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /lib/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /lib/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /lib/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /lib/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /lib/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/projection.inl -------------------------------------------------------------------------------- /lib/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/range.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /lib/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /lib/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/spline.inl -------------------------------------------------------------------------------- /lib/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /lib/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /lib/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/transform.inl -------------------------------------------------------------------------------- /lib/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /lib/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /lib/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /lib/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /lib/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /lib/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/integer.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/matrix.hpp -------------------------------------------------------------------------------- /lib/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/packing.hpp -------------------------------------------------------------------------------- /lib/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/vec2.hpp -------------------------------------------------------------------------------- /lib/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/vec3.hpp -------------------------------------------------------------------------------- /lib/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/vec4.hpp -------------------------------------------------------------------------------- /lib/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/glm/vector_relational.hpp -------------------------------------------------------------------------------- /lib/lua/C++CompilingVisualStudio.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/C++CompilingVisualStudio.bat -------------------------------------------------------------------------------- /lib/lua/Compiling.txt: -------------------------------------------------------------------------------- 1 | You must (or should) compile lua as C++ code! -------------------------------------------------------------------------------- /lib/lua/include/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/include/lauxlib.h -------------------------------------------------------------------------------- /lib/lua/include/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/include/lua.h -------------------------------------------------------------------------------- /lib/lua/include/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/include/luaconf.h -------------------------------------------------------------------------------- /lib/lua/include/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/include/lualib.h -------------------------------------------------------------------------------- /lib/lua/lib/lua.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lib/lua.lib -------------------------------------------------------------------------------- /lib/lua/lib/x86/lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lib/x86/lua.dll -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/Makefile -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/README -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/contents.html -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/index.css -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/logo.gif -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/lua.1 -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/lua.css -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/luac.1 -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/manual.css -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/manual.html -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/doc/readme.html -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/Makefile -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lapi.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lapi.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lauxlib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lauxlib.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lbaselib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lbitlib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lcode.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lcode.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lcorolib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lctype.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lctype.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ldblib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ldebug.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ldebug.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ldo.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ldo.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ldump.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lfunc.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lfunc.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lgc.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lgc.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/linit.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/liolib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/llex.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/llex.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/llimits.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lmathlib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lmem.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lmem.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/loadlib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lobject.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lobject.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lopcodes.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lopcodes.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/loslib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lparser.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lparser.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lprefix.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lstate.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lstate.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lstring.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lstring.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lstrlib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ltable.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ltable.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ltablib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ltm.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/ltm.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lua -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lua.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lua.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lua.exp -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lua.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lua.hpp -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/luac -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/luac.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/luac.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/luac.exp -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/luac.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/luac.lib -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/luaconf.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lualib.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lundump.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lundump.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lutf8lib.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lvm.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lvm.h -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lzio.c -------------------------------------------------------------------------------- /lib/lua/lua-5.3.2/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/lua/lua-5.3.2/src/lzio.h -------------------------------------------------------------------------------- /lib/poly2tri/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/AUTHORS -------------------------------------------------------------------------------- /lib/poly2tri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/LICENSE -------------------------------------------------------------------------------- /lib/poly2tri/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/README -------------------------------------------------------------------------------- /lib/poly2tri/poly2tri/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/poly2tri/common/utils.h -------------------------------------------------------------------------------- /lib/poly2tri/poly2tri/poly2tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/poly2tri/poly2tri.h -------------------------------------------------------------------------------- /lib/poly2tri/poly2tri/sweep/cdt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/poly2tri/sweep/cdt.cc -------------------------------------------------------------------------------- /lib/poly2tri/poly2tri/sweep/cdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/poly2tri/sweep/cdt.h -------------------------------------------------------------------------------- /lib/poly2tri/poly2tri/sweep/sweep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/poly2tri/sweep/sweep.cc -------------------------------------------------------------------------------- /lib/poly2tri/poly2tri/sweep/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/poly2tri/sweep/sweep.h -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/2.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/bird.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/bird.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/custom.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/custom.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/debug.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/debug.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/debug2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/debug2.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/dude.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/dude.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/funny.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/funny.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/star.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/star.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/tank.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/tank.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/data/test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/data/test.dat -------------------------------------------------------------------------------- /lib/poly2tri/testbed/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/testbed/main.cc -------------------------------------------------------------------------------- /lib/poly2tri/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/waf -------------------------------------------------------------------------------- /lib/poly2tri/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/poly2tri/wscript -------------------------------------------------------------------------------- /lib/tinyobjloader/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/tinyobjloader/COPYING -------------------------------------------------------------------------------- /lib/tinyobjloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/tinyobjloader/README.md -------------------------------------------------------------------------------- /lib/tinyobjloader/tiny_obj_loader.cc: -------------------------------------------------------------------------------- 1 | #define TINYOBJLOADER_IMPLEMENTATION 2 | #include "tiny_obj_loader.h" 3 | -------------------------------------------------------------------------------- /lib/tinyobjloader/tiny_obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/lib/tinyobjloader/tiny_obj_loader.h -------------------------------------------------------------------------------- /resources/building.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/building.dds -------------------------------------------------------------------------------- /resources/building.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/building.obj -------------------------------------------------------------------------------- /resources/building2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/building2.dds -------------------------------------------------------------------------------- /resources/scripts/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/scripts/main.lua -------------------------------------------------------------------------------- /resources/scripts/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/scripts/test.lua -------------------------------------------------------------------------------- /resources/shaders/basic.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/basic.f.glsl -------------------------------------------------------------------------------- /resources/shaders/basic.v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/basic.v.glsl -------------------------------------------------------------------------------- /resources/shaders/shaded.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/shaded.f.glsl -------------------------------------------------------------------------------- /resources/shaders/shaded.v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/shaded.v.glsl -------------------------------------------------------------------------------- /resources/shaders/shadedF.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/shadedF.f.glsl -------------------------------------------------------------------------------- /resources/shaders/shadedF.v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/shadedF.v.glsl -------------------------------------------------------------------------------- /resources/shaders/textured.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/textured.f.glsl -------------------------------------------------------------------------------- /resources/shaders/textured.v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/shaders/textured.v.glsl -------------------------------------------------------------------------------- /resources/soundEffect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/soundEffect.ogg -------------------------------------------------------------------------------- /resources/suzanne.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/suzanne.dds -------------------------------------------------------------------------------- /resources/suzanne.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/suzanne.obj -------------------------------------------------------------------------------- /resources/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/resources/test.bmp -------------------------------------------------------------------------------- /src/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Camera.cpp -------------------------------------------------------------------------------- /src/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Camera.hpp -------------------------------------------------------------------------------- /src/Definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Definitions.hpp -------------------------------------------------------------------------------- /src/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Entity.cpp -------------------------------------------------------------------------------- /src/Entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Entity.hpp -------------------------------------------------------------------------------- /src/EntityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/EntityManager.cpp -------------------------------------------------------------------------------- /src/EntityManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/EntityManager.hpp -------------------------------------------------------------------------------- /src/GPUBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/GPUBuffer.hpp -------------------------------------------------------------------------------- /src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Game.cpp -------------------------------------------------------------------------------- /src/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Game.hpp -------------------------------------------------------------------------------- /src/IncludeLuaIntf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/IncludeLuaIntf.hpp -------------------------------------------------------------------------------- /src/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/InputManager.cpp -------------------------------------------------------------------------------- /src/InputManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/InputManager.hpp -------------------------------------------------------------------------------- /src/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Light.cpp -------------------------------------------------------------------------------- /src/Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Light.hpp -------------------------------------------------------------------------------- /src/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Object.cpp -------------------------------------------------------------------------------- /src/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Object.hpp -------------------------------------------------------------------------------- /src/ObjectGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ObjectGeometry.cpp -------------------------------------------------------------------------------- /src/ObjectGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ObjectGeometry.hpp -------------------------------------------------------------------------------- /src/ObjectGeometryGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ObjectGeometryGroup.cpp -------------------------------------------------------------------------------- /src/ObjectGeometryGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ObjectGeometryGroup.hpp -------------------------------------------------------------------------------- /src/PhysicsBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/PhysicsBody.cpp -------------------------------------------------------------------------------- /src/PhysicsBody.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/PhysicsBody.hpp -------------------------------------------------------------------------------- /src/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ResourceManager.cpp -------------------------------------------------------------------------------- /src/ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ResourceManager.hpp -------------------------------------------------------------------------------- /src/SDL3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/SDL3D.cpp -------------------------------------------------------------------------------- /src/SDL3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/SDL3D.hpp -------------------------------------------------------------------------------- /src/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Script.cpp -------------------------------------------------------------------------------- /src/Script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Script.hpp -------------------------------------------------------------------------------- /src/ShadedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ShadedObject.cpp -------------------------------------------------------------------------------- /src/ShadedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/ShadedObject.hpp -------------------------------------------------------------------------------- /src/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Shader.cpp -------------------------------------------------------------------------------- /src/Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Shader.hpp -------------------------------------------------------------------------------- /src/SimpleTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/SimpleTimer.cpp -------------------------------------------------------------------------------- /src/SimpleTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/SimpleTimer.hpp -------------------------------------------------------------------------------- /src/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Sound.cpp -------------------------------------------------------------------------------- /src/Sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Sound.hpp -------------------------------------------------------------------------------- /src/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Texture.cpp -------------------------------------------------------------------------------- /src/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Texture.hpp -------------------------------------------------------------------------------- /src/TexturedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/TexturedObject.cpp -------------------------------------------------------------------------------- /src/TexturedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/TexturedObject.hpp -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/src/Utils.hpp -------------------------------------------------------------------------------- /tools/DDS_Compression_Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/tools/DDS_Compression_Windows.txt -------------------------------------------------------------------------------- /tools/Frameworkify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/tools/Frameworkify/LICENSE -------------------------------------------------------------------------------- /tools/Frameworkify/frameworkify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordcars/SDL3D/HEAD/tools/Frameworkify/frameworkify.py --------------------------------------------------------------------------------