├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── README.md ├── base64-1.0.0 ├── CMakeLists.txt ├── base64.cpp └── base64.h ├── bullet-2.82-r2704 ├── AUTHORS ├── BspDemo.bsp ├── BulletConfig.cmake.in ├── BulletLicense.txt ├── Bullet_User_Manual.pdf ├── CMakeLists.txt ├── CMakeLists.txt.original ├── COPYING ├── ChangeLog ├── Demos │ ├── AllBulletDemos │ │ ├── CMakeLists.txt │ │ ├── DemoEntries.cpp │ │ ├── DemoEntries.h │ │ ├── Main.cpp │ │ └── Makefile.am │ ├── BasicDemo │ │ ├── BasicDemo.cpp │ │ ├── BasicDemo.h │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Win32BasicDemo.cpp │ │ └── main.cpp │ ├── Benchmarks │ │ ├── BenchmarkDemo.cpp │ │ ├── BenchmarkDemo.h │ │ ├── CMakeLists.txt │ │ ├── Taru.mdl │ │ ├── Win32BenchmarkDemo.cpp │ │ ├── landscape.mdl │ │ ├── main.cpp │ │ └── premake4.lua │ ├── Box2dDemo │ │ ├── Box2dDemo.cpp │ │ ├── Box2dDemo.h │ │ ├── CMakeLists.txt │ │ ├── Win32Box2dDemo.cpp │ │ └── main.cpp │ ├── BspDemo │ │ ├── BspConverter.cpp │ │ ├── BspConverter.h │ │ ├── BspDemo.cpp │ │ ├── BspDemo.h │ │ ├── BspLoader.cpp │ │ ├── BspLoader.h │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── BulletDinoDemo │ │ ├── BulletDino.c │ │ └── CMakeLists.txt │ ├── BulletXmlImportDemo │ │ ├── BulletXmlImportDemo.cpp │ │ ├── BulletXmlImportDemo.h │ │ ├── CMakeLists.txt │ │ ├── Win32BulletXmlImportDemo.cpp │ │ ├── bullet_basic.xml │ │ ├── bulletser.xml │ │ └── main.cpp │ ├── CMakeLists.txt │ ├── CcdPhysicsDemo │ │ ├── CMakeLists.txt │ │ ├── CcdPhysicsDemo.cpp │ │ ├── CcdPhysicsDemo.h │ │ ├── Makefile.am │ │ └── main.cpp │ ├── CellSpuDemo │ │ ├── BasicDemo2.cpp │ │ └── BasicDemo2.h │ ├── CharacterDemo │ │ ├── CMakeLists.txt │ │ ├── CharacterDemo.cpp │ │ ├── CharacterDemo.h │ │ ├── DynamicCharacterController.cpp │ │ ├── DynamicCharacterController.h │ │ └── main.cpp │ ├── CollisionDemo │ │ ├── CMakeLists.txt │ │ ├── CollisionDemo.cpp │ │ └── CollisionDemo.h │ ├── CollisionInterfaceDemo │ │ ├── CMakeLists.txt │ │ ├── CollisionInterfaceDemo.cpp │ │ ├── CollisionInterfaceDemo.h │ │ ├── Win32CollisionInterfaceDemo.cpp │ │ └── main.cpp │ ├── ConcaveConvexcastDemo │ │ ├── CMakeLists.txt │ │ ├── ConcaveConvexcastDemo.cpp │ │ ├── ConcaveConvexcastDemo.h │ │ └── main.cpp │ ├── ConcaveDemo │ │ ├── CMakeLists.txt │ │ ├── ConcaveDemo.h │ │ ├── ConcavePhysicsDemo.cpp │ │ ├── Jamfile │ │ ├── Win32ConcaveDemo.cpp │ │ └── main.cpp │ ├── ConcaveRaycastDemo │ │ ├── CMakeLists.txt │ │ ├── ConcaveRaycastDemo.cpp │ │ ├── ConcaveRaycastDemo.h │ │ └── main.cpp │ ├── ConstraintDemo │ │ ├── CMakeLists.txt │ │ ├── ConstraintDemo.cpp │ │ ├── ConstraintDemo.h │ │ ├── Win32ConstraintDemo.cpp │ │ └── main.cpp │ ├── ContinuousConvexCollision │ │ ├── CMakeLists.txt │ │ ├── ContinuousConvexCollision.h │ │ └── ContinuousConvexCollisionDemo.cpp │ ├── ConvexDecompositionDemo │ │ ├── CMakeLists.txt │ │ ├── ConvexDecompositionDemo.cpp │ │ ├── ConvexDecompositionDemo.h │ │ ├── Win32ConvexDecompositionDemo.cpp │ │ ├── main.cpp │ │ └── testFile32Single.bullet │ ├── ConvexHullDistance │ │ ├── CMakeLists.txt │ │ └── ConvexHullDistanceDemo.cpp │ ├── DX11ClothDemo │ │ ├── CMakeLists.txt │ │ ├── DXUT │ │ │ ├── Core │ │ │ │ ├── DXUT.cpp │ │ │ │ ├── DXUT.h │ │ │ │ ├── DXUTDevice11.cpp │ │ │ │ ├── DXUTDevice11.h │ │ │ │ ├── DXUTDevice9.cpp │ │ │ │ ├── DXUTDevice9.h │ │ │ │ ├── DXUTmisc.cpp │ │ │ │ ├── DXUTmisc.h │ │ │ │ └── dpiaware.manifest │ │ │ └── Optional │ │ │ │ ├── DXUTLockFreePipe.h │ │ │ │ ├── DXUTShapes.cpp │ │ │ │ ├── DXUTShapes.h │ │ │ │ ├── DXUTcamera.cpp │ │ │ │ ├── DXUTcamera.h │ │ │ │ ├── DXUTgui.cpp │ │ │ │ ├── DXUTgui.h │ │ │ │ ├── DXUTguiIME.cpp │ │ │ │ ├── DXUTguiIME.h │ │ │ │ ├── DXUTres.cpp │ │ │ │ ├── DXUTres.h │ │ │ │ ├── DXUTsettingsdlg.cpp │ │ │ │ ├── DXUTsettingsdlg.h │ │ │ │ ├── ImeUi.cpp │ │ │ │ ├── ImeUi.h │ │ │ │ ├── SDKmesh.cpp │ │ │ │ ├── SDKmesh.h │ │ │ │ ├── SDKmisc.cpp │ │ │ │ ├── SDKmisc.h │ │ │ │ ├── SDKsound.cpp │ │ │ │ ├── SDKsound.h │ │ │ │ ├── SDKwavefile.cpp │ │ │ │ ├── SDKwavefile.h │ │ │ │ └── directx.ico │ │ ├── Media │ │ │ ├── Tiny │ │ │ │ ├── Tiny_skin.dds │ │ │ │ ├── tiny.sdkmesh │ │ │ │ └── tiny.x │ │ │ └── UI │ │ │ │ ├── DXUTShared.fx │ │ │ │ ├── Font.dds │ │ │ │ ├── arrow.x │ │ │ │ └── dxutcontrols.dds │ │ ├── amdFlag.bmp │ │ ├── atiFlag.bmp │ │ ├── btDirectComputeSupport.h │ │ ├── cap.h │ │ ├── capsule.h │ │ ├── cloth.h │ │ ├── cloth_renderer.cpp │ │ ├── cloth_renderer.fx │ │ ├── cloth_renderer.rc │ │ ├── cloth_renderer_PS.hlsl │ │ ├── cloth_renderer_VS.hlsl │ │ ├── cylinder.h │ │ ├── premake4.lua │ │ ├── resource.h │ │ ├── texture.bmp │ │ └── texture.png │ ├── DoublePrecisionDemo │ │ ├── CMakeLists.txt │ │ ├── DoublePrecisionDemo.cpp │ │ └── DoublePrecisionDemo.h │ ├── DynamicControlDemo │ │ ├── CMakeLists.txt │ │ ├── MotorDemo.cpp │ │ ├── MotorDemo.h │ │ └── main.cpp │ ├── EPAPenDepthDemo │ │ └── PenetrationTestBullet.cpp │ ├── FeatherstoneMultiBodyDemo │ │ ├── CMakeLists.txt │ │ ├── FeatherstoneMultiBodyDemo.cpp │ │ ├── FeatherstoneMultiBodyDemo.h │ │ ├── Makefile.am │ │ ├── Win32FeatherstoneMultiBodyDemo.cpp │ │ └── main.cpp │ ├── ForkLiftDemo │ │ ├── CMakeLists.txt │ │ ├── ForkLiftDemo.cpp │ │ ├── ForkLiftDemo.h │ │ ├── Makefile.am │ │ └── main.cpp │ ├── FractureDemo │ │ ├── CMakeLists.txt │ │ ├── FractureDemo.cpp │ │ ├── FractureDemo.h │ │ ├── Win32FractureDemo.cpp │ │ ├── btFractureBody.cpp │ │ ├── btFractureBody.h │ │ ├── btFractureDynamicsWorld.cpp │ │ ├── btFractureDynamicsWorld.h │ │ └── main.cpp │ ├── GenericJointDemo │ │ ├── CMakeLists.txt │ │ ├── GenericJointDemo.cpp │ │ ├── GenericJointDemo.h │ │ ├── Ragdoll.cpp │ │ ├── Ragdoll.h │ │ ├── Win32GenericJointDemo.cpp │ │ └── main.cpp │ ├── GimpactTestDemo │ │ ├── BunnyMesh.h │ │ ├── CMakeLists.txt │ │ ├── GimpactTestDemo.cpp │ │ ├── GimpactTestDemo.h │ │ ├── TorusMesh.h │ │ ├── Win32GimpactDemo.cpp │ │ └── main.cpp │ ├── GjkConvexCastDemo │ │ ├── CMakeLists.txt │ │ ├── LinearConvexCastDemo.cpp │ │ ├── LinearConvexCastDemo.h │ │ └── main.cpp │ ├── Gpu2dDemo │ │ ├── BasicDemo.cpp │ │ ├── BasicDemo.h │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── btGpuDemo2dCpuFunc.cpp │ │ ├── btGpuDemo2dSharedCode.h │ │ ├── btGpuDemo2dSharedDefs.h │ │ ├── btGpuDemo2dSharedTypes.h │ │ ├── btGpuDemoDynamicsWorld.cpp │ │ ├── btGpuDemoDynamicsWorld.h │ │ ├── btGpuDemoPairCache.cpp │ │ ├── btGpuDemoPairCache.h │ │ ├── main.cpp │ │ ├── oecakeLoader.cpp │ │ └── oecakeLoader.h │ ├── Gpu3dDemo │ │ ├── BasicDemo3d.cpp │ │ ├── BasicDemo3d.h │ │ ├── CMakeLists.txt │ │ ├── btGpuDemo3dCpuFunc.cpp │ │ ├── btGpuDemo3dSharedCode.h │ │ ├── btGpuDemo3dSharedDefs.h │ │ ├── btGpuDemo3dSharedTypes.h │ │ ├── btGpuDemoDynamicsWorld3D.cpp │ │ ├── btGpuDemoDynamicsWorld3D.h │ │ └── main.cpp │ ├── GyroscopicDemo │ │ ├── CMakeLists.txt │ │ ├── GyroscopicDemo.cpp │ │ ├── GyroscopicDemo.h │ │ ├── Win32GyroscopicDemo.cpp │ │ └── main.cpp │ ├── HelloWorld │ │ ├── CMakeLists.txt │ │ ├── HelloWorld.cpp │ │ └── premake4.lua │ ├── InternalEdgeDemo │ │ ├── CMakeLists.txt │ │ ├── InternalEdgeDemo.cpp │ │ ├── InternalEdgeDemo.h │ │ ├── Taru.mdl │ │ ├── Win32InternalEdgeDemo.cpp │ │ └── main.cpp │ ├── Makefile.am │ ├── MovingConcaveDemo │ │ ├── CMakeLists.txt │ │ ├── ConcaveDemo.h │ │ └── ConcavePhysicsDemo.cpp │ ├── MultiMaterialDemo │ │ ├── CMakeLists.txt │ │ ├── MultiMaterialDemo.cpp │ │ ├── MultiMaterialDemo.h │ │ └── main.cpp │ ├── MultiThreadedDemo │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── MultiThreadedDemo.cpp │ │ ├── MultiThreadedDemo.h │ │ └── main.cpp │ ├── NativeClient │ │ ├── bin_html │ │ │ ├── bind.js │ │ │ ├── dragger.js │ │ │ ├── httpd.cmd │ │ │ ├── httpd.py │ │ │ ├── index.html │ │ │ ├── trackball.js │ │ │ ├── tumbler.js │ │ │ ├── tumbler.nmf │ │ │ └── vector3.js │ │ ├── callback.h │ │ ├── cube.cc │ │ ├── cube.h │ │ ├── opengl_context.cc │ │ ├── opengl_context.h │ │ ├── opengl_context_ptrs.h │ │ ├── premake4.lua │ │ ├── scripting_bridge.cc │ │ ├── scripting_bridge.h │ │ ├── shader_util.cc │ │ ├── shader_util.h │ │ ├── transforms.cc │ │ ├── transforms.h │ │ ├── tumbler.cc │ │ ├── tumbler.h │ │ └── tumbler_module.cc │ ├── OpenCLClothDemo │ │ ├── AMD │ │ │ ├── CMakeLists.txt │ │ │ └── premake4.lua │ │ ├── Apple │ │ │ └── CMakeLists.txt │ │ ├── CLClothDemo.sln │ │ ├── CLClothDemo.vcproj │ │ ├── CMakeLists.txt │ │ ├── Intel │ │ │ ├── CMakeLists.txt │ │ │ └── premake4.lua │ │ ├── MiniCL │ │ │ └── CMakeLists.txt │ │ ├── NVidia │ │ │ ├── CMakeLists.txt │ │ │ └── premake4.lua │ │ ├── btOpenCLSupport.h │ │ ├── cl_cloth_demo.cpp │ │ ├── cloth.h │ │ ├── clstuff.cpp │ │ ├── clstuff.h │ │ ├── clstuff.hpp │ │ ├── fragment.glsl │ │ ├── gl_win.cpp │ │ ├── gl_win.h │ │ ├── gl_win.hpp │ │ ├── shaders.cl │ │ └── vertex.glsl │ ├── OpenGL │ │ ├── CMakeLists.txt │ │ ├── CommandLineArguments.h │ │ ├── DebugCastResult.h │ │ ├── DemoApplication.cpp │ │ ├── DemoApplication.h │ │ ├── GLDebugDrawer.cpp │ │ ├── GLDebugDrawer.h │ │ ├── GLDebugFont.cpp │ │ ├── GLDebugFont.h │ │ ├── GL_DialogDynamicsWorld.cpp │ │ ├── GL_DialogDynamicsWorld.h │ │ ├── GL_DialogWindow.cpp │ │ ├── GL_DialogWindow.h │ │ ├── GL_ShapeDrawer.cpp │ │ ├── GL_ShapeDrawer.h │ │ ├── GL_Simplex1to4.cpp │ │ ├── GL_Simplex1to4.h │ │ ├── GlutDemoApplication.cpp │ │ ├── GlutDemoApplication.h │ │ ├── GlutStuff.cpp │ │ ├── GlutStuff.h │ │ ├── Makefile.am │ │ ├── RenderTexture.cpp │ │ ├── RenderTexture.h │ │ ├── Win32AppMain.cpp │ │ ├── Win32DemoApplication.cpp │ │ ├── Win32DemoApplication.h │ │ ├── premake4.lua │ │ ├── stb_image.cpp │ │ └── stb_image.h │ ├── OpenPL_Demo │ │ ├── CApi.cpp │ │ └── OpenPL_Demo.c │ ├── RagdollDemo │ │ ├── CMakeLists.txt │ │ ├── RagdollDemo.cpp │ │ ├── RagdollDemo.h │ │ └── main.cpp │ ├── RaytestDemo │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── RaytestDemo.cpp │ │ ├── RaytestDemo.h │ │ ├── Win32RaytestDemo.cpp │ │ └── main.cpp │ ├── Raytracer │ │ ├── CMakeLists.txt │ │ ├── Raytracer.cpp │ │ ├── Raytracer.h │ │ └── main.cpp │ ├── RollingFrictionDemo │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── RollingFrictionDemo.cpp │ │ ├── RollingFrictionDemo.h │ │ ├── Win32RollingFrictionDemo.cpp │ │ └── main.cpp │ ├── SerializeDemo │ │ ├── AMD │ │ │ ├── CMakeLists.txt │ │ │ └── premake4.lua │ │ ├── CMakeLists.txt │ │ ├── SerializeDemo.cpp │ │ ├── SerializeDemo.h │ │ ├── Win32SerializeDemo.cpp │ │ ├── main.cpp │ │ ├── testFile.bullet │ │ └── testFileCloth.bullet │ ├── SharedOpenCL │ │ ├── btOpenCLInclude.h │ │ ├── btOpenCLUtils.cpp │ │ ├── btOpenCLUtils.h │ │ ├── clew.c │ │ └── clew.h │ ├── SimplexDemo │ │ ├── CMakeLists.txt │ │ ├── SimplexDemo.cpp │ │ └── SimplexDemo.h │ ├── SliderConstraintDemo │ │ ├── CMakeLists.txt │ │ ├── SliderConstraintDemo.cpp │ │ ├── SliderConstraintDemo.h │ │ └── main.cpp │ ├── SoftDemo │ │ ├── AMD │ │ │ └── premake4.lua │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── SoftDemo.cpp │ │ ├── SoftDemo.h │ │ ├── bunny.inl │ │ ├── cube.inl │ │ └── main.cpp │ ├── TerrainDemo │ │ ├── Makefile.am │ │ ├── TerrainDemo.cpp │ │ ├── TerrainDemo.h │ │ └── main.cpp │ ├── ThreadingDemo │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── UserCollisionAlgorithm │ │ ├── CMakeLists.txt │ │ ├── UserCollisionAlgorithm.cpp │ │ └── UserCollisionAlgorithm.h │ ├── VectorAdd_OpenCL │ │ ├── AMD │ │ │ └── CMakeLists.txt │ │ ├── Apple │ │ │ └── CMakeLists.txt │ │ ├── CMakeLists.txt │ │ ├── MiniCL │ │ │ └── CMakeLists.txt │ │ ├── MiniCL_VectorAdd.cpp │ │ ├── NVidia │ │ │ └── CMakeLists.txt │ │ └── VectorAddKernels.cl │ ├── VehicleDemo │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── VehicleDemo.cpp │ │ ├── VehicleDemo.h │ │ ├── heightfield128x128.cpp │ │ └── main.cpp │ ├── VoronoiFractureDemo │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── VoronoiFractureDemo.cpp │ │ ├── VoronoiFractureDemo.h │ │ ├── Win32VoronoiFractureDemo.cpp │ │ └── main.cpp │ └── premake4.lua ├── Doxyfile ├── Extras │ ├── AllBulletDemosOSX │ │ ├── AllBulletDemos.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── project.pbxproj │ │ │ ├── zakariya.pbxuser │ │ │ └── zakariya.perspectivev3 │ │ ├── AllBulletDemos_Prefix.pch │ │ ├── BulletIcon.icns │ │ ├── BulletIcon.psd │ │ ├── English.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── README.txt │ │ ├── main.m │ │ └── src │ │ │ ├── BTDemo.h │ │ │ ├── BTDemo.mm │ │ │ ├── BTDemosAppController.h │ │ │ ├── BTDemosAppController.m │ │ │ ├── BTSimulationParameters.h │ │ │ ├── BTSimulationParameters.m │ │ │ └── toolkit │ │ │ ├── BTFullscreenWindow.h │ │ │ ├── BTFullscreenWindow.m │ │ │ ├── BTGLUTKeyAdapter.h │ │ │ ├── BTGLUTKeyAdapter.m │ │ │ ├── BTOpenGLDisplayDelegate.h │ │ │ ├── BTOpenGLView.h │ │ │ └── BTOpenGLView.m │ ├── CDTestFramework │ │ ├── AntTweakBar │ │ │ ├── ChangeLog.txt │ │ │ ├── Clean.bat │ │ │ ├── License.txt │ │ │ ├── Readme.txt │ │ │ ├── include │ │ │ │ └── AntTweakBar.h │ │ │ └── src │ │ │ │ ├── AntPerfTimer.h │ │ │ │ ├── AntTweakBar.rc │ │ │ │ ├── AntTweakBar.sln │ │ │ │ ├── AntTweakBar.vcproj │ │ │ │ ├── LoadOGL.cpp │ │ │ │ ├── LoadOGL.h │ │ │ │ ├── LoadOGLCore.cpp │ │ │ │ ├── LoadOGLCore.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.x86_64 │ │ │ │ ├── MiniGLUT.h │ │ │ │ ├── TwBar.cpp │ │ │ │ ├── TwBar.h │ │ │ │ ├── TwColors.cpp │ │ │ │ ├── TwColors.h │ │ │ │ ├── TwDirect3D10.cpp │ │ │ │ ├── TwDirect3D10.h │ │ │ │ ├── TwDirect3D11.cpp │ │ │ │ ├── TwDirect3D11.h │ │ │ │ ├── TwDirect3D9.cpp │ │ │ │ ├── TwDirect3D9.h │ │ │ │ ├── TwEventGLFW.c │ │ │ │ ├── TwEventGLUT.c │ │ │ │ ├── TwEventSDL.c │ │ │ │ ├── TwEventWin.c │ │ │ │ ├── TwEventWin32.c │ │ │ │ ├── TwEventX11.c │ │ │ │ ├── TwFonts.cpp │ │ │ │ ├── TwFonts.h │ │ │ │ ├── TwGraph.h │ │ │ │ ├── TwMgr.cpp │ │ │ │ ├── TwMgr.h │ │ │ │ ├── TwOpenGL.cpp │ │ │ │ ├── TwOpenGL.h │ │ │ │ ├── TwOpenGLCore.cpp │ │ │ │ ├── TwOpenGLCore.h │ │ │ │ ├── TwPrecomp.cpp │ │ │ │ ├── TwPrecomp.h │ │ │ │ ├── d3d10vs2003.h │ │ │ │ ├── res │ │ │ │ ├── FontChars.txt │ │ │ │ ├── FontFixed1.pgm │ │ │ │ ├── FontLargeAA.pgm │ │ │ │ ├── FontNormal.pgm │ │ │ │ ├── FontNormalAA.pgm │ │ │ │ ├── FontSmall.pgm │ │ │ │ ├── TwXCursors.h │ │ │ │ ├── cur00000.cur │ │ │ │ ├── cur00001.cur │ │ │ │ ├── cur00002.cur │ │ │ │ ├── cur00003.cur │ │ │ │ ├── cur00004.cur │ │ │ │ ├── cur00005.cur │ │ │ │ ├── cur00006.cur │ │ │ │ ├── cur00007.cur │ │ │ │ ├── cur00008.cur │ │ │ │ ├── cur00009.cur │ │ │ │ ├── cur00010.cur │ │ │ │ ├── cur00011.cur │ │ │ │ ├── cur00012.cur │ │ │ │ ├── cur00013.cur │ │ │ │ ├── curs00.pbm │ │ │ │ ├── curs01.pbm │ │ │ │ ├── curs02.pbm │ │ │ │ ├── curs03.pbm │ │ │ │ ├── curs04.pbm │ │ │ │ ├── curs05.pbm │ │ │ │ ├── curs06.pbm │ │ │ │ ├── curs07.pbm │ │ │ │ ├── curs08.pbm │ │ │ │ ├── curs09.pbm │ │ │ │ ├── curs10.pbm │ │ │ │ ├── curs11.pbm │ │ │ │ ├── curs12.pbm │ │ │ │ ├── curs13.pbm │ │ │ │ ├── mask00.pbm │ │ │ │ ├── mask01.pbm │ │ │ │ ├── mask02.pbm │ │ │ │ ├── mask03.pbm │ │ │ │ ├── mask04.pbm │ │ │ │ ├── mask05.pbm │ │ │ │ ├── mask06.pbm │ │ │ │ ├── mask07.pbm │ │ │ │ ├── mask08.pbm │ │ │ │ ├── mask09.pbm │ │ │ │ ├── mask10.pbm │ │ │ │ ├── mask11.pbm │ │ │ │ ├── mask12.pbm │ │ │ │ └── mask13.pbm │ │ │ │ └── resource.h │ │ ├── BipartiteBoxPruning.cpp │ │ ├── BipartiteBoxPruning.h │ │ ├── BulletSAPCompleteBoxPruningTest.cpp │ │ ├── BulletSAPCompleteBoxPruningTest.h │ │ ├── CDTestFramework.cpp │ │ ├── CDTestFramework.h │ │ ├── CDTestFramework.sln │ │ ├── CDTestFramework.txt │ │ ├── CDTestFramework.vcproj │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── CapsuleMeshQuery.cpp │ │ ├── CapsuleMeshQuery.h │ │ ├── CollisionTest.cpp │ │ ├── CollisionTest.h │ │ ├── CompleteBoxPruning.cpp │ │ ├── CompleteBoxPruning.h │ │ ├── GLFontData.h │ │ ├── GLFontRenderer.cpp │ │ ├── GLFontRenderer.h │ │ ├── GLUT32.DLL │ │ ├── History.txt │ │ ├── IceHelpers.cpp │ │ ├── IceHelpers.h │ │ ├── License.txt │ │ ├── License.txt.bak │ │ ├── OBBMeshQuery.cpp │ │ ├── OBBMeshQuery.h │ │ ├── Opcode │ │ │ ├── Ice │ │ │ │ ├── IceAABB.cpp │ │ │ │ ├── IceAABB.h │ │ │ │ ├── IceAllocator.cpp │ │ │ │ ├── IceAllocator.h │ │ │ │ ├── IceAssert.h │ │ │ │ ├── IceAxes.h │ │ │ │ ├── IceBitArray.cpp │ │ │ │ ├── IceBitArray.h │ │ │ │ ├── IceBoundingSphere.h │ │ │ │ ├── IceContainer.cpp │ │ │ │ ├── IceContainer.h │ │ │ │ ├── IceFPU.h │ │ │ │ ├── IceHPoint.cpp │ │ │ │ ├── IceHPoint.h │ │ │ │ ├── IceHashing.h │ │ │ │ ├── IceIndexedTriangle.cpp │ │ │ │ ├── IceIndexedTriangle.h │ │ │ │ ├── IceLSS.h │ │ │ │ ├── IceMatrix3x3.cpp │ │ │ │ ├── IceMatrix3x3.h │ │ │ │ ├── IceMatrix4x4.cpp │ │ │ │ ├── IceMatrix4x4.h │ │ │ │ ├── IceMemoryMacros.h │ │ │ │ ├── IceOBB.cpp │ │ │ │ ├── IceOBB.h │ │ │ │ ├── IcePairs.h │ │ │ │ ├── IcePlane.cpp │ │ │ │ ├── IcePlane.h │ │ │ │ ├── IcePoint.cpp │ │ │ │ ├── IcePoint.h │ │ │ │ ├── IcePreprocessor.h │ │ │ │ ├── IceRandom.cpp │ │ │ │ ├── IceRandom.h │ │ │ │ ├── IceRay.cpp │ │ │ │ ├── IceRay.h │ │ │ │ ├── IceRevisitedRadix.cpp │ │ │ │ ├── IceRevisitedRadix.h │ │ │ │ ├── IceSegment.cpp │ │ │ │ ├── IceSegment.h │ │ │ │ ├── IceTriangle.cpp │ │ │ │ ├── IceTriangle.h │ │ │ │ ├── IceTrilist.h │ │ │ │ ├── IceTypes.h │ │ │ │ ├── IceUtils.cpp │ │ │ │ ├── IceUtils.h │ │ │ │ ├── _IceAABB.h │ │ │ │ ├── _IceContainer.cpp │ │ │ │ ├── _IceContainer.h │ │ │ │ ├── _IceFPU.h │ │ │ │ ├── _IceMemoryMacros.h │ │ │ │ ├── _IcePreprocessor.h │ │ │ │ ├── _IceRevisitedRadix.cpp │ │ │ │ ├── _IceRevisitedRadix.h │ │ │ │ ├── _IceTypes.h │ │ │ │ └── _IceUtils.h │ │ │ ├── OPC_AABBCollider.cpp │ │ │ ├── OPC_AABBCollider.h │ │ │ ├── OPC_AABBTree.cpp │ │ │ ├── OPC_AABBTree.h │ │ │ ├── OPC_ArraySAP.cpp │ │ │ ├── OPC_ArraySAP.h │ │ │ ├── OPC_BaseModel.cpp │ │ │ ├── OPC_BaseModel.h │ │ │ ├── OPC_BoxBoxOverlap.h │ │ │ ├── OPC_BoxPruning.cpp │ │ │ ├── OPC_BoxPruning.h │ │ │ ├── OPC_Collider.cpp │ │ │ ├── OPC_Collider.h │ │ │ ├── OPC_Common.cpp │ │ │ ├── OPC_Common.h │ │ │ ├── OPC_HybridModel.cpp │ │ │ ├── OPC_HybridModel.h │ │ │ ├── OPC_IceHook.h │ │ │ ├── OPC_LSSAABBOverlap.h │ │ │ ├── OPC_LSSCollider.cpp │ │ │ ├── OPC_LSSCollider.h │ │ │ ├── OPC_LSSTriOverlap.h │ │ │ ├── OPC_MeshInterface.cpp │ │ │ ├── OPC_MeshInterface.h │ │ │ ├── OPC_Model.cpp │ │ │ ├── OPC_Model.h │ │ │ ├── OPC_OBBCollider.cpp │ │ │ ├── OPC_OBBCollider.h │ │ │ ├── OPC_OptimizedTree.cpp │ │ │ ├── OPC_OptimizedTree.h │ │ │ ├── OPC_Picking.cpp │ │ │ ├── OPC_Picking.h │ │ │ ├── OPC_PlanesAABBOverlap.h │ │ │ ├── OPC_PlanesCollider.cpp │ │ │ ├── OPC_PlanesCollider.h │ │ │ ├── OPC_PlanesTriOverlap.h │ │ │ ├── OPC_RayAABBOverlap.h │ │ │ ├── OPC_RayCollider.cpp │ │ │ ├── OPC_RayCollider.h │ │ │ ├── OPC_RayTriOverlap.h │ │ │ ├── OPC_Settings.h │ │ │ ├── OPC_SphereAABBOverlap.h │ │ │ ├── OPC_SphereCollider.cpp │ │ │ ├── OPC_SphereCollider.h │ │ │ ├── OPC_SphereTriOverlap.h │ │ │ ├── OPC_SweepAndPrune.cpp │ │ │ ├── OPC_SweepAndPrune.h │ │ │ ├── OPC_TreeBuilders.cpp │ │ │ ├── OPC_TreeBuilders.h │ │ │ ├── OPC_TreeCollider.cpp │ │ │ ├── OPC_TreeCollider.h │ │ │ ├── OPC_TriBoxOverlap.h │ │ │ ├── OPC_TriTriOverlap.h │ │ │ ├── OPC_VolumeCollider.cpp │ │ │ ├── OPC_VolumeCollider.h │ │ │ ├── Opcode.cpp │ │ │ ├── Opcode.dsp │ │ │ ├── Opcode.dsw │ │ │ ├── Opcode.h │ │ │ ├── Opcode.sln │ │ │ ├── Opcode.vcproj │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ └── StdAfx.h │ │ ├── OpcodeArraySAPTest.cpp │ │ ├── OpcodeArraySAPTest.h │ │ ├── Profiling.h │ │ ├── ReadMe.txt │ │ ├── RenderingHelpers.cpp │ │ ├── RenderingHelpers.h │ │ ├── SphereMeshQuery.cpp │ │ ├── SphereMeshQuery.h │ │ ├── Terrain.cpp │ │ ├── Terrain.h │ │ ├── convex1.bin │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── CMakeLists.txt │ ├── CUDA │ │ ├── btCudaBroadphase.cpp │ │ ├── btCudaBroadphase.cu │ │ ├── btCudaBroadphase.h │ │ ├── btCudaDefines.h │ │ ├── btCudaUtils.cu │ │ ├── btGpuDemo2dCudaFunc.cu │ │ ├── btGpuDemo3dCudaFunc.cu │ │ ├── cutil_gl_error.h │ │ ├── cutil_math.h │ │ ├── libbulletcuda.vcproj │ │ ├── radixsort.cu │ │ ├── radixsort.cuh │ │ └── radixsort_kernel.cu │ ├── ConvexDecomposition │ │ ├── CMakeLists.txt │ │ ├── ConvexBuilder.cpp │ │ ├── ConvexBuilder.h │ │ ├── ConvexDecomposition.cpp │ │ ├── ConvexDecomposition.h │ │ ├── bestfit.cpp │ │ ├── bestfit.h │ │ ├── bestfitobb.cpp │ │ ├── bestfitobb.h │ │ ├── cd_hull.cpp │ │ ├── cd_hull.h │ │ ├── cd_vector.h │ │ ├── cd_wavefront.cpp │ │ ├── cd_wavefront.h │ │ ├── concavity.cpp │ │ ├── concavity.h │ │ ├── fitsphere.cpp │ │ ├── fitsphere.h │ │ ├── float_math.cpp │ │ ├── float_math.h │ │ ├── meshvolume.cpp │ │ ├── meshvolume.h │ │ ├── planetri.cpp │ │ ├── planetri.h │ │ ├── premake4.lua │ │ ├── raytri.cpp │ │ ├── raytri.h │ │ ├── splitplane.cpp │ │ ├── splitplane.h │ │ ├── vlookup.cpp │ │ └── vlookup.h │ ├── GIMPACTUtils │ │ ├── CMakeLists.txt │ │ ├── btGImpactConvexDecompositionShape.cpp │ │ └── btGImpactConvexDecompositionShape.h │ ├── HACD │ │ ├── CMakeLists.txt │ │ ├── hacdCircularList.h │ │ ├── hacdCircularList.inl │ │ ├── hacdGraph.cpp │ │ ├── hacdGraph.h │ │ ├── hacdHACD.cpp │ │ ├── hacdHACD.h │ │ ├── hacdICHull.cpp │ │ ├── hacdICHull.h │ │ ├── hacdManifoldMesh.cpp │ │ ├── hacdManifoldMesh.h │ │ ├── hacdVector.h │ │ ├── hacdVector.inl │ │ ├── hacdVersion.h │ │ └── premake4.lua │ ├── Makefile.am │ ├── Serialize │ │ ├── BlenderSerialize │ │ │ ├── CMakeLists.txt │ │ │ ├── bBlenderFile.cpp │ │ │ ├── bBlenderFile.h │ │ │ ├── bMain.cpp │ │ │ ├── bMain.h │ │ │ ├── dna249-64bit.cpp │ │ │ └── dna249.cpp │ │ ├── BulletFileLoader │ │ │ ├── CMakeLists.txt │ │ │ ├── autogenerated │ │ │ │ └── bullet.h │ │ │ ├── bChunk.cpp │ │ │ ├── bChunk.h │ │ │ ├── bCommon.h │ │ │ ├── bDNA.cpp │ │ │ ├── bDNA.h │ │ │ ├── bDefines.h │ │ │ ├── bFile.cpp │ │ │ ├── bFile.h │ │ │ ├── btBulletFile.cpp │ │ │ ├── btBulletFile.h │ │ │ └── premake4.lua │ │ ├── BulletWorldImporter │ │ │ ├── CMakeLists.txt │ │ │ ├── btBulletWorldImporter.cpp │ │ │ ├── btBulletWorldImporter.h │ │ │ ├── btWorldImporter.cpp │ │ │ ├── btWorldImporter.h │ │ │ └── premake4.lua │ │ ├── BulletXmlWorldImporter │ │ │ ├── CMakeLists.txt │ │ │ ├── btBulletXmlWorldImporter.cpp │ │ │ ├── btBulletXmlWorldImporter.h │ │ │ ├── premake4.lua │ │ │ ├── string_split.cpp │ │ │ ├── string_split.h │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ └── tinyxmlparser.cpp │ │ ├── CMakeLists.txt │ │ ├── HeaderGenerator │ │ │ ├── CMakeLists.txt │ │ │ ├── apiGen.cpp │ │ │ ├── blenderGenerate.py │ │ │ ├── bulletGenerate.py │ │ │ └── createDnaString.bat │ │ ├── ReadBulletSample │ │ │ ├── BulletDataExtractor.cpp │ │ │ ├── BulletDataExtractor.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── makesdna │ │ │ ├── CMakeLists.txt │ │ │ ├── DNA_rigidbody.h │ │ │ └── makesdna.cpp │ ├── glui │ │ ├── CMakeLists.txt │ │ ├── GL │ │ │ └── glui.h │ │ ├── algebra3.cpp │ │ ├── algebra3.h │ │ ├── arcball.cpp │ │ ├── arcball.h │ │ ├── glui.cpp │ │ ├── glui_add_controls.cpp │ │ ├── glui_bitmap_img_data.cpp │ │ ├── glui_bitmaps.cpp │ │ ├── glui_button.cpp │ │ ├── glui_checkbox.cpp │ │ ├── glui_column.cpp │ │ ├── glui_commandline.cpp │ │ ├── glui_control.cpp │ │ ├── glui_edittext.cpp │ │ ├── glui_filebrowser.cpp │ │ ├── glui_internal.h │ │ ├── glui_internal_control.h │ │ ├── glui_list.cpp │ │ ├── glui_listbox.cpp │ │ ├── glui_mouse_iaction.cpp │ │ ├── glui_node.cpp │ │ ├── glui_panel.cpp │ │ ├── glui_radio.cpp │ │ ├── glui_rollout.cpp │ │ ├── glui_rotation.cpp │ │ ├── glui_scrollbar.cpp │ │ ├── glui_separator.cpp │ │ ├── glui_spinner.cpp │ │ ├── glui_statictext.cpp │ │ ├── glui_string.cpp │ │ ├── glui_textbox.cpp │ │ ├── glui_translation.cpp │ │ ├── glui_tree.cpp │ │ ├── glui_treepanel.cpp │ │ ├── glui_window.cpp │ │ ├── quaternion.cpp │ │ ├── quaternion.h │ │ └── readme.txt │ ├── khx2dae │ │ ├── Bullet_dae_screenshot.jpg │ │ ├── Havok5.5toColladaPhysics.dae │ │ ├── Havok_hkx_screenshot.jpg │ │ ├── SimpleLoadDemo.patch │ │ └── readme.txt │ ├── premake4.lua │ └── sph │ │ ├── READ_ME.txt │ │ ├── cmp.sh │ │ ├── common │ │ ├── GLee.c │ │ ├── GLee.h │ │ ├── common_defs.h │ │ ├── geomx.cpp │ │ ├── geomx.h │ │ ├── gl_helper.cpp │ │ ├── gl_helper.h │ │ ├── glext.h │ │ ├── glut.h │ │ ├── image.cpp │ │ ├── image.h │ │ ├── matrix-inline.h │ │ ├── matrix.cci │ │ ├── matrix.cpp │ │ ├── matrix.h │ │ ├── mdebug.cpp │ │ ├── mdebug.h │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── mesh_info.h │ │ ├── mtime.cpp │ │ ├── mtime.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── point_set.cpp │ │ ├── point_set.h │ │ ├── vector-inline.h │ │ ├── vector.cci │ │ ├── vector.cpp │ │ └── vector.h │ │ ├── fluid_system_host.linkinfo │ │ ├── fluids.vcproj │ │ ├── fluids │ │ ├── fluid.cpp │ │ ├── fluid.h │ │ ├── fluid_system.cpp │ │ ├── fluid_system.cu │ │ ├── fluid_system.h │ │ ├── fluid_system_host.cu │ │ ├── fluid_system_host.cuh │ │ ├── fluid_system_kern.cu │ │ ├── fluid_system_kern.cuh │ │ ├── radixsort.cu │ │ ├── radixsort.cuh │ │ └── radixsort_kernel.cu │ │ ├── fluids_2005.sln │ │ ├── fluids_2005.vcproj │ │ └── main.cpp ├── GLUT32.DLL ├── Glut │ ├── EmptyGL │ │ └── GL │ │ │ ├── egl_cpx.h │ │ │ ├── egl_defs.h │ │ │ ├── egl_logged.h │ │ │ ├── egl_tokens.h │ │ │ ├── egl_void.h │ │ │ ├── gl.h │ │ │ ├── glu.h │ │ │ └── glut.h │ ├── GL │ │ ├── glew.h │ │ ├── glext.h │ │ ├── glut.h │ │ ├── glxew.h │ │ ├── glxext.h │ │ ├── wglew.h │ │ └── wglext.h │ ├── btGlutInclude.h │ ├── glew32s.lib │ ├── glew64s.lib │ ├── glut32.lib │ └── glut64.lib ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── RELEASING.TXT ├── Test │ ├── Info.plist │ ├── README.txt │ ├── Source │ │ ├── TestList.cpp │ │ ├── TestList.h │ │ ├── Tests │ │ │ ├── Test_3x3getRot.cpp │ │ │ ├── Test_3x3getRot.h │ │ │ ├── Test_3x3mulM.cpp │ │ │ ├── Test_3x3mulM.h │ │ │ ├── Test_3x3mulM1M2.cpp │ │ │ ├── Test_3x3mulM1M2.h │ │ │ ├── Test_3x3mulMV.cpp │ │ │ ├── Test_3x3mulMV.h │ │ │ ├── Test_3x3mulVM.cpp │ │ │ ├── Test_3x3mulVM.h │ │ │ ├── Test_3x3setRot.cpp │ │ │ ├── Test_3x3setRot.h │ │ │ ├── Test_3x3timesTranspose.cpp │ │ │ ├── Test_3x3timesTranspose.h │ │ │ ├── Test_3x3transpose.cpp │ │ │ ├── Test_3x3transpose.h │ │ │ ├── Test_3x3transposeTimes.cpp │ │ │ ├── Test_3x3transposeTimes.h │ │ │ ├── Test_btDbvt.cpp │ │ │ ├── Test_btDbvt.h │ │ │ ├── Test_dot3.cpp │ │ │ ├── Test_dot3.h │ │ │ ├── Test_maxdot.cpp │ │ │ ├── Test_maxdot.h │ │ │ ├── Test_mindot.cpp │ │ │ ├── Test_mindot.h │ │ │ ├── Test_qtdot.cpp │ │ │ ├── Test_qtdot.h │ │ │ ├── Test_qtmul.cpp │ │ │ ├── Test_qtmul.h │ │ │ ├── Test_qtmulQV3.cpp │ │ │ ├── Test_qtmulQV3.h │ │ │ ├── Test_qtmulV3Q.cpp │ │ │ ├── Test_qtmulV3Q.h │ │ │ ├── Test_qtnorm.cpp │ │ │ ├── Test_qtnorm.h │ │ │ ├── Test_quat_aos_neon.cpp │ │ │ ├── Test_quat_aos_neon.h │ │ │ ├── Test_v3cross.cpp │ │ │ ├── Test_v3cross.h │ │ │ ├── Test_v3div.cpp │ │ │ ├── Test_v3div.h │ │ │ ├── Test_v3dot.cpp │ │ │ ├── Test_v3dot.h │ │ │ ├── Test_v3interp.cpp │ │ │ ├── Test_v3interp.h │ │ │ ├── Test_v3lerp.cpp │ │ │ ├── Test_v3lerp.h │ │ │ ├── Test_v3norm.cpp │ │ │ ├── Test_v3norm.h │ │ │ ├── Test_v3rotate.cpp │ │ │ ├── Test_v3rotate.h │ │ │ ├── Test_v3sdiv.cpp │ │ │ ├── Test_v3sdiv.h │ │ │ ├── Test_v3skew.cpp │ │ │ ├── Test_v3skew.h │ │ │ ├── Test_v3triple.cpp │ │ │ └── Test_v3triple.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── btIntDefines.h │ │ ├── main.cpp │ │ ├── main.h │ │ └── vector.h │ └── premake4.lua ├── UnitTests │ ├── BulletUnitTests │ │ ├── CMakeLists.txt │ │ ├── Main.cpp │ │ ├── TestBulletOnly.h │ │ ├── TestCholeskyDecomposition.cpp │ │ ├── TestCholeskyDecomposition.h │ │ ├── TestLinearMath.h │ │ ├── TestPolarDecomposition.cpp │ │ ├── TestPolarDecomposition.h │ │ ├── btCholeskyDecomposition.cpp │ │ └── btCholeskyDecomposition.h │ ├── CMakeLists.txt │ └── cppunit │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── CodingGuideLines.txt │ │ ├── THANKS │ │ ├── TODO │ │ ├── include │ │ └── cppunit │ │ │ ├── AdditionalMessage.h │ │ │ ├── Asserter.h │ │ │ ├── BriefTestProgressListener.h │ │ │ ├── CompilerOutputter.h │ │ │ ├── Exception.h │ │ │ ├── Message.h │ │ │ ├── Outputter.h │ │ │ ├── Portability.h │ │ │ ├── Protector.h │ │ │ ├── SourceLine.h │ │ │ ├── SynchronizedObject.h │ │ │ ├── Test.h │ │ │ ├── TestAssert.h │ │ │ ├── TestCaller.h │ │ │ ├── TestCase.h │ │ │ ├── TestComposite.h │ │ │ ├── TestFailure.h │ │ │ ├── TestFixture.h │ │ │ ├── TestLeaf.h │ │ │ ├── TestListener.h │ │ │ ├── TestPath.h │ │ │ ├── TestResult.h │ │ │ ├── TestResultCollector.h │ │ │ ├── TestRunner.h │ │ │ ├── TestSuccessListener.h │ │ │ ├── TestSuite.h │ │ │ ├── TextOutputter.h │ │ │ ├── TextTestProgressListener.h │ │ │ ├── TextTestResult.h │ │ │ ├── TextTestRunner.h │ │ │ ├── XmlOutputter.h │ │ │ ├── XmlOutputterHook.h │ │ │ ├── config-auto.h │ │ │ ├── config │ │ │ ├── CppUnitApi.h │ │ │ ├── SelectDllLoader.h │ │ │ ├── SourcePrefix.h │ │ │ ├── config-bcb5.h │ │ │ ├── config-evc4.h │ │ │ ├── config-mac.h │ │ │ └── config-msvc6.h │ │ │ ├── extensions │ │ │ ├── AutoRegisterSuite.h │ │ │ ├── ExceptionTestCaseDecorator.h │ │ │ ├── HelperMacros.h │ │ │ ├── Orthodox.h │ │ │ ├── RepeatedTest.h │ │ │ ├── TestCaseDecorator.h │ │ │ ├── TestDecorator.h │ │ │ ├── TestFactory.h │ │ │ ├── TestFactoryRegistry.h │ │ │ ├── TestFixtureFactory.h │ │ │ ├── TestNamer.h │ │ │ ├── TestSetUp.h │ │ │ ├── TestSuiteBuilderContext.h │ │ │ ├── TestSuiteFactory.h │ │ │ ├── TypeInfoHelper.h │ │ │ └── XmlInputHelper.h │ │ │ ├── plugin │ │ │ ├── DynamicLibraryManager.h │ │ │ ├── DynamicLibraryManagerException.h │ │ │ ├── PlugInManager.h │ │ │ ├── PlugInParameters.h │ │ │ ├── TestPlugIn.h │ │ │ └── TestPlugInDefaultImpl.h │ │ │ ├── portability │ │ │ ├── CppUnitDeque.h │ │ │ ├── CppUnitMap.h │ │ │ ├── CppUnitSet.h │ │ │ ├── CppUnitStack.h │ │ │ ├── CppUnitVector.h │ │ │ ├── FloatingPoint.h │ │ │ └── Stream.h │ │ │ ├── tools │ │ │ ├── Algorithm.h │ │ │ ├── StringTools.h │ │ │ ├── XmlDocument.h │ │ │ └── XmlElement.h │ │ │ └── ui │ │ │ └── text │ │ │ ├── TestRunner.h │ │ │ └── TextTestRunner.h │ │ └── src │ │ └── cppunit │ │ ├── AdditionalMessage.cpp │ │ ├── Asserter.cpp │ │ ├── BeOsDynamicLibraryManager.cpp │ │ ├── BriefTestProgressListener.cpp │ │ ├── CompilerOutputter.cpp │ │ ├── DefaultProtector.cpp │ │ ├── DefaultProtector.h │ │ ├── DllMain.cpp │ │ ├── DynamicLibraryManager.cpp │ │ ├── DynamicLibraryManagerException.cpp │ │ ├── Exception.cpp │ │ ├── Message.cpp │ │ ├── PlugInManager.cpp │ │ ├── PlugInParameters.cpp │ │ ├── Protector.cpp │ │ ├── ProtectorChain.cpp │ │ ├── ProtectorChain.h │ │ ├── ProtectorContext.h │ │ ├── RepeatedTest.cpp │ │ ├── ShlDynamicLibraryManager.cpp │ │ ├── SourceLine.cpp │ │ ├── StringTools.cpp │ │ ├── SynchronizedObject.cpp │ │ ├── Test.cpp │ │ ├── TestAssert.cpp │ │ ├── TestCase.cpp │ │ ├── TestCaseDecorator.cpp │ │ ├── TestComposite.cpp │ │ ├── TestDecorator.cpp │ │ ├── TestFactoryRegistry.cpp │ │ ├── TestFailure.cpp │ │ ├── TestLeaf.cpp │ │ ├── TestNamer.cpp │ │ ├── TestPath.cpp │ │ ├── TestPlugInDefaultImpl.cpp │ │ ├── TestResult.cpp │ │ ├── TestResultCollector.cpp │ │ ├── TestRunner.cpp │ │ ├── TestSetUp.cpp │ │ ├── TestSuccessListener.cpp │ │ ├── TestSuite.cpp │ │ ├── TestSuiteBuilderContext.cpp │ │ ├── TextOutputter.cpp │ │ ├── TextTestProgressListener.cpp │ │ ├── TextTestResult.cpp │ │ ├── TextTestRunner.cpp │ │ ├── TypeInfoHelper.cpp │ │ ├── UnixDynamicLibraryManager.cpp │ │ ├── Win32DynamicLibraryManager.cpp │ │ ├── XmlDocument.cpp │ │ ├── XmlElement.cpp │ │ ├── XmlOutputter.cpp │ │ └── XmlOutputterHook.cpp ├── UseBullet.cmake ├── VERSION ├── acinclude.m4 ├── autogen.sh ├── bullet.pc.cmake ├── bullet.pc.in ├── bullet_logo.png ├── config.h.in ├── configure.ac ├── convex0.bin ├── docs │ ├── BulletQuickstart.pdf │ ├── BulletQuickstart.tex │ ├── building.tex │ ├── bullet_logo_2010_9.eps │ ├── faq.tex │ ├── helloworld.tex │ ├── intro.tex │ └── titlepic.sty ├── file.obj ├── glut64.dll ├── heightfield128x128.raw ├── install-sh ├── jenga.dae ├── lib │ └── readme.txt ├── src │ ├── Bullet-C-Api.h │ ├── BulletCollision │ │ ├── BroadphaseCollision │ │ │ ├── btAxisSweep3.cpp │ │ │ ├── btAxisSweep3.h │ │ │ ├── btBroadphaseInterface.h │ │ │ ├── btBroadphaseProxy.cpp │ │ │ ├── btBroadphaseProxy.h │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ ├── btCollisionAlgorithm.h │ │ │ ├── btDbvt.cpp │ │ │ ├── btDbvt.h │ │ │ ├── btDbvtBroadphase.cpp │ │ │ ├── btDbvtBroadphase.h │ │ │ ├── btDispatcher.cpp │ │ │ ├── btDispatcher.h │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ ├── btMultiSapBroadphase.h │ │ │ ├── btOverlappingPairCache.cpp │ │ │ ├── btOverlappingPairCache.h │ │ │ ├── btOverlappingPairCallback.h │ │ │ ├── btQuantizedBvh.cpp │ │ │ ├── btQuantizedBvh.h │ │ │ ├── btSimpleBroadphase.cpp │ │ │ └── btSimpleBroadphase.h │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.original │ │ ├── CollisionDispatch │ │ │ ├── SphereTriangleDetector.cpp │ │ │ ├── SphereTriangleDetector.h │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ ├── btBoxBoxDetector.cpp │ │ │ ├── btBoxBoxDetector.h │ │ │ ├── btCollisionConfiguration.h │ │ │ ├── btCollisionCreateFunc.h │ │ │ ├── btCollisionDispatcher.cpp │ │ │ ├── btCollisionDispatcher.h │ │ │ ├── btCollisionObject.cpp │ │ │ ├── btCollisionObject.h │ │ │ ├── btCollisionObjectWrapper.h │ │ │ ├── btCollisionWorld.cpp │ │ │ ├── btCollisionWorld.h │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ ├── btCompoundCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCompoundCollisionAlgorithm.h │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ ├── btGhostObject.cpp │ │ │ ├── btGhostObject.h │ │ │ ├── btHashedSimplePairCache.cpp │ │ │ ├── btHashedSimplePairCache.h │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ ├── btInternalEdgeUtility.h │ │ │ ├── btManifoldResult.cpp │ │ │ ├── btManifoldResult.h │ │ │ ├── btSimulationIslandManager.cpp │ │ │ ├── btSimulationIslandManager.h │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ ├── btUnionFind.cpp │ │ │ └── btUnionFind.h │ │ ├── CollisionShapes │ │ │ ├── btBox2dShape.cpp │ │ │ ├── btBox2dShape.h │ │ │ ├── btBoxShape.cpp │ │ │ ├── btBoxShape.h │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ ├── btCapsuleShape.cpp │ │ │ ├── btCapsuleShape.h │ │ │ ├── btCollisionMargin.h │ │ │ ├── btCollisionShape.cpp │ │ │ ├── btCollisionShape.h │ │ │ ├── btCompoundShape.cpp │ │ │ ├── btCompoundShape.h │ │ │ ├── btConcaveShape.cpp │ │ │ ├── btConcaveShape.h │ │ │ ├── btConeShape.cpp │ │ │ ├── btConeShape.h │ │ │ ├── btConvex2dShape.cpp │ │ │ ├── btConvex2dShape.h │ │ │ ├── btConvexHullShape.cpp │ │ │ ├── btConvexHullShape.h │ │ │ ├── btConvexInternalShape.cpp │ │ │ ├── btConvexInternalShape.h │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ ├── btConvexPointCloudShape.h │ │ │ ├── btConvexPolyhedron.cpp │ │ │ ├── btConvexPolyhedron.h │ │ │ ├── btConvexShape.cpp │ │ │ ├── btConvexShape.h │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ ├── btCylinderShape.cpp │ │ │ ├── btCylinderShape.h │ │ │ ├── btEmptyShape.cpp │ │ │ ├── btEmptyShape.h │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ ├── btMaterial.h │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ ├── btMinkowskiSumShape.h │ │ │ ├── btMultiSphereShape.cpp │ │ │ ├── btMultiSphereShape.h │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ ├── btOptimizedBvh.cpp │ │ │ ├── btOptimizedBvh.h │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ ├── btPolyhedralConvexShape.h │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ ├── btShapeHull.cpp │ │ │ ├── btShapeHull.h │ │ │ ├── btSphereShape.cpp │ │ │ ├── btSphereShape.h │ │ │ ├── btStaticPlaneShape.cpp │ │ │ ├── btStaticPlaneShape.h │ │ │ ├── btStridingMeshInterface.cpp │ │ │ ├── btStridingMeshInterface.h │ │ │ ├── btTetrahedronShape.cpp │ │ │ ├── btTetrahedronShape.h │ │ │ ├── btTriangleBuffer.cpp │ │ │ ├── btTriangleBuffer.h │ │ │ ├── btTriangleCallback.cpp │ │ │ ├── btTriangleCallback.h │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ ├── btTriangleInfoMap.h │ │ │ ├── btTriangleMesh.cpp │ │ │ ├── btTriangleMesh.h │ │ │ ├── btTriangleMeshShape.cpp │ │ │ ├── btTriangleMeshShape.h │ │ │ ├── btTriangleShape.h │ │ │ ├── btUniformScalingShape.cpp │ │ │ └── btUniformScalingShape.h │ │ ├── Doxyfile │ │ ├── Gimpact │ │ │ ├── btBoxCollision.h │ │ │ ├── btClipPolygon.h │ │ │ ├── btCompoundFromGimpact.h │ │ │ ├── btContactProcessing.cpp │ │ │ ├── btContactProcessing.h │ │ │ ├── btGImpactBvh.cpp │ │ │ ├── btGImpactBvh.h │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ ├── btGImpactMassUtil.h │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ ├── btGImpactShape.cpp │ │ │ ├── btGImpactShape.h │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ ├── btGenericPoolAllocator.h │ │ │ ├── btGeometryOperations.h │ │ │ ├── btQuantization.h │ │ │ ├── btTriangleShapeEx.cpp │ │ │ ├── btTriangleShapeEx.h │ │ │ ├── gim_array.h │ │ │ ├── gim_basic_geometry_operations.h │ │ │ ├── gim_bitset.h │ │ │ ├── gim_box_collision.h │ │ │ ├── gim_box_set.cpp │ │ │ ├── gim_box_set.h │ │ │ ├── gim_clip_polygon.h │ │ │ ├── gim_contact.cpp │ │ │ ├── gim_contact.h │ │ │ ├── gim_geom_types.h │ │ │ ├── gim_geometry.h │ │ │ ├── gim_hash_table.h │ │ │ ├── gim_linear_math.h │ │ │ ├── gim_math.h │ │ │ ├── gim_memory.cpp │ │ │ ├── gim_memory.h │ │ │ ├── gim_radixsort.h │ │ │ ├── gim_tri_collision.cpp │ │ │ └── gim_tri_collision.h │ │ ├── NarrowPhaseCollision │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ ├── btContinuousConvexCollision.h │ │ │ ├── btConvexCast.cpp │ │ │ ├── btConvexCast.h │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ ├── btGjkConvexCast.cpp │ │ │ ├── btGjkConvexCast.h │ │ │ ├── btGjkEpa2.cpp │ │ │ ├── btGjkEpa2.h │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ ├── btGjkPairDetector.cpp │ │ │ ├── btGjkPairDetector.h │ │ │ ├── btManifoldPoint.h │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ ├── btPersistentManifold.cpp │ │ │ ├── btPersistentManifold.h │ │ │ ├── btPointCollector.h │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ ├── btPolyhedralContactClipping.h │ │ │ ├── btRaycastCallback.cpp │ │ │ ├── btRaycastCallback.h │ │ │ ├── btSimplexSolverInterface.h │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ ├── btSubSimplexConvexCast.h │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ └── btVoronoiSimplexSolver.h │ │ └── premake4.lua │ ├── BulletDynamics │ │ ├── CMakeLists.txt │ │ ├── Character │ │ │ ├── btCharacterControllerInterface.h │ │ │ ├── btKinematicCharacterController.cpp │ │ │ └── btKinematicCharacterController.h │ │ ├── ConstraintSolver │ │ │ ├── btConeTwistConstraint.cpp │ │ │ ├── btConeTwistConstraint.h │ │ │ ├── btConstraintSolver.h │ │ │ ├── btContactConstraint.cpp │ │ │ ├── btContactConstraint.h │ │ │ ├── btContactSolverInfo.h │ │ │ ├── btFixedConstraint.cpp │ │ │ ├── btFixedConstraint.h │ │ │ ├── btGearConstraint.cpp │ │ │ ├── btGearConstraint.h │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ ├── btGeneric6DofConstraint.h │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ ├── btHinge2Constraint.cpp │ │ │ ├── btHinge2Constraint.h │ │ │ ├── btHingeConstraint.cpp │ │ │ ├── btHingeConstraint.h │ │ │ ├── btJacobianEntry.h │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ ├── btPoint2PointConstraint.h │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ ├── btSliderConstraint.cpp │ │ │ ├── btSliderConstraint.h │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ ├── btSolve2LinearConstraint.h │ │ │ ├── btSolverBody.h │ │ │ ├── btSolverConstraint.h │ │ │ ├── btTypedConstraint.cpp │ │ │ ├── btTypedConstraint.h │ │ │ ├── btUniversalConstraint.cpp │ │ │ └── btUniversalConstraint.h │ │ ├── Dynamics │ │ │ ├── Bullet-C-API.cpp │ │ │ ├── btActionInterface.h │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ ├── btDynamicsWorld.h │ │ │ ├── btRigidBody.cpp │ │ │ ├── btRigidBody.h │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ └── btSimpleDynamicsWorld.h │ │ ├── Featherstone │ │ │ ├── btMultiBody.cpp │ │ │ ├── btMultiBody.h │ │ │ ├── btMultiBodyConstraint.cpp │ │ │ ├── btMultiBodyConstraint.h │ │ │ ├── btMultiBodyConstraintSolver.cpp │ │ │ ├── btMultiBodyConstraintSolver.h │ │ │ ├── btMultiBodyDynamicsWorld.cpp │ │ │ ├── btMultiBodyDynamicsWorld.h │ │ │ ├── btMultiBodyJointLimitConstraint.cpp │ │ │ ├── btMultiBodyJointLimitConstraint.h │ │ │ ├── btMultiBodyJointMotor.cpp │ │ │ ├── btMultiBodyJointMotor.h │ │ │ ├── btMultiBodyLink.h │ │ │ ├── btMultiBodyLinkCollider.h │ │ │ ├── btMultiBodyPoint2Point.cpp │ │ │ ├── btMultiBodyPoint2Point.h │ │ │ └── btMultiBodySolverConstraint.h │ │ ├── MLCPSolvers │ │ │ ├── btDantzigLCP.cpp │ │ │ ├── btDantzigLCP.h │ │ │ ├── btDantzigSolver.h │ │ │ ├── btMLCPSolver.cpp │ │ │ ├── btMLCPSolver.h │ │ │ ├── btMLCPSolverInterface.h │ │ │ ├── btPATHSolver.h │ │ │ └── btSolveProjectedGaussSeidel.h │ │ ├── Vehicle │ │ │ ├── btRaycastVehicle.cpp │ │ │ ├── btRaycastVehicle.h │ │ │ ├── btVehicleRaycaster.h │ │ │ ├── btWheelInfo.cpp │ │ │ └── btWheelInfo.h │ │ └── premake4.lua │ ├── BulletMultiThreaded │ │ ├── CMakeLists.txt │ │ ├── GpuSoftBodySolvers │ │ │ ├── CMakeLists.txt │ │ │ ├── DX11 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HLSL │ │ │ │ │ ├── ApplyForces.hlsl │ │ │ │ │ ├── ComputeBounds.hlsl │ │ │ │ │ ├── Integrate.hlsl │ │ │ │ │ ├── OutputToVertexArray.hlsl │ │ │ │ │ ├── PrepareLinks.hlsl │ │ │ │ │ ├── SolvePositions.hlsl │ │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl │ │ │ │ │ ├── UpdateConstants.hlsl │ │ │ │ │ ├── UpdateNodes.hlsl │ │ │ │ │ ├── UpdateNormals.hlsl │ │ │ │ │ ├── UpdatePositions.hlsl │ │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl │ │ │ │ │ ├── VSolveLinks.hlsl │ │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl │ │ │ │ │ └── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl │ │ │ │ ├── btSoftBodySolverBuffer_DX11.h │ │ │ │ ├── btSoftBodySolverLinkData_DX11.h │ │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h │ │ │ │ ├── btSoftBodySolverTriangleData_DX11.h │ │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h │ │ │ │ ├── btSoftBodySolverVertexData_DX11.h │ │ │ │ ├── btSoftBodySolver_DX11.cpp │ │ │ │ ├── btSoftBodySolver_DX11.h │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.h │ │ │ │ └── premake4.lua │ │ │ ├── OpenCL │ │ │ │ ├── AMD │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── premake4.lua │ │ │ │ ├── Apple │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Intel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── premake4.lua │ │ │ │ ├── MiniCL │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── MiniCLTaskWrap.cpp │ │ │ │ ├── NVidia │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── premake4.lua │ │ │ │ ├── OpenCLC10 │ │ │ │ │ ├── ApplyForces.cl │ │ │ │ │ ├── ComputeBounds.cl │ │ │ │ │ ├── Integrate.cl │ │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ │ ├── PrepareLinks.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ │ ├── SolvePositions.cl │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ │ ├── UpdateConstants.cl │ │ │ │ │ ├── UpdateFixedVertexPositions.cl │ │ │ │ │ ├── UpdateNodes.cl │ │ │ │ │ ├── UpdateNormals.cl │ │ │ │ │ ├── UpdatePositions.cl │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ │ └── VSolveLinks.cl │ │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h │ │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h │ │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.h │ │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h │ │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h │ │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h │ │ │ │ ├── btSoftBodySolver_OpenCL.cpp │ │ │ │ ├── btSoftBodySolver_OpenCL.h │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp │ │ │ │ └── btSoftBodySolver_OpenCLSIMDAware.h │ │ │ └── Shared │ │ │ │ └── btSoftBodySolverData.h │ │ ├── HeapManager.h │ │ ├── PlatformDefinitions.h │ │ ├── PosixThreadSupport.cpp │ │ ├── PosixThreadSupport.h │ │ ├── PpuAddressSpace.h │ │ ├── SequentialThreadSupport.cpp │ │ ├── SequentialThreadSupport.h │ │ ├── SpuCollisionObjectWrapper.cpp │ │ ├── SpuCollisionObjectWrapper.h │ │ ├── SpuCollisionTaskProcess.cpp │ │ ├── SpuCollisionTaskProcess.h │ │ ├── SpuContactManifoldCollisionAlgorithm.cpp │ │ ├── SpuContactManifoldCollisionAlgorithm.h │ │ ├── SpuDoubleBuffer.h │ │ ├── SpuFakeDma.cpp │ │ ├── SpuFakeDma.h │ │ ├── SpuGatheringCollisionDispatcher.cpp │ │ ├── SpuGatheringCollisionDispatcher.h │ │ ├── SpuLibspe2Support.cpp │ │ ├── SpuLibspe2Support.h │ │ ├── SpuNarrowPhaseCollisionTask │ │ │ ├── Box.h │ │ │ ├── SpuCollisionShapes.cpp │ │ │ ├── SpuCollisionShapes.h │ │ │ ├── SpuContactResult.cpp │ │ │ ├── SpuContactResult.h │ │ │ ├── SpuConvexPenetrationDepthSolver.h │ │ │ ├── SpuGatheringCollisionTask.cpp │ │ │ ├── SpuGatheringCollisionTask.h │ │ │ ├── SpuLocalSupport.h │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.cpp │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.h │ │ │ ├── SpuPreferredPenetrationDirections.h │ │ │ ├── boxBoxDistance.cpp │ │ │ ├── boxBoxDistance.h │ │ │ └── readme.txt │ │ ├── SpuSampleTask │ │ │ ├── SpuSampleTask.cpp │ │ │ ├── SpuSampleTask.h │ │ │ └── readme.txt │ │ ├── SpuSampleTaskProcess.cpp │ │ ├── SpuSampleTaskProcess.h │ │ ├── SpuSync.h │ │ ├── TrbDynBody.h │ │ ├── TrbStateVec.h │ │ ├── Win32ThreadSupport.cpp │ │ ├── Win32ThreadSupport.h │ │ ├── btGpu3DGridBroadphase.cpp │ │ ├── btGpu3DGridBroadphase.h │ │ ├── btGpu3DGridBroadphaseSharedCode.h │ │ ├── btGpu3DGridBroadphaseSharedDefs.h │ │ ├── btGpu3DGridBroadphaseSharedTypes.h │ │ ├── btGpuDefines.h │ │ ├── btGpuUtilsSharedCode.h │ │ ├── btGpuUtilsSharedDefs.h │ │ ├── btParallelConstraintSolver.cpp │ │ ├── btParallelConstraintSolver.h │ │ ├── btThreadSupportInterface.cpp │ │ ├── btThreadSupportInterface.h │ │ └── vectormath2bullet.h │ ├── BulletSoftBody │ │ ├── CMakeLists.txt │ │ ├── btDefaultSoftBodySolver.cpp │ │ ├── btDefaultSoftBodySolver.h │ │ ├── btSoftBody.cpp │ │ ├── btSoftBody.h │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ ├── btSoftBodyData.h │ │ ├── btSoftBodyHelpers.cpp │ │ ├── btSoftBodyHelpers.h │ │ ├── btSoftBodyInternals.h │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ ├── btSoftBodySolverVertexBuffer.h │ │ ├── btSoftBodySolvers.h │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ ├── btSoftRigidDynamicsWorld.h │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ ├── btSparseSDF.h │ │ └── premake4.lua │ ├── CMakeLists.txt │ ├── LinearMath │ │ ├── CMakeLists.txt │ │ ├── btAabbUtil2.h │ │ ├── btAlignedAllocator.cpp │ │ ├── btAlignedAllocator.h │ │ ├── btAlignedObjectArray.h │ │ ├── btConvexHull.cpp │ │ ├── btConvexHull.h │ │ ├── btConvexHullComputer.cpp │ │ ├── btConvexHullComputer.h │ │ ├── btDefaultMotionState.h │ │ ├── btGeometryUtil.cpp │ │ ├── btGeometryUtil.h │ │ ├── btGrahamScan2dConvexHull.h │ │ ├── btHashMap.h │ │ ├── btIDebugDraw.h │ │ ├── btList.h │ │ ├── btMatrix3x3.h │ │ ├── btMatrixX.h │ │ ├── btMinMax.h │ │ ├── btMotionState.h │ │ ├── btPolarDecomposition.cpp │ │ ├── btPolarDecomposition.h │ │ ├── btPoolAllocator.h │ │ ├── btQuadWord.h │ │ ├── btQuaternion.h │ │ ├── btQuickprof.cpp │ │ ├── btQuickprof.h │ │ ├── btRandom.h │ │ ├── btScalar.h │ │ ├── btSerializer.cpp │ │ ├── btSerializer.h │ │ ├── btStackAlloc.h │ │ ├── btTransform.h │ │ ├── btTransformUtil.h │ │ ├── btVector3.cpp │ │ ├── btVector3.h │ │ └── premake4.lua │ ├── Makefile.am │ ├── MiniCL │ │ ├── CMakeLists.txt │ │ ├── MiniCL.cpp │ │ ├── MiniCLTask │ │ │ ├── MiniCLTask.cpp │ │ │ └── MiniCLTask.h │ │ ├── MiniCLTaskScheduler.cpp │ │ ├── MiniCLTaskScheduler.h │ │ ├── cl.h │ │ ├── cl_MiniCL_Defs.h │ │ ├── cl_gl.h │ │ └── cl_platform.h │ ├── btBulletCollisionCommon.h │ ├── btBulletDynamicsCommon.h │ └── vectormath │ │ ├── neon │ │ ├── boolInVec.h │ │ ├── floatInVec.h │ │ ├── mat_aos.h │ │ ├── quat_aos.h │ │ ├── vec_aos.h │ │ └── vectormath_aos.h │ │ ├── scalar │ │ ├── boolInVec.h │ │ ├── floatInVec.h │ │ ├── mat_aos.h │ │ ├── quat_aos.h │ │ ├── vec_aos.h │ │ └── vectormath_aos.h │ │ ├── sse │ │ ├── boolInVec.h │ │ ├── floatInVec.h │ │ ├── mat_aos.h │ │ ├── quat_aos.h │ │ ├── vec_aos.h │ │ ├── vecidx_aos.h │ │ └── vectormath_aos.h │ │ └── vmInclude.h └── test1.oec ├── cmake ├── TargetArch.cmake ├── android.toolchain.cmake ├── gnu-amalgamate.sh ├── ios.toolchain.cmake ├── msvc-amalgamate.bat └── xcode-amalgamate.sh ├── curl-7.39.0 ├── CHANGES ├── CMake │ ├── CMakeConfigurableFile.in │ ├── CurlTests.c │ ├── FindGSS.cmake │ ├── Macros.cmake │ ├── OtherTests.cmake │ ├── Platforms │ │ └── WindowsCache.cmake │ └── Utilities.cmake ├── CMakeLists.txt ├── COPYING ├── MacOSX-Framework ├── Makefile ├── Makefile.am ├── Makefile.in ├── README ├── RELEASE-NOTES ├── acinclude.m4 ├── aclocal.m4 ├── buildconf ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── curl-config.in ├── depcomp ├── docs │ ├── BINDINGS │ ├── BUGS │ ├── CONTRIBUTE │ ├── DISTRO-DILEMMA │ ├── FAQ │ ├── FEATURES │ ├── HISTORY │ ├── HTTP-COOKIES │ ├── INSTALL │ ├── INSTALL.devcpp │ ├── INTERNALS │ ├── KNOWN_BUGS │ ├── LIBCURL-STRUCTS │ ├── LICENSE-MIXING │ ├── MAIL-ETIQUETTE │ ├── MANUAL │ ├── Makefile.am │ ├── Makefile.in │ ├── README.netware │ ├── README.win32 │ ├── RELEASE-PROCEDURE │ ├── RESOURCES │ ├── SECURITY │ ├── SSL-PROBLEMS │ ├── SSLCERTS │ ├── THANKS │ ├── TODO │ ├── TheArtOfHttpScripting │ ├── VERSIONS │ ├── curl-config.1 │ ├── curl-config.html │ ├── curl-config.pdf │ ├── curl.1 │ ├── curl.html │ ├── curl.pdf │ ├── examples │ │ ├── 10-at-a-time.c │ │ ├── Makefile.am │ │ ├── Makefile.example │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── Makefile.m32 │ │ ├── Makefile.netware │ │ ├── README │ │ ├── anyauthput.c │ │ ├── asiohiper.cpp │ │ ├── cacertinmem.c │ │ ├── certinfo.c │ │ ├── chkspeed.c │ │ ├── cookie_interface.c │ │ ├── curlgtk.c │ │ ├── curlx.c │ │ ├── debug.c │ │ ├── evhiperfifo.c │ │ ├── externalsocket.c │ │ ├── fileupload.c │ │ ├── fopen.c │ │ ├── ftp-wildcard.c │ │ ├── ftpget.c │ │ ├── ftpgetinfo.c │ │ ├── ftpgetresp.c │ │ ├── ftpsget.c │ │ ├── ftpupload.c │ │ ├── ftpuploadresume.c │ │ ├── getinfo.c │ │ ├── getinmemory.c │ │ ├── ghiper.c │ │ ├── hiperfifo.c │ │ ├── href_extractor.c │ │ ├── htmltidy.c │ │ ├── htmltitle.cpp │ │ ├── http-post.c │ │ ├── httpcustomheader.c │ │ ├── httpput.c │ │ ├── https.c │ │ ├── imap-append.c │ │ ├── imap-copy.c │ │ ├── imap-create.c │ │ ├── imap-delete.c │ │ ├── imap-examine.c │ │ ├── imap-fetch.c │ │ ├── imap-list.c │ │ ├── imap-lsub.c │ │ ├── imap-multi.c │ │ ├── imap-noop.c │ │ ├── imap-search.c │ │ ├── imap-ssl.c │ │ ├── imap-store.c │ │ ├── imap-tls.c │ │ ├── makefile.dj │ │ ├── multi-app.c │ │ ├── multi-debugcallback.c │ │ ├── multi-double.c │ │ ├── multi-post.c │ │ ├── multi-single.c │ │ ├── multi-uv.c │ │ ├── multithread.c │ │ ├── opensslthreadlock.c │ │ ├── persistant.c │ │ ├── pop3-dele.c │ │ ├── pop3-list.c │ │ ├── pop3-multi.c │ │ ├── pop3-noop.c │ │ ├── pop3-retr.c │ │ ├── pop3-ssl.c │ │ ├── pop3-stat.c │ │ ├── pop3-tls.c │ │ ├── pop3-top.c │ │ ├── pop3-uidl.c │ │ ├── post-callback.c │ │ ├── postinmemory.c │ │ ├── postit2.c │ │ ├── progressfunc.c │ │ ├── resolve.c │ │ ├── rtsp.c │ │ ├── sampleconv.c │ │ ├── sendrecv.c │ │ ├── sepheaders.c │ │ ├── sessioninfo.c │ │ ├── sftpget.c │ │ ├── simple.c │ │ ├── simplepost.c │ │ ├── simplessl.c │ │ ├── smooth-gtk-thread.c │ │ ├── smtp-expn.c │ │ ├── smtp-mail.c │ │ ├── smtp-multi.c │ │ ├── smtp-ssl.c │ │ ├── smtp-tls.c │ │ ├── smtp-vrfy.c │ │ ├── synctime.c │ │ ├── threaded-ssl.c │ │ ├── url2file.c │ │ ├── usercertinmem.c │ │ ├── version-check.pl │ │ └── xmlstream.c │ ├── index.html │ ├── libcurl │ │ ├── ABI │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── curl_easy_cleanup.3 │ │ ├── curl_easy_cleanup.html │ │ ├── curl_easy_cleanup.pdf │ │ ├── curl_easy_duphandle.3 │ │ ├── curl_easy_duphandle.html │ │ ├── curl_easy_duphandle.pdf │ │ ├── curl_easy_escape.3 │ │ ├── curl_easy_escape.html │ │ ├── curl_easy_escape.pdf │ │ ├── curl_easy_getinfo.3 │ │ ├── curl_easy_getinfo.html │ │ ├── curl_easy_getinfo.pdf │ │ ├── curl_easy_init.3 │ │ ├── curl_easy_init.html │ │ ├── curl_easy_init.pdf │ │ ├── curl_easy_pause.3 │ │ ├── curl_easy_pause.html │ │ ├── curl_easy_pause.pdf │ │ ├── curl_easy_perform.3 │ │ ├── curl_easy_perform.html │ │ ├── curl_easy_perform.pdf │ │ ├── curl_easy_recv.3 │ │ ├── curl_easy_recv.html │ │ ├── curl_easy_recv.pdf │ │ ├── curl_easy_reset.3 │ │ ├── curl_easy_reset.html │ │ ├── curl_easy_reset.pdf │ │ ├── curl_easy_send.3 │ │ ├── curl_easy_send.html │ │ ├── curl_easy_send.pdf │ │ ├── curl_easy_setopt.3 │ │ ├── curl_easy_setopt.html │ │ ├── curl_easy_setopt.pdf │ │ ├── curl_easy_strerror.3 │ │ ├── curl_easy_strerror.html │ │ ├── curl_easy_strerror.pdf │ │ ├── curl_easy_unescape.3 │ │ ├── curl_easy_unescape.html │ │ ├── curl_easy_unescape.pdf │ │ ├── curl_escape.3 │ │ ├── curl_escape.html │ │ ├── curl_escape.pdf │ │ ├── curl_formadd.3 │ │ ├── curl_formadd.html │ │ ├── curl_formadd.pdf │ │ ├── curl_formfree.3 │ │ ├── curl_formfree.html │ │ ├── curl_formfree.pdf │ │ ├── curl_formget.3 │ │ ├── curl_formget.html │ │ ├── curl_formget.pdf │ │ ├── curl_free.3 │ │ ├── curl_free.html │ │ ├── curl_free.pdf │ │ ├── curl_getdate.3 │ │ ├── curl_getdate.html │ │ ├── curl_getdate.pdf │ │ ├── curl_getenv.3 │ │ ├── curl_getenv.html │ │ ├── curl_getenv.pdf │ │ ├── curl_global_cleanup.3 │ │ ├── curl_global_cleanup.html │ │ ├── curl_global_cleanup.pdf │ │ ├── curl_global_init.3 │ │ ├── curl_global_init.html │ │ ├── curl_global_init.pdf │ │ ├── curl_global_init_mem.3 │ │ ├── curl_global_init_mem.html │ │ ├── curl_global_init_mem.pdf │ │ ├── curl_mprintf.3 │ │ ├── curl_mprintf.html │ │ ├── curl_mprintf.pdf │ │ ├── curl_multi_add_handle.3 │ │ ├── curl_multi_add_handle.html │ │ ├── curl_multi_add_handle.pdf │ │ ├── curl_multi_assign.3 │ │ ├── curl_multi_assign.html │ │ ├── curl_multi_assign.pdf │ │ ├── curl_multi_cleanup.3 │ │ ├── curl_multi_cleanup.html │ │ ├── curl_multi_cleanup.pdf │ │ ├── curl_multi_fdset.3 │ │ ├── curl_multi_fdset.html │ │ ├── curl_multi_fdset.pdf │ │ ├── curl_multi_info_read.3 │ │ ├── curl_multi_info_read.html │ │ ├── curl_multi_info_read.pdf │ │ ├── curl_multi_init.3 │ │ ├── curl_multi_init.html │ │ ├── curl_multi_init.pdf │ │ ├── curl_multi_perform.3 │ │ ├── curl_multi_perform.html │ │ ├── curl_multi_perform.pdf │ │ ├── curl_multi_remove_handle.3 │ │ ├── curl_multi_remove_handle.html │ │ ├── curl_multi_remove_handle.pdf │ │ ├── curl_multi_setopt.3 │ │ ├── curl_multi_setopt.html │ │ ├── curl_multi_setopt.pdf │ │ ├── curl_multi_socket.3 │ │ ├── curl_multi_socket.html │ │ ├── curl_multi_socket.pdf │ │ ├── curl_multi_socket_action.3 │ │ ├── curl_multi_socket_action.html │ │ ├── curl_multi_socket_action.pdf │ │ ├── curl_multi_strerror.3 │ │ ├── curl_multi_strerror.html │ │ ├── curl_multi_strerror.pdf │ │ ├── curl_multi_timeout.3 │ │ ├── curl_multi_timeout.html │ │ ├── curl_multi_timeout.pdf │ │ ├── curl_multi_wait.3 │ │ ├── curl_multi_wait.html │ │ ├── curl_multi_wait.pdf │ │ ├── curl_share_cleanup.3 │ │ ├── curl_share_cleanup.html │ │ ├── curl_share_cleanup.pdf │ │ ├── curl_share_init.3 │ │ ├── curl_share_init.html │ │ ├── curl_share_init.pdf │ │ ├── curl_share_setopt.3 │ │ ├── curl_share_setopt.html │ │ ├── curl_share_setopt.pdf │ │ ├── curl_share_strerror.3 │ │ ├── curl_share_strerror.html │ │ ├── curl_share_strerror.pdf │ │ ├── curl_slist_append.3 │ │ ├── curl_slist_append.html │ │ ├── curl_slist_append.pdf │ │ ├── curl_slist_free_all.3 │ │ ├── curl_slist_free_all.html │ │ ├── curl_slist_free_all.pdf │ │ ├── curl_strequal.3 │ │ ├── curl_strequal.html │ │ ├── curl_strequal.pdf │ │ ├── curl_unescape.3 │ │ ├── curl_unescape.html │ │ ├── curl_unescape.pdf │ │ ├── curl_version.3 │ │ ├── curl_version.html │ │ ├── curl_version.pdf │ │ ├── curl_version_info.3 │ │ ├── curl_version_info.html │ │ ├── curl_version_info.pdf │ │ ├── index.html │ │ ├── libcurl-easy.3 │ │ ├── libcurl-easy.html │ │ ├── libcurl-easy.pdf │ │ ├── libcurl-errors.3 │ │ ├── libcurl-errors.html │ │ ├── libcurl-errors.pdf │ │ ├── libcurl-multi.3 │ │ ├── libcurl-multi.html │ │ ├── libcurl-multi.pdf │ │ ├── libcurl-share.3 │ │ ├── libcurl-share.html │ │ ├── libcurl-share.pdf │ │ ├── libcurl-tutorial.3 │ │ ├── libcurl-tutorial.html │ │ ├── libcurl-tutorial.pdf │ │ ├── libcurl.3 │ │ ├── libcurl.html │ │ ├── libcurl.m4 │ │ ├── libcurl.pdf │ │ ├── opts │ │ │ ├── CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 │ │ │ ├── CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.html │ │ │ ├── CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.pdf │ │ │ ├── CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 │ │ │ ├── CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.html │ │ │ ├── CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.pdf │ │ │ ├── CURLMOPT_MAXCONNECTS.3 │ │ │ ├── CURLMOPT_MAXCONNECTS.html │ │ │ ├── CURLMOPT_MAXCONNECTS.pdf │ │ │ ├── CURLMOPT_MAX_HOST_CONNECTIONS.3 │ │ │ ├── CURLMOPT_MAX_HOST_CONNECTIONS.html │ │ │ ├── CURLMOPT_MAX_HOST_CONNECTIONS.pdf │ │ │ ├── CURLMOPT_MAX_PIPELINE_LENGTH.3 │ │ │ ├── CURLMOPT_MAX_PIPELINE_LENGTH.html │ │ │ ├── CURLMOPT_MAX_PIPELINE_LENGTH.pdf │ │ │ ├── CURLMOPT_MAX_TOTAL_CONNECTIONS.3 │ │ │ ├── CURLMOPT_MAX_TOTAL_CONNECTIONS.html │ │ │ ├── CURLMOPT_MAX_TOTAL_CONNECTIONS.pdf │ │ │ ├── CURLMOPT_PIPELINING.3 │ │ │ ├── CURLMOPT_PIPELINING.html │ │ │ ├── CURLMOPT_PIPELINING.pdf │ │ │ ├── CURLMOPT_PIPELINING_SERVER_BL.3 │ │ │ ├── CURLMOPT_PIPELINING_SERVER_BL.html │ │ │ ├── CURLMOPT_PIPELINING_SERVER_BL.pdf │ │ │ ├── CURLMOPT_PIPELINING_SITE_BL.3 │ │ │ ├── CURLMOPT_PIPELINING_SITE_BL.html │ │ │ ├── CURLMOPT_PIPELINING_SITE_BL.pdf │ │ │ ├── CURLMOPT_SOCKETDATA.3 │ │ │ ├── CURLMOPT_SOCKETDATA.html │ │ │ ├── CURLMOPT_SOCKETDATA.pdf │ │ │ ├── CURLMOPT_SOCKETFUNCTION.3 │ │ │ ├── CURLMOPT_SOCKETFUNCTION.html │ │ │ ├── CURLMOPT_SOCKETFUNCTION.pdf │ │ │ ├── CURLMOPT_TIMERDATA.3 │ │ │ ├── CURLMOPT_TIMERDATA.html │ │ │ ├── CURLMOPT_TIMERDATA.pdf │ │ │ ├── CURLMOPT_TIMERFUNCTION.3 │ │ │ ├── CURLMOPT_TIMERFUNCTION.html │ │ │ ├── CURLMOPT_TIMERFUNCTION.pdf │ │ │ ├── CURLOPT_ACCEPTTIMEOUT_MS.3 │ │ │ ├── CURLOPT_ACCEPTTIMEOUT_MS.html │ │ │ ├── CURLOPT_ACCEPTTIMEOUT_MS.pdf │ │ │ ├── CURLOPT_ACCEPT_ENCODING.3 │ │ │ ├── CURLOPT_ACCEPT_ENCODING.html │ │ │ ├── CURLOPT_ACCEPT_ENCODING.pdf │ │ │ ├── CURLOPT_ADDRESS_SCOPE.3 │ │ │ ├── CURLOPT_ADDRESS_SCOPE.html │ │ │ ├── CURLOPT_ADDRESS_SCOPE.pdf │ │ │ ├── CURLOPT_APPEND.3 │ │ │ ├── CURLOPT_APPEND.html │ │ │ ├── CURLOPT_APPEND.pdf │ │ │ ├── CURLOPT_AUTOREFERER.3 │ │ │ ├── CURLOPT_AUTOREFERER.html │ │ │ ├── CURLOPT_AUTOREFERER.pdf │ │ │ ├── CURLOPT_BUFFERSIZE.3 │ │ │ ├── CURLOPT_BUFFERSIZE.html │ │ │ ├── CURLOPT_BUFFERSIZE.pdf │ │ │ ├── CURLOPT_CAINFO.3 │ │ │ ├── CURLOPT_CAINFO.html │ │ │ ├── CURLOPT_CAINFO.pdf │ │ │ ├── CURLOPT_CAPATH.3 │ │ │ ├── CURLOPT_CAPATH.html │ │ │ ├── CURLOPT_CAPATH.pdf │ │ │ ├── CURLOPT_CERTINFO.3 │ │ │ ├── CURLOPT_CERTINFO.html │ │ │ ├── CURLOPT_CERTINFO.pdf │ │ │ ├── CURLOPT_CHUNK_BGN_FUNCTION.3 │ │ │ ├── CURLOPT_CHUNK_BGN_FUNCTION.html │ │ │ ├── CURLOPT_CHUNK_BGN_FUNCTION.pdf │ │ │ ├── CURLOPT_CHUNK_DATA.3 │ │ │ ├── CURLOPT_CHUNK_DATA.html │ │ │ ├── CURLOPT_CHUNK_DATA.pdf │ │ │ ├── CURLOPT_CHUNK_END_FUNCTION.3 │ │ │ ├── CURLOPT_CHUNK_END_FUNCTION.html │ │ │ ├── CURLOPT_CHUNK_END_FUNCTION.pdf │ │ │ ├── CURLOPT_CLOSESOCKETDATA.3 │ │ │ ├── CURLOPT_CLOSESOCKETDATA.html │ │ │ ├── CURLOPT_CLOSESOCKETDATA.pdf │ │ │ ├── CURLOPT_CLOSESOCKETFUNCTION.3 │ │ │ ├── CURLOPT_CLOSESOCKETFUNCTION.html │ │ │ ├── CURLOPT_CLOSESOCKETFUNCTION.pdf │ │ │ ├── CURLOPT_CONNECTTIMEOUT.3 │ │ │ ├── CURLOPT_CONNECTTIMEOUT.html │ │ │ ├── CURLOPT_CONNECTTIMEOUT.pdf │ │ │ ├── CURLOPT_CONNECTTIMEOUT_MS.3 │ │ │ ├── CURLOPT_CONNECTTIMEOUT_MS.html │ │ │ ├── CURLOPT_CONNECTTIMEOUT_MS.pdf │ │ │ ├── CURLOPT_CONNECT_ONLY.3 │ │ │ ├── CURLOPT_CONNECT_ONLY.html │ │ │ ├── CURLOPT_CONNECT_ONLY.pdf │ │ │ ├── CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 │ │ │ ├── CURLOPT_CONV_FROM_NETWORK_FUNCTION.html │ │ │ ├── CURLOPT_CONV_FROM_NETWORK_FUNCTION.pdf │ │ │ ├── CURLOPT_CONV_FROM_UTF8_FUNCTION.3 │ │ │ ├── CURLOPT_CONV_FROM_UTF8_FUNCTION.html │ │ │ ├── CURLOPT_CONV_FROM_UTF8_FUNCTION.pdf │ │ │ ├── CURLOPT_CONV_TO_NETWORK_FUNCTION.3 │ │ │ ├── CURLOPT_CONV_TO_NETWORK_FUNCTION.html │ │ │ ├── CURLOPT_CONV_TO_NETWORK_FUNCTION.pdf │ │ │ ├── CURLOPT_COOKIE.3 │ │ │ ├── CURLOPT_COOKIE.html │ │ │ ├── CURLOPT_COOKIE.pdf │ │ │ ├── CURLOPT_COOKIEFILE.3 │ │ │ ├── CURLOPT_COOKIEFILE.html │ │ │ ├── CURLOPT_COOKIEFILE.pdf │ │ │ ├── CURLOPT_COOKIEJAR.3 │ │ │ ├── CURLOPT_COOKIEJAR.html │ │ │ ├── CURLOPT_COOKIEJAR.pdf │ │ │ ├── CURLOPT_COOKIELIST.3 │ │ │ ├── CURLOPT_COOKIELIST.html │ │ │ ├── CURLOPT_COOKIELIST.pdf │ │ │ ├── CURLOPT_COOKIESESSION.3 │ │ │ ├── CURLOPT_COOKIESESSION.html │ │ │ ├── CURLOPT_COOKIESESSION.pdf │ │ │ ├── CURLOPT_COPYPOSTFIELDS.3 │ │ │ ├── CURLOPT_COPYPOSTFIELDS.html │ │ │ ├── CURLOPT_COPYPOSTFIELDS.pdf │ │ │ ├── CURLOPT_CRLF.3 │ │ │ ├── CURLOPT_CRLF.html │ │ │ ├── CURLOPT_CRLF.pdf │ │ │ ├── CURLOPT_CRLFILE.3 │ │ │ ├── CURLOPT_CRLFILE.html │ │ │ ├── CURLOPT_CRLFILE.pdf │ │ │ ├── CURLOPT_CUSTOMREQUEST.3 │ │ │ ├── CURLOPT_CUSTOMREQUEST.html │ │ │ ├── CURLOPT_CUSTOMREQUEST.pdf │ │ │ ├── CURLOPT_DEBUGDATA.3 │ │ │ ├── CURLOPT_DEBUGDATA.html │ │ │ ├── CURLOPT_DEBUGDATA.pdf │ │ │ ├── CURLOPT_DEBUGFUNCTION.3 │ │ │ ├── CURLOPT_DEBUGFUNCTION.html │ │ │ ├── CURLOPT_DEBUGFUNCTION.pdf │ │ │ ├── CURLOPT_DIRLISTONLY.3 │ │ │ ├── CURLOPT_DIRLISTONLY.html │ │ │ ├── CURLOPT_DIRLISTONLY.pdf │ │ │ ├── CURLOPT_DNS_CACHE_TIMEOUT.3 │ │ │ ├── CURLOPT_DNS_CACHE_TIMEOUT.html │ │ │ ├── CURLOPT_DNS_CACHE_TIMEOUT.pdf │ │ │ ├── CURLOPT_DNS_INTERFACE.3 │ │ │ ├── CURLOPT_DNS_INTERFACE.html │ │ │ ├── CURLOPT_DNS_INTERFACE.pdf │ │ │ ├── CURLOPT_DNS_LOCAL_IP4.3 │ │ │ ├── CURLOPT_DNS_LOCAL_IP4.html │ │ │ ├── CURLOPT_DNS_LOCAL_IP4.pdf │ │ │ ├── CURLOPT_DNS_LOCAL_IP6.3 │ │ │ ├── CURLOPT_DNS_LOCAL_IP6.html │ │ │ ├── CURLOPT_DNS_LOCAL_IP6.pdf │ │ │ ├── CURLOPT_DNS_SERVERS.3 │ │ │ ├── CURLOPT_DNS_SERVERS.html │ │ │ ├── CURLOPT_DNS_SERVERS.pdf │ │ │ ├── CURLOPT_DNS_USE_GLOBAL_CACHE.3 │ │ │ ├── CURLOPT_DNS_USE_GLOBAL_CACHE.html │ │ │ ├── CURLOPT_DNS_USE_GLOBAL_CACHE.pdf │ │ │ ├── CURLOPT_EGDSOCKET.3 │ │ │ ├── CURLOPT_EGDSOCKET.html │ │ │ ├── CURLOPT_EGDSOCKET.pdf │ │ │ ├── CURLOPT_ERRORBUFFER.3 │ │ │ ├── CURLOPT_ERRORBUFFER.html │ │ │ ├── CURLOPT_ERRORBUFFER.pdf │ │ │ ├── CURLOPT_EXPECT_100_TIMEOUT_MS.3 │ │ │ ├── CURLOPT_EXPECT_100_TIMEOUT_MS.html │ │ │ ├── CURLOPT_EXPECT_100_TIMEOUT_MS.pdf │ │ │ ├── CURLOPT_FAILONERROR.3 │ │ │ ├── CURLOPT_FAILONERROR.html │ │ │ ├── CURLOPT_FAILONERROR.pdf │ │ │ ├── CURLOPT_FILETIME.3 │ │ │ ├── CURLOPT_FILETIME.html │ │ │ ├── CURLOPT_FILETIME.pdf │ │ │ ├── CURLOPT_FNMATCH_DATA.3 │ │ │ ├── CURLOPT_FNMATCH_DATA.html │ │ │ ├── CURLOPT_FNMATCH_DATA.pdf │ │ │ ├── CURLOPT_FNMATCH_FUNCTION.3 │ │ │ ├── CURLOPT_FNMATCH_FUNCTION.html │ │ │ ├── CURLOPT_FNMATCH_FUNCTION.pdf │ │ │ ├── CURLOPT_FOLLOWLOCATION.3 │ │ │ ├── CURLOPT_FOLLOWLOCATION.html │ │ │ ├── CURLOPT_FOLLOWLOCATION.pdf │ │ │ ├── CURLOPT_FORBID_REUSE.3 │ │ │ ├── CURLOPT_FORBID_REUSE.html │ │ │ ├── CURLOPT_FORBID_REUSE.pdf │ │ │ ├── CURLOPT_FRESH_CONNECT.3 │ │ │ ├── CURLOPT_FRESH_CONNECT.html │ │ │ ├── CURLOPT_FRESH_CONNECT.pdf │ │ │ ├── CURLOPT_FTPPORT.3 │ │ │ ├── CURLOPT_FTPPORT.html │ │ │ ├── CURLOPT_FTPPORT.pdf │ │ │ ├── CURLOPT_FTPSSLAUTH.3 │ │ │ ├── CURLOPT_FTPSSLAUTH.html │ │ │ ├── CURLOPT_FTPSSLAUTH.pdf │ │ │ ├── CURLOPT_FTP_ACCOUNT.3 │ │ │ ├── CURLOPT_FTP_ACCOUNT.html │ │ │ ├── CURLOPT_FTP_ACCOUNT.pdf │ │ │ ├── CURLOPT_FTP_ALTERNATIVE_TO_USER.3 │ │ │ ├── CURLOPT_FTP_ALTERNATIVE_TO_USER.html │ │ │ ├── CURLOPT_FTP_ALTERNATIVE_TO_USER.pdf │ │ │ ├── CURLOPT_FTP_CREATE_MISSING_DIRS.3 │ │ │ ├── CURLOPT_FTP_CREATE_MISSING_DIRS.html │ │ │ ├── CURLOPT_FTP_CREATE_MISSING_DIRS.pdf │ │ │ ├── CURLOPT_FTP_FILEMETHOD.3 │ │ │ ├── CURLOPT_FTP_FILEMETHOD.html │ │ │ ├── CURLOPT_FTP_FILEMETHOD.pdf │ │ │ ├── CURLOPT_FTP_RESPONSE_TIMEOUT.3 │ │ │ ├── CURLOPT_FTP_RESPONSE_TIMEOUT.html │ │ │ ├── CURLOPT_FTP_RESPONSE_TIMEOUT.pdf │ │ │ ├── CURLOPT_FTP_SKIP_PASV_IP.3 │ │ │ ├── CURLOPT_FTP_SKIP_PASV_IP.html │ │ │ ├── CURLOPT_FTP_SKIP_PASV_IP.pdf │ │ │ ├── CURLOPT_FTP_SSL_CCC.3 │ │ │ ├── CURLOPT_FTP_SSL_CCC.html │ │ │ ├── CURLOPT_FTP_SSL_CCC.pdf │ │ │ ├── CURLOPT_FTP_USE_EPRT.3 │ │ │ ├── CURLOPT_FTP_USE_EPRT.html │ │ │ ├── CURLOPT_FTP_USE_EPRT.pdf │ │ │ ├── CURLOPT_FTP_USE_EPSV.3 │ │ │ ├── CURLOPT_FTP_USE_EPSV.html │ │ │ ├── CURLOPT_FTP_USE_EPSV.pdf │ │ │ ├── CURLOPT_FTP_USE_PRET.3 │ │ │ ├── CURLOPT_FTP_USE_PRET.html │ │ │ ├── CURLOPT_FTP_USE_PRET.pdf │ │ │ ├── CURLOPT_GSSAPI_DELEGATION.3 │ │ │ ├── CURLOPT_GSSAPI_DELEGATION.html │ │ │ ├── CURLOPT_GSSAPI_DELEGATION.pdf │ │ │ ├── CURLOPT_HEADER.3 │ │ │ ├── CURLOPT_HEADER.html │ │ │ ├── CURLOPT_HEADER.pdf │ │ │ ├── CURLOPT_HEADERDATA.3 │ │ │ ├── CURLOPT_HEADERDATA.html │ │ │ ├── CURLOPT_HEADERDATA.pdf │ │ │ ├── CURLOPT_HEADERFUNCTION.3 │ │ │ ├── CURLOPT_HEADERFUNCTION.html │ │ │ ├── CURLOPT_HEADERFUNCTION.pdf │ │ │ ├── CURLOPT_HEADEROPT.3 │ │ │ ├── CURLOPT_HEADEROPT.html │ │ │ ├── CURLOPT_HEADEROPT.pdf │ │ │ ├── CURLOPT_HTTP200ALIASES.3 │ │ │ ├── CURLOPT_HTTP200ALIASES.html │ │ │ ├── CURLOPT_HTTP200ALIASES.pdf │ │ │ ├── CURLOPT_HTTPAUTH.3 │ │ │ ├── CURLOPT_HTTPAUTH.html │ │ │ ├── CURLOPT_HTTPAUTH.pdf │ │ │ ├── CURLOPT_HTTPGET.3 │ │ │ ├── CURLOPT_HTTPGET.html │ │ │ ├── CURLOPT_HTTPGET.pdf │ │ │ ├── CURLOPT_HTTPHEADER.3 │ │ │ ├── CURLOPT_HTTPHEADER.html │ │ │ ├── CURLOPT_HTTPHEADER.pdf │ │ │ ├── CURLOPT_HTTPPOST.3 │ │ │ ├── CURLOPT_HTTPPOST.html │ │ │ ├── CURLOPT_HTTPPOST.pdf │ │ │ ├── CURLOPT_HTTPPROXYTUNNEL.3 │ │ │ ├── CURLOPT_HTTPPROXYTUNNEL.html │ │ │ ├── CURLOPT_HTTPPROXYTUNNEL.pdf │ │ │ ├── CURLOPT_HTTP_CONTENT_DECODING.3 │ │ │ ├── CURLOPT_HTTP_CONTENT_DECODING.html │ │ │ ├── CURLOPT_HTTP_CONTENT_DECODING.pdf │ │ │ ├── CURLOPT_HTTP_TRANSFER_DECODING.3 │ │ │ ├── CURLOPT_HTTP_TRANSFER_DECODING.html │ │ │ ├── CURLOPT_HTTP_TRANSFER_DECODING.pdf │ │ │ ├── CURLOPT_HTTP_VERSION.3 │ │ │ ├── CURLOPT_HTTP_VERSION.html │ │ │ ├── CURLOPT_HTTP_VERSION.pdf │ │ │ ├── CURLOPT_IGNORE_CONTENT_LENGTH.3 │ │ │ ├── CURLOPT_IGNORE_CONTENT_LENGTH.html │ │ │ ├── CURLOPT_IGNORE_CONTENT_LENGTH.pdf │ │ │ ├── CURLOPT_INFILESIZE.3 │ │ │ ├── CURLOPT_INFILESIZE.html │ │ │ ├── CURLOPT_INFILESIZE.pdf │ │ │ ├── CURLOPT_INFILESIZE_LARGE.3 │ │ │ ├── CURLOPT_INFILESIZE_LARGE.html │ │ │ ├── CURLOPT_INFILESIZE_LARGE.pdf │ │ │ ├── CURLOPT_INTERFACE.3 │ │ │ ├── CURLOPT_INTERFACE.html │ │ │ ├── CURLOPT_INTERFACE.pdf │ │ │ ├── CURLOPT_INTERLEAVEDATA.3 │ │ │ ├── CURLOPT_INTERLEAVEDATA.html │ │ │ ├── CURLOPT_INTERLEAVEDATA.pdf │ │ │ ├── CURLOPT_INTERLEAVEFUNCTION.3 │ │ │ ├── CURLOPT_INTERLEAVEFUNCTION.html │ │ │ ├── CURLOPT_INTERLEAVEFUNCTION.pdf │ │ │ ├── CURLOPT_IOCTLDATA.3 │ │ │ ├── CURLOPT_IOCTLDATA.html │ │ │ ├── CURLOPT_IOCTLDATA.pdf │ │ │ ├── CURLOPT_IOCTLFUNCTION.3 │ │ │ ├── CURLOPT_IOCTLFUNCTION.html │ │ │ ├── CURLOPT_IOCTLFUNCTION.pdf │ │ │ ├── CURLOPT_IPRESOLVE.3 │ │ │ ├── CURLOPT_IPRESOLVE.html │ │ │ ├── CURLOPT_IPRESOLVE.pdf │ │ │ ├── CURLOPT_ISSUERCERT.3 │ │ │ ├── CURLOPT_ISSUERCERT.html │ │ │ ├── CURLOPT_ISSUERCERT.pdf │ │ │ ├── CURLOPT_KEYPASSWD.3 │ │ │ ├── CURLOPT_KEYPASSWD.html │ │ │ ├── CURLOPT_KEYPASSWD.pdf │ │ │ ├── CURLOPT_KRBLEVEL.3 │ │ │ ├── CURLOPT_KRBLEVEL.html │ │ │ ├── CURLOPT_KRBLEVEL.pdf │ │ │ ├── CURLOPT_LOCALPORT.3 │ │ │ ├── CURLOPT_LOCALPORT.html │ │ │ ├── CURLOPT_LOCALPORT.pdf │ │ │ ├── CURLOPT_LOCALPORTRANGE.3 │ │ │ ├── CURLOPT_LOCALPORTRANGE.html │ │ │ ├── CURLOPT_LOCALPORTRANGE.pdf │ │ │ ├── CURLOPT_LOGIN_OPTIONS.3 │ │ │ ├── CURLOPT_LOGIN_OPTIONS.html │ │ │ ├── CURLOPT_LOGIN_OPTIONS.pdf │ │ │ ├── CURLOPT_LOW_SPEED_LIMIT.3 │ │ │ ├── CURLOPT_LOW_SPEED_LIMIT.html │ │ │ ├── CURLOPT_LOW_SPEED_LIMIT.pdf │ │ │ ├── CURLOPT_LOW_SPEED_TIME.3 │ │ │ ├── CURLOPT_LOW_SPEED_TIME.html │ │ │ ├── CURLOPT_LOW_SPEED_TIME.pdf │ │ │ ├── CURLOPT_MAIL_AUTH.3 │ │ │ ├── CURLOPT_MAIL_AUTH.html │ │ │ ├── CURLOPT_MAIL_AUTH.pdf │ │ │ ├── CURLOPT_MAIL_FROM.3 │ │ │ ├── CURLOPT_MAIL_FROM.html │ │ │ ├── CURLOPT_MAIL_FROM.pdf │ │ │ ├── CURLOPT_MAIL_RCPT.3 │ │ │ ├── CURLOPT_MAIL_RCPT.html │ │ │ ├── CURLOPT_MAIL_RCPT.pdf │ │ │ ├── CURLOPT_MAXCONNECTS.3 │ │ │ ├── CURLOPT_MAXCONNECTS.html │ │ │ ├── CURLOPT_MAXCONNECTS.pdf │ │ │ ├── CURLOPT_MAXFILESIZE.3 │ │ │ ├── CURLOPT_MAXFILESIZE.html │ │ │ ├── CURLOPT_MAXFILESIZE.pdf │ │ │ ├── CURLOPT_MAXFILESIZE_LARGE.3 │ │ │ ├── CURLOPT_MAXFILESIZE_LARGE.html │ │ │ ├── CURLOPT_MAXFILESIZE_LARGE.pdf │ │ │ ├── CURLOPT_MAXREDIRS.3 │ │ │ ├── CURLOPT_MAXREDIRS.html │ │ │ ├── CURLOPT_MAXREDIRS.pdf │ │ │ ├── CURLOPT_MAX_RECV_SPEED_LARGE.3 │ │ │ ├── CURLOPT_MAX_RECV_SPEED_LARGE.html │ │ │ ├── CURLOPT_MAX_RECV_SPEED_LARGE.pdf │ │ │ ├── CURLOPT_MAX_SEND_SPEED_LARGE.3 │ │ │ ├── CURLOPT_MAX_SEND_SPEED_LARGE.html │ │ │ ├── CURLOPT_MAX_SEND_SPEED_LARGE.pdf │ │ │ ├── CURLOPT_NETRC.3 │ │ │ ├── CURLOPT_NETRC.html │ │ │ ├── CURLOPT_NETRC.pdf │ │ │ ├── CURLOPT_NETRC_FILE.3 │ │ │ ├── CURLOPT_NETRC_FILE.html │ │ │ ├── CURLOPT_NETRC_FILE.pdf │ │ │ ├── CURLOPT_NEW_DIRECTORY_PERMS.3 │ │ │ ├── CURLOPT_NEW_DIRECTORY_PERMS.html │ │ │ ├── CURLOPT_NEW_DIRECTORY_PERMS.pdf │ │ │ ├── CURLOPT_NEW_FILE_PERMS.3 │ │ │ ├── CURLOPT_NEW_FILE_PERMS.html │ │ │ ├── CURLOPT_NEW_FILE_PERMS.pdf │ │ │ ├── CURLOPT_NOBODY.3 │ │ │ ├── CURLOPT_NOBODY.html │ │ │ ├── CURLOPT_NOBODY.pdf │ │ │ ├── CURLOPT_NOPROGRESS.3 │ │ │ ├── CURLOPT_NOPROGRESS.html │ │ │ ├── CURLOPT_NOPROGRESS.pdf │ │ │ ├── CURLOPT_NOPROXY.3 │ │ │ ├── CURLOPT_NOPROXY.html │ │ │ ├── CURLOPT_NOPROXY.pdf │ │ │ ├── CURLOPT_NOSIGNAL.3 │ │ │ ├── CURLOPT_NOSIGNAL.html │ │ │ ├── CURLOPT_NOSIGNAL.pdf │ │ │ ├── CURLOPT_OPENSOCKETDATA.3 │ │ │ ├── CURLOPT_OPENSOCKETDATA.html │ │ │ ├── CURLOPT_OPENSOCKETDATA.pdf │ │ │ ├── CURLOPT_OPENSOCKETFUNCTION.3 │ │ │ ├── CURLOPT_OPENSOCKETFUNCTION.html │ │ │ ├── CURLOPT_OPENSOCKETFUNCTION.pdf │ │ │ ├── CURLOPT_PASSWORD.3 │ │ │ ├── CURLOPT_PASSWORD.html │ │ │ ├── CURLOPT_PASSWORD.pdf │ │ │ ├── CURLOPT_PORT.3 │ │ │ ├── CURLOPT_PORT.html │ │ │ ├── CURLOPT_PORT.pdf │ │ │ ├── CURLOPT_POST.3 │ │ │ ├── CURLOPT_POST.html │ │ │ ├── CURLOPT_POST.pdf │ │ │ ├── CURLOPT_POSTFIELDS.3 │ │ │ ├── CURLOPT_POSTFIELDS.html │ │ │ ├── CURLOPT_POSTFIELDS.pdf │ │ │ ├── CURLOPT_POSTFIELDSIZE.3 │ │ │ ├── CURLOPT_POSTFIELDSIZE.html │ │ │ ├── CURLOPT_POSTFIELDSIZE.pdf │ │ │ ├── CURLOPT_POSTFIELDSIZE_LARGE.3 │ │ │ ├── CURLOPT_POSTFIELDSIZE_LARGE.html │ │ │ ├── CURLOPT_POSTFIELDSIZE_LARGE.pdf │ │ │ ├── CURLOPT_POSTQUOTE.3 │ │ │ ├── CURLOPT_POSTQUOTE.html │ │ │ ├── CURLOPT_POSTQUOTE.pdf │ │ │ ├── CURLOPT_POSTREDIR.3 │ │ │ ├── CURLOPT_POSTREDIR.html │ │ │ ├── CURLOPT_POSTREDIR.pdf │ │ │ ├── CURLOPT_PREQUOTE.3 │ │ │ ├── CURLOPT_PREQUOTE.html │ │ │ ├── CURLOPT_PREQUOTE.pdf │ │ │ ├── CURLOPT_PRIVATE.3 │ │ │ ├── CURLOPT_PRIVATE.html │ │ │ ├── CURLOPT_PRIVATE.pdf │ │ │ ├── CURLOPT_PROGRESSDATA.3 │ │ │ ├── CURLOPT_PROGRESSDATA.html │ │ │ ├── CURLOPT_PROGRESSDATA.pdf │ │ │ ├── CURLOPT_PROGRESSFUNCTION.3 │ │ │ ├── CURLOPT_PROGRESSFUNCTION.html │ │ │ ├── CURLOPT_PROGRESSFUNCTION.pdf │ │ │ ├── CURLOPT_PROTOCOLS.3 │ │ │ ├── CURLOPT_PROTOCOLS.html │ │ │ ├── CURLOPT_PROTOCOLS.pdf │ │ │ ├── CURLOPT_PROXY.3 │ │ │ ├── CURLOPT_PROXY.html │ │ │ ├── CURLOPT_PROXY.pdf │ │ │ ├── CURLOPT_PROXYAUTH.3 │ │ │ ├── CURLOPT_PROXYAUTH.html │ │ │ ├── CURLOPT_PROXYAUTH.pdf │ │ │ ├── CURLOPT_PROXYHEADER.3 │ │ │ ├── CURLOPT_PROXYHEADER.html │ │ │ ├── CURLOPT_PROXYHEADER.pdf │ │ │ ├── CURLOPT_PROXYPASSWORD.3 │ │ │ ├── CURLOPT_PROXYPASSWORD.html │ │ │ ├── CURLOPT_PROXYPASSWORD.pdf │ │ │ ├── CURLOPT_PROXYPORT.3 │ │ │ ├── CURLOPT_PROXYPORT.html │ │ │ ├── CURLOPT_PROXYPORT.pdf │ │ │ ├── CURLOPT_PROXYTYPE.3 │ │ │ ├── CURLOPT_PROXYTYPE.html │ │ │ ├── CURLOPT_PROXYTYPE.pdf │ │ │ ├── CURLOPT_PROXYUSERNAME.3 │ │ │ ├── CURLOPT_PROXYUSERNAME.html │ │ │ ├── CURLOPT_PROXYUSERNAME.pdf │ │ │ ├── CURLOPT_PROXYUSERPWD.3 │ │ │ ├── CURLOPT_PROXYUSERPWD.html │ │ │ ├── CURLOPT_PROXYUSERPWD.pdf │ │ │ ├── CURLOPT_PROXY_TRANSFER_MODE.3 │ │ │ ├── CURLOPT_PROXY_TRANSFER_MODE.html │ │ │ ├── CURLOPT_PROXY_TRANSFER_MODE.pdf │ │ │ ├── CURLOPT_PUT.3 │ │ │ ├── CURLOPT_PUT.html │ │ │ ├── CURLOPT_PUT.pdf │ │ │ ├── CURLOPT_QUOTE.3 │ │ │ ├── CURLOPT_QUOTE.html │ │ │ ├── CURLOPT_QUOTE.pdf │ │ │ ├── CURLOPT_RANDOM_FILE.3 │ │ │ ├── CURLOPT_RANDOM_FILE.html │ │ │ ├── CURLOPT_RANDOM_FILE.pdf │ │ │ ├── CURLOPT_RANGE.3 │ │ │ ├── CURLOPT_RANGE.html │ │ │ ├── CURLOPT_RANGE.pdf │ │ │ ├── CURLOPT_READDATA.3 │ │ │ ├── CURLOPT_READDATA.html │ │ │ ├── CURLOPT_READDATA.pdf │ │ │ ├── CURLOPT_READFUNCTION.3 │ │ │ ├── CURLOPT_READFUNCTION.html │ │ │ ├── CURLOPT_READFUNCTION.pdf │ │ │ ├── CURLOPT_REDIR_PROTOCOLS.3 │ │ │ ├── CURLOPT_REDIR_PROTOCOLS.html │ │ │ ├── CURLOPT_REDIR_PROTOCOLS.pdf │ │ │ ├── CURLOPT_REFERER.3 │ │ │ ├── CURLOPT_REFERER.html │ │ │ ├── CURLOPT_REFERER.pdf │ │ │ ├── CURLOPT_RESOLVE.3 │ │ │ ├── CURLOPT_RESOLVE.html │ │ │ ├── CURLOPT_RESOLVE.pdf │ │ │ ├── CURLOPT_RESUME_FROM.3 │ │ │ ├── CURLOPT_RESUME_FROM.html │ │ │ ├── CURLOPT_RESUME_FROM.pdf │ │ │ ├── CURLOPT_RESUME_FROM_LARGE.3 │ │ │ ├── CURLOPT_RESUME_FROM_LARGE.html │ │ │ ├── CURLOPT_RESUME_FROM_LARGE.pdf │ │ │ ├── CURLOPT_RTSP_CLIENT_CSEQ.3 │ │ │ ├── CURLOPT_RTSP_CLIENT_CSEQ.html │ │ │ ├── CURLOPT_RTSP_CLIENT_CSEQ.pdf │ │ │ ├── CURLOPT_RTSP_REQUEST.3 │ │ │ ├── CURLOPT_RTSP_REQUEST.html │ │ │ ├── CURLOPT_RTSP_REQUEST.pdf │ │ │ ├── CURLOPT_RTSP_SERVER_CSEQ.3 │ │ │ ├── CURLOPT_RTSP_SERVER_CSEQ.html │ │ │ ├── CURLOPT_RTSP_SERVER_CSEQ.pdf │ │ │ ├── CURLOPT_RTSP_SESSION_ID.3 │ │ │ ├── CURLOPT_RTSP_SESSION_ID.html │ │ │ ├── CURLOPT_RTSP_SESSION_ID.pdf │ │ │ ├── CURLOPT_RTSP_STREAM_URI.3 │ │ │ ├── CURLOPT_RTSP_STREAM_URI.html │ │ │ ├── CURLOPT_RTSP_STREAM_URI.pdf │ │ │ ├── CURLOPT_RTSP_TRANSPORT.3 │ │ │ ├── CURLOPT_RTSP_TRANSPORT.html │ │ │ ├── CURLOPT_RTSP_TRANSPORT.pdf │ │ │ ├── CURLOPT_SASL_IR.3 │ │ │ ├── CURLOPT_SASL_IR.html │ │ │ ├── CURLOPT_SASL_IR.pdf │ │ │ ├── CURLOPT_SEEKDATA.3 │ │ │ ├── CURLOPT_SEEKDATA.html │ │ │ ├── CURLOPT_SEEKDATA.pdf │ │ │ ├── CURLOPT_SEEKFUNCTION.3 │ │ │ ├── CURLOPT_SEEKFUNCTION.html │ │ │ ├── CURLOPT_SEEKFUNCTION.pdf │ │ │ ├── CURLOPT_SHARE.3 │ │ │ ├── CURLOPT_SHARE.html │ │ │ ├── CURLOPT_SHARE.pdf │ │ │ ├── CURLOPT_SOCKOPTDATA.3 │ │ │ ├── CURLOPT_SOCKOPTDATA.html │ │ │ ├── CURLOPT_SOCKOPTDATA.pdf │ │ │ ├── CURLOPT_SOCKOPTFUNCTION.3 │ │ │ ├── CURLOPT_SOCKOPTFUNCTION.html │ │ │ ├── CURLOPT_SOCKOPTFUNCTION.pdf │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_NEC.3 │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_NEC.html │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_NEC.pdf │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_SERVICE.3 │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_SERVICE.html │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_SERVICE.pdf │ │ │ ├── CURLOPT_SSH_AUTH_TYPES.3 │ │ │ ├── CURLOPT_SSH_AUTH_TYPES.html │ │ │ ├── CURLOPT_SSH_AUTH_TYPES.pdf │ │ │ ├── CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 │ │ │ ├── CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.html │ │ │ ├── CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.pdf │ │ │ ├── CURLOPT_SSH_KEYDATA.3 │ │ │ ├── CURLOPT_SSH_KEYDATA.html │ │ │ ├── CURLOPT_SSH_KEYDATA.pdf │ │ │ ├── CURLOPT_SSH_KEYFUNCTION.3 │ │ │ ├── CURLOPT_SSH_KEYFUNCTION.html │ │ │ ├── CURLOPT_SSH_KEYFUNCTION.pdf │ │ │ ├── CURLOPT_SSH_KNOWNHOSTS.3 │ │ │ ├── CURLOPT_SSH_KNOWNHOSTS.html │ │ │ ├── CURLOPT_SSH_KNOWNHOSTS.pdf │ │ │ ├── CURLOPT_SSH_PRIVATE_KEYFILE.3 │ │ │ ├── CURLOPT_SSH_PRIVATE_KEYFILE.html │ │ │ ├── CURLOPT_SSH_PRIVATE_KEYFILE.pdf │ │ │ ├── CURLOPT_SSH_PUBLIC_KEYFILE.3 │ │ │ ├── CURLOPT_SSH_PUBLIC_KEYFILE.html │ │ │ ├── CURLOPT_SSH_PUBLIC_KEYFILE.pdf │ │ │ ├── CURLOPT_SSLCERT.3 │ │ │ ├── CURLOPT_SSLCERT.html │ │ │ ├── CURLOPT_SSLCERT.pdf │ │ │ ├── CURLOPT_SSLCERTTYPE.3 │ │ │ ├── CURLOPT_SSLCERTTYPE.html │ │ │ ├── CURLOPT_SSLCERTTYPE.pdf │ │ │ ├── CURLOPT_SSLENGINE.3 │ │ │ ├── CURLOPT_SSLENGINE.html │ │ │ ├── CURLOPT_SSLENGINE.pdf │ │ │ ├── CURLOPT_SSLENGINE_DEFAULT.3 │ │ │ ├── CURLOPT_SSLENGINE_DEFAULT.html │ │ │ ├── CURLOPT_SSLENGINE_DEFAULT.pdf │ │ │ ├── CURLOPT_SSLKEY.3 │ │ │ ├── CURLOPT_SSLKEY.html │ │ │ ├── CURLOPT_SSLKEY.pdf │ │ │ ├── CURLOPT_SSLKEYTYPE.3 │ │ │ ├── CURLOPT_SSLKEYTYPE.html │ │ │ ├── CURLOPT_SSLKEYTYPE.pdf │ │ │ ├── CURLOPT_SSLVERSION.3 │ │ │ ├── CURLOPT_SSLVERSION.html │ │ │ ├── CURLOPT_SSLVERSION.pdf │ │ │ ├── CURLOPT_SSL_CIPHER_LIST.3 │ │ │ ├── CURLOPT_SSL_CIPHER_LIST.html │ │ │ ├── CURLOPT_SSL_CIPHER_LIST.pdf │ │ │ ├── CURLOPT_SSL_CTX_DATA.3 │ │ │ ├── CURLOPT_SSL_CTX_DATA.html │ │ │ ├── CURLOPT_SSL_CTX_DATA.pdf │ │ │ ├── CURLOPT_SSL_CTX_FUNCTION.3 │ │ │ ├── CURLOPT_SSL_CTX_FUNCTION.html │ │ │ ├── CURLOPT_SSL_CTX_FUNCTION.pdf │ │ │ ├── CURLOPT_SSL_ENABLE_ALPN.3 │ │ │ ├── CURLOPT_SSL_ENABLE_ALPN.html │ │ │ ├── CURLOPT_SSL_ENABLE_ALPN.pdf │ │ │ ├── CURLOPT_SSL_ENABLE_NPN.3 │ │ │ ├── CURLOPT_SSL_ENABLE_NPN.html │ │ │ ├── CURLOPT_SSL_ENABLE_NPN.pdf │ │ │ ├── CURLOPT_SSL_OPTIONS.3 │ │ │ ├── CURLOPT_SSL_OPTIONS.html │ │ │ ├── CURLOPT_SSL_OPTIONS.pdf │ │ │ ├── CURLOPT_SSL_SESSIONID_CACHE.3 │ │ │ ├── CURLOPT_SSL_SESSIONID_CACHE.html │ │ │ ├── CURLOPT_SSL_SESSIONID_CACHE.pdf │ │ │ ├── CURLOPT_SSL_VERIFYHOST.3 │ │ │ ├── CURLOPT_SSL_VERIFYHOST.html │ │ │ ├── CURLOPT_SSL_VERIFYHOST.pdf │ │ │ ├── CURLOPT_SSL_VERIFYPEER.3 │ │ │ ├── CURLOPT_SSL_VERIFYPEER.html │ │ │ ├── CURLOPT_SSL_VERIFYPEER.pdf │ │ │ ├── CURLOPT_STDERR.3 │ │ │ ├── CURLOPT_STDERR.html │ │ │ ├── CURLOPT_STDERR.pdf │ │ │ ├── CURLOPT_TCP_KEEPALIVE.3 │ │ │ ├── CURLOPT_TCP_KEEPALIVE.html │ │ │ ├── CURLOPT_TCP_KEEPALIVE.pdf │ │ │ ├── CURLOPT_TCP_KEEPIDLE.3 │ │ │ ├── CURLOPT_TCP_KEEPIDLE.html │ │ │ ├── CURLOPT_TCP_KEEPIDLE.pdf │ │ │ ├── CURLOPT_TCP_KEEPINTVL.3 │ │ │ ├── CURLOPT_TCP_KEEPINTVL.html │ │ │ ├── CURLOPT_TCP_KEEPINTVL.pdf │ │ │ ├── CURLOPT_TCP_NODELAY.3 │ │ │ ├── CURLOPT_TCP_NODELAY.html │ │ │ ├── CURLOPT_TCP_NODELAY.pdf │ │ │ ├── CURLOPT_TELNETOPTIONS.3 │ │ │ ├── CURLOPT_TELNETOPTIONS.html │ │ │ ├── CURLOPT_TELNETOPTIONS.pdf │ │ │ ├── CURLOPT_TFTP_BLKSIZE.3 │ │ │ ├── CURLOPT_TFTP_BLKSIZE.html │ │ │ ├── CURLOPT_TFTP_BLKSIZE.pdf │ │ │ ├── CURLOPT_TIMECONDITION.3 │ │ │ ├── CURLOPT_TIMECONDITION.html │ │ │ ├── CURLOPT_TIMECONDITION.pdf │ │ │ ├── CURLOPT_TIMEOUT.3 │ │ │ ├── CURLOPT_TIMEOUT.html │ │ │ ├── CURLOPT_TIMEOUT.pdf │ │ │ ├── CURLOPT_TIMEOUT_MS.3 │ │ │ ├── CURLOPT_TIMEOUT_MS.html │ │ │ ├── CURLOPT_TIMEOUT_MS.pdf │ │ │ ├── CURLOPT_TIMEVALUE.3 │ │ │ ├── CURLOPT_TIMEVALUE.html │ │ │ ├── CURLOPT_TIMEVALUE.pdf │ │ │ ├── CURLOPT_TLSAUTH_PASSWORD.3 │ │ │ ├── CURLOPT_TLSAUTH_PASSWORD.html │ │ │ ├── CURLOPT_TLSAUTH_PASSWORD.pdf │ │ │ ├── CURLOPT_TLSAUTH_TYPE.3 │ │ │ ├── CURLOPT_TLSAUTH_TYPE.html │ │ │ ├── CURLOPT_TLSAUTH_TYPE.pdf │ │ │ ├── CURLOPT_TLSAUTH_USERNAME.3 │ │ │ ├── CURLOPT_TLSAUTH_USERNAME.html │ │ │ ├── CURLOPT_TLSAUTH_USERNAME.pdf │ │ │ ├── CURLOPT_TRANSFERTEXT.3 │ │ │ ├── CURLOPT_TRANSFERTEXT.html │ │ │ ├── CURLOPT_TRANSFERTEXT.pdf │ │ │ ├── CURLOPT_TRANSFER_ENCODING.3 │ │ │ ├── CURLOPT_TRANSFER_ENCODING.html │ │ │ ├── CURLOPT_TRANSFER_ENCODING.pdf │ │ │ ├── CURLOPT_UNRESTRICTED_AUTH.3 │ │ │ ├── CURLOPT_UNRESTRICTED_AUTH.html │ │ │ ├── CURLOPT_UNRESTRICTED_AUTH.pdf │ │ │ ├── CURLOPT_UPLOAD.3 │ │ │ ├── CURLOPT_UPLOAD.html │ │ │ ├── CURLOPT_UPLOAD.pdf │ │ │ ├── CURLOPT_URL.3 │ │ │ ├── CURLOPT_URL.html │ │ │ ├── CURLOPT_URL.pdf │ │ │ ├── CURLOPT_USERAGENT.3 │ │ │ ├── CURLOPT_USERAGENT.html │ │ │ ├── CURLOPT_USERAGENT.pdf │ │ │ ├── CURLOPT_USERNAME.3 │ │ │ ├── CURLOPT_USERNAME.html │ │ │ ├── CURLOPT_USERNAME.pdf │ │ │ ├── CURLOPT_USERPWD.3 │ │ │ ├── CURLOPT_USERPWD.html │ │ │ ├── CURLOPT_USERPWD.pdf │ │ │ ├── CURLOPT_USE_SSL.3 │ │ │ ├── CURLOPT_USE_SSL.html │ │ │ ├── CURLOPT_USE_SSL.pdf │ │ │ ├── CURLOPT_VERBOSE.3 │ │ │ ├── CURLOPT_VERBOSE.html │ │ │ ├── CURLOPT_VERBOSE.pdf │ │ │ ├── CURLOPT_WILDCARDMATCH.3 │ │ │ ├── CURLOPT_WILDCARDMATCH.html │ │ │ ├── CURLOPT_WILDCARDMATCH.pdf │ │ │ ├── CURLOPT_WRITEDATA.3 │ │ │ ├── CURLOPT_WRITEDATA.html │ │ │ ├── CURLOPT_WRITEDATA.pdf │ │ │ ├── CURLOPT_WRITEFUNCTION.3 │ │ │ ├── CURLOPT_WRITEFUNCTION.html │ │ │ ├── CURLOPT_WRITEFUNCTION.pdf │ │ │ ├── CURLOPT_XFERINFODATA.3 │ │ │ ├── CURLOPT_XFERINFODATA.html │ │ │ ├── CURLOPT_XFERINFODATA.pdf │ │ │ ├── CURLOPT_XFERINFOFUNCTION.3 │ │ │ ├── CURLOPT_XFERINFOFUNCTION.html │ │ │ ├── CURLOPT_XFERINFOFUNCTION.pdf │ │ │ ├── CURLOPT_XOAUTH2_BEARER.3 │ │ │ ├── CURLOPT_XOAUTH2_BEARER.html │ │ │ ├── CURLOPT_XOAUTH2_BEARER.pdf │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ ├── symbols-in-versions │ │ └── symbols.pl │ ├── mk-ca-bundle.html │ └── mk-ca-bundle.pdf ├── include │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ └── curl │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlbuild.h.cmake │ │ ├── curlbuild.h.in │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h ├── install-sh ├── lib │ ├── CMakeLists.txt │ ├── Makefile.Watcom │ ├── Makefile.am │ ├── Makefile.b32 │ ├── Makefile.in │ ├── Makefile.inc │ ├── Makefile.m32 │ ├── Makefile.netware │ ├── Makefile.vc10 │ ├── Makefile.vc6 │ ├── Makefile.vc8 │ ├── Makefile.vc9 │ ├── Makefile.vxworks │ ├── README.ares │ ├── README.curl_off_t │ ├── README.curlx │ ├── README.encoding │ ├── README.hostip │ ├── README.httpauth │ ├── README.memoryleak │ ├── README.multi_socket │ ├── README.pingpong │ ├── README.pipelining │ ├── amigaos.c │ ├── amigaos.h │ ├── arpa_telnet.h │ ├── asyn-ares.c │ ├── asyn-thread.c │ ├── asyn.h │ ├── base64.c │ ├── bundles.c │ ├── bundles.h │ ├── checksrc.pl │ ├── config-amigaos.h │ ├── config-dos.h │ ├── config-mac.h │ ├── config-os400.h │ ├── config-riscos.h │ ├── config-symbian.h │ ├── config-tpf.h │ ├── config-vxworks.h │ ├── config-win32.h │ ├── config-win32ce.h │ ├── conncache.c │ ├── conncache.h │ ├── connect.c │ ├── connect.h │ ├── content_encoding.c │ ├── content_encoding.h │ ├── cookie.c │ ├── cookie.h │ ├── curl_addrinfo.c │ ├── curl_addrinfo.h │ ├── curl_base64.h │ ├── curl_config.h.cmake │ ├── curl_config.h.in │ ├── curl_fnmatch.c │ ├── curl_fnmatch.h │ ├── curl_gethostname.c │ ├── curl_gethostname.h │ ├── curl_gssapi.c │ ├── curl_gssapi.h │ ├── curl_hmac.h │ ├── curl_ldap.h │ ├── curl_md4.h │ ├── curl_md5.h │ ├── curl_memory.h │ ├── curl_memrchr.c │ ├── curl_memrchr.h │ ├── curl_multibyte.c │ ├── curl_multibyte.h │ ├── curl_ntlm.c │ ├── curl_ntlm.h │ ├── curl_ntlm_core.c │ ├── curl_ntlm_core.h │ ├── curl_ntlm_msgs.c │ ├── curl_ntlm_msgs.h │ ├── curl_ntlm_wb.c │ ├── curl_ntlm_wb.h │ ├── curl_rtmp.c │ ├── curl_rtmp.h │ ├── curl_sasl.c │ ├── curl_sasl.h │ ├── curl_sasl_sspi.c │ ├── curl_sec.h │ ├── curl_setup.h │ ├── curl_setup_once.h │ ├── curl_sspi.c │ ├── curl_sspi.h │ ├── curl_threads.c │ ├── curl_threads.h │ ├── curlx.h │ ├── dict.c │ ├── dict.h │ ├── dotdot.c │ ├── dotdot.h │ ├── easy.c │ ├── easyif.h │ ├── escape.c │ ├── escape.h │ ├── file.c │ ├── file.h │ ├── fileinfo.c │ ├── fileinfo.h │ ├── firefox-db2pem.sh │ ├── formdata.c │ ├── formdata.h │ ├── ftp.c │ ├── ftp.h │ ├── ftplistparser.c │ ├── ftplistparser.h │ ├── getenv.c │ ├── getinfo.c │ ├── getinfo.h │ ├── gopher.c │ ├── gopher.h │ ├── hash.c │ ├── hash.h │ ├── hmac.c │ ├── hostasyn.c │ ├── hostcheck.c │ ├── hostcheck.h │ ├── hostip.c │ ├── hostip.h │ ├── hostip4.c │ ├── hostip6.c │ ├── hostsyn.c │ ├── http.c │ ├── http.h │ ├── http2.c │ ├── http2.h │ ├── http_chunks.c │ ├── http_chunks.h │ ├── http_digest.c │ ├── http_digest.h │ ├── http_negotiate.c │ ├── http_negotiate.h │ ├── http_negotiate_sspi.c │ ├── http_proxy.c │ ├── http_proxy.h │ ├── idn_win32.c │ ├── if2ip.c │ ├── if2ip.h │ ├── imap.c │ ├── imap.h │ ├── inet_ntop.c │ ├── inet_ntop.h │ ├── inet_pton.c │ ├── inet_pton.h │ ├── krb5.c │ ├── ldap.c │ ├── libcurl.plist │ ├── libcurl.rc │ ├── libcurl.vers.in │ ├── llist.c │ ├── llist.h │ ├── makefile.amiga │ ├── makefile.dj │ ├── md4.c │ ├── md5.c │ ├── memdebug.c │ ├── memdebug.h │ ├── mk-ca-bundle.pl │ ├── mk-ca-bundle.vbs │ ├── mprintf.c │ ├── multi.c │ ├── multihandle.h │ ├── multiif.h │ ├── netrc.c │ ├── netrc.h │ ├── non-ascii.c │ ├── non-ascii.h │ ├── nonblock.c │ ├── nonblock.h │ ├── nwlib.c │ ├── nwos.c │ ├── objnames-test08.sh │ ├── objnames-test10.sh │ ├── objnames.inc │ ├── openldap.c │ ├── parsedate.c │ ├── parsedate.h │ ├── pingpong.c │ ├── pingpong.h │ ├── pipeline.c │ ├── pipeline.h │ ├── pop3.c │ ├── pop3.h │ ├── progress.c │ ├── progress.h │ ├── rawstr.c │ ├── rawstr.h │ ├── rtsp.c │ ├── rtsp.h │ ├── security.c │ ├── select.c │ ├── select.h │ ├── sendf.c │ ├── sendf.h │ ├── setup-os400.h │ ├── setup-vms.h │ ├── share.c │ ├── share.h │ ├── sigpipe.h │ ├── slist.c │ ├── slist.h │ ├── smtp.c │ ├── smtp.h │ ├── sockaddr.h │ ├── socks.c │ ├── socks.h │ ├── socks_gssapi.c │ ├── socks_sspi.c │ ├── speedcheck.c │ ├── speedcheck.h │ ├── splay.c │ ├── splay.h │ ├── ssh.c │ ├── ssh.h │ ├── strdup.c │ ├── strdup.h │ ├── strequal.c │ ├── strequal.h │ ├── strerror.c │ ├── strerror.h │ ├── strtok.c │ ├── strtok.h │ ├── strtoofft.c │ ├── strtoofft.h │ ├── telnet.c │ ├── telnet.h │ ├── tftp.c │ ├── tftp.h │ ├── timeval.c │ ├── timeval.h │ ├── transfer.c │ ├── transfer.h │ ├── url.c │ ├── url.h │ ├── urldata.h │ ├── version.c │ ├── vtls │ │ ├── axtls.c │ │ ├── axtls.h │ │ ├── curl_darwinssl.c │ │ ├── curl_darwinssl.h │ │ ├── curl_schannel.c │ │ ├── curl_schannel.h │ │ ├── cyassl.c │ │ ├── cyassl.h │ │ ├── gskit.c │ │ ├── gskit.h │ │ ├── gtls.c │ │ ├── gtls.h │ │ ├── nss.c │ │ ├── nssg.h │ │ ├── openssl.c │ │ ├── openssl.h │ │ ├── polarssl.c │ │ ├── polarssl.h │ │ ├── polarssl_threadlock.c │ │ ├── polarssl_threadlock.h │ │ ├── vtls.c │ │ └── vtls.h │ ├── warnless.c │ ├── warnless.h │ ├── wildcard.c │ ├── wildcard.h │ ├── x509asn1.c │ └── x509asn1.h ├── libcurl.pc.in ├── ltmain.sh ├── m4 │ ├── curl-compilers.m4 │ ├── curl-confopts.m4 │ ├── curl-functions.m4 │ ├── curl-openssl.m4 │ ├── curl-override.m4 │ ├── curl-reentrant.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── xc-am-iface.m4 │ ├── xc-cc-check.m4 │ ├── xc-lt-iface.m4 │ ├── xc-translit.m4 │ ├── xc-val-flgs.m4 │ ├── zz40-xc-ovr.m4 │ ├── zz50-xc-ovr.m4 │ └── zz60-xc-ovr.m4 ├── maketgz ├── missing ├── mkinstalldirs ├── packages │ ├── AIX │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── RPM │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── curl.spec.in │ ├── Android │ │ └── Android.mk │ ├── DOS │ │ ├── README │ │ └── common.dj │ ├── EPM │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ └── curl.list.in │ ├── Linux │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── RPM │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── curl-ssl.spec.in │ │ │ ├── curl.spec.in │ │ │ └── make_curl_rpm │ ├── Makefile.am │ ├── Makefile.in │ ├── NetWare │ │ ├── get_exp.awk │ │ └── get_ver.awk │ ├── OS400 │ │ ├── README.OS400 │ │ ├── ccsidcurl.c │ │ ├── ccsidcurl.h │ │ ├── curl.inc.in │ │ ├── initscript.sh │ │ ├── make-include.sh │ │ ├── make-lib.sh │ │ ├── make-src.sh │ │ ├── make-tests.sh │ │ ├── makefile.sh │ │ ├── os400sys.c │ │ └── os400sys.h │ ├── README │ ├── Solaris │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── Symbian │ │ ├── bwins │ │ │ └── libcurlu.def │ │ ├── eabi │ │ │ └── libcurlu.def │ │ ├── group │ │ │ ├── bld.inf │ │ │ ├── curl.iby │ │ │ ├── curl.mmp │ │ │ ├── curl.pkg │ │ │ ├── libcurl.iby │ │ │ ├── libcurl.mmp │ │ │ └── libcurl.pkg │ │ └── readme.txt │ ├── TPF │ │ ├── curl.mak │ │ ├── maketpf.env_curl │ │ └── maketpf.env_curllib │ ├── Win32 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ └── cygwin │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── README │ └── vms │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── backup_gnv_curl_src.com │ │ ├── build_curl-config_script.com │ │ ├── build_gnv_curl.com │ │ ├── build_gnv_curl_pcsi_desc.com │ │ ├── build_gnv_curl_pcsi_text.com │ │ ├── build_gnv_curl_release_notes.com │ │ ├── build_libcurl_pc.com │ │ ├── build_vms.com │ │ ├── clean_gnv_curl.com │ │ ├── compare_curl_source.com │ │ ├── config_h.com │ │ ├── curl_crtl_init.c │ │ ├── curl_gnv_build_steps.txt │ │ ├── curl_release_note_start.txt │ │ ├── curl_startup.com │ │ ├── curlmsg.h │ │ ├── curlmsg.msg │ │ ├── curlmsg.sdl │ │ ├── curlmsg_vms.h │ │ ├── generate_config_vms_h_curl.com │ │ ├── generate_vax_transfer.com │ │ ├── gnv_conftest.c_first │ │ ├── gnv_curl_configure.sh │ │ ├── gnv_libcurl_symbols.opt │ │ ├── gnv_link_curl.com │ │ ├── macro32_exactcase.patch │ │ ├── make_gnv_curl_install.sh │ │ ├── make_pcsi_curl_kit_name.com │ │ ├── pcsi_gnv_curl_file_list.txt │ │ ├── pcsi_product_gnv_curl.com │ │ ├── readme │ │ ├── report_openssl_version.c │ │ ├── setup_gnv_curl_build.com │ │ ├── stage_curl_install.com │ │ └── vms_eco_level.h ├── projects │ ├── README │ ├── Windows │ │ ├── VC10 │ │ │ ├── curl.sln │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ └── libcurl.vcxproj │ │ │ └── src │ │ │ │ ├── curlsrc.sln │ │ │ │ └── curlsrc.vcxproj │ │ ├── VC11 │ │ │ ├── curl.sln │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ └── libcurl.vcxproj │ │ │ └── src │ │ │ │ ├── curlsrc.sln │ │ │ │ └── curlsrc.vcxproj │ │ ├── VC12 │ │ │ ├── curl.sln │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ └── libcurl.vcxproj │ │ │ └── src │ │ │ │ ├── curlsrc.sln │ │ │ │ └── curlsrc.vcxproj │ │ ├── VC6 │ │ │ ├── curl.dsw │ │ │ ├── lib │ │ │ │ ├── libcurl.dsp │ │ │ │ └── libcurl.dsw │ │ │ └── src │ │ │ │ ├── curlsrc.dsp │ │ │ │ └── curlsrc.dsw │ │ ├── VC7.1 │ │ │ ├── curl.sln │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ └── libcurl.vcproj │ │ │ └── src │ │ │ │ ├── curlsrc.sln │ │ │ │ └── curlsrc.vcproj │ │ ├── VC7 │ │ │ ├── curl.sln │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ └── libcurl.vcproj │ │ │ └── src │ │ │ │ ├── curlsrc.sln │ │ │ │ └── curlsrc.vcproj │ │ ├── VC8 │ │ │ ├── curl.sln │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ └── libcurl.vcproj │ │ │ └── src │ │ │ │ ├── curlsrc.sln │ │ │ │ └── curlsrc.vcproj │ │ └── VC9 │ │ │ ├── curl.sln │ │ │ ├── lib │ │ │ ├── libcurl.sln │ │ │ └── libcurl.vcproj │ │ │ └── src │ │ │ ├── curlsrc.sln │ │ │ └── curlsrc.vcproj │ ├── build-openssl.bat │ └── checksrc.bat ├── src │ ├── CMakeLists.txt │ ├── Makefile.Watcom │ ├── Makefile.am │ ├── Makefile.b32 │ ├── Makefile.in │ ├── Makefile.inc │ ├── Makefile.m32 │ ├── Makefile.netware │ ├── Makefile.vc10 │ ├── Makefile.vc6 │ ├── Makefile.vc8 │ ├── Makefile.vc9 │ ├── curl.rc │ ├── macos │ │ ├── MACINSTALL.TXT │ │ ├── curl.mcp.xml.sit.hqx │ │ └── src │ │ │ ├── curl_GUSIConfig.cpp │ │ │ └── macos_main.cpp │ ├── makefile.amiga │ ├── makefile.dj │ ├── mkhelp.pl │ ├── tool_binmode.c │ ├── tool_binmode.h │ ├── tool_bname.c │ ├── tool_bname.h │ ├── tool_cb_dbg.c │ ├── tool_cb_dbg.h │ ├── tool_cb_hdr.c │ ├── tool_cb_hdr.h │ ├── tool_cb_prg.c │ ├── tool_cb_prg.h │ ├── tool_cb_rea.c │ ├── tool_cb_rea.h │ ├── tool_cb_see.c │ ├── tool_cb_see.h │ ├── tool_cb_wrt.c │ ├── tool_cb_wrt.h │ ├── tool_cfgable.c │ ├── tool_cfgable.h │ ├── tool_convert.c │ ├── tool_convert.h │ ├── tool_dirhie.c │ ├── tool_dirhie.h │ ├── tool_doswin.c │ ├── tool_doswin.h │ ├── tool_easysrc.c │ ├── tool_easysrc.h │ ├── tool_formparse.c │ ├── tool_formparse.h │ ├── tool_getparam.c │ ├── tool_getparam.h │ ├── tool_getpass.c │ ├── tool_getpass.h │ ├── tool_help.c │ ├── tool_help.h │ ├── tool_helpers.c │ ├── tool_helpers.h │ ├── tool_homedir.c │ ├── tool_homedir.h │ ├── tool_hugehelp.c │ ├── tool_hugehelp.h │ ├── tool_libinfo.c │ ├── tool_libinfo.h │ ├── tool_main.c │ ├── tool_main.h │ ├── tool_metalink.c │ ├── tool_metalink.h │ ├── tool_mfiles.c │ ├── tool_mfiles.h │ ├── tool_msgs.c │ ├── tool_msgs.h │ ├── tool_operate.c │ ├── tool_operate.h │ ├── tool_operhlp.c │ ├── tool_operhlp.h │ ├── tool_panykey.c │ ├── tool_panykey.h │ ├── tool_paramhlp.c │ ├── tool_paramhlp.h │ ├── tool_parsecfg.c │ ├── tool_parsecfg.h │ ├── tool_sdecls.h │ ├── tool_setopt.c │ ├── tool_setopt.h │ ├── tool_setup.h │ ├── tool_sleep.c │ ├── tool_sleep.h │ ├── tool_strdup.c │ ├── tool_strdup.h │ ├── tool_urlglob.c │ ├── tool_urlglob.h │ ├── tool_util.c │ ├── tool_util.h │ ├── tool_version.h │ ├── tool_vms.c │ ├── tool_vms.h │ ├── tool_writeenv.c │ ├── tool_writeenv.h │ ├── tool_writeout.c │ ├── tool_writeout.h │ ├── tool_xattr.c │ └── tool_xattr.h ├── tests │ ├── CMakeLists.txt │ ├── FILEFORMAT │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── certs │ │ ├── EdelCurlRoot-ca.cacert │ │ ├── EdelCurlRoot-ca.cnf │ │ ├── EdelCurlRoot-ca.crt │ │ ├── EdelCurlRoot-ca.csr │ │ ├── EdelCurlRoot-ca.der │ │ ├── EdelCurlRoot-ca.key │ │ ├── EdelCurlRoot-ca.prm │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Server-localhost-sv.crl │ │ ├── Server-localhost-sv.crt │ │ ├── Server-localhost-sv.csr │ │ ├── Server-localhost-sv.der │ │ ├── Server-localhost-sv.dhp │ │ ├── Server-localhost-sv.key │ │ ├── Server-localhost-sv.p12 │ │ ├── Server-localhost-sv.pem │ │ ├── Server-localhost-sv.prm │ │ ├── Server-localhost.nn-sv.crl │ │ ├── Server-localhost.nn-sv.crt │ │ ├── Server-localhost.nn-sv.csr │ │ ├── Server-localhost.nn-sv.der │ │ ├── Server-localhost.nn-sv.dhp │ │ ├── Server-localhost.nn-sv.key │ │ ├── Server-localhost.nn-sv.pem │ │ ├── Server-localhost.nn-sv.prm │ │ ├── Server-localhost0h-sv.crl │ │ ├── Server-localhost0h-sv.crt │ │ ├── Server-localhost0h-sv.csr │ │ ├── Server-localhost0h-sv.der │ │ ├── Server-localhost0h-sv.dhp │ │ ├── Server-localhost0h-sv.key │ │ ├── Server-localhost0h-sv.p12 │ │ ├── Server-localhost0h-sv.pem │ │ ├── Server-localhost0h-sv.prm │ │ ├── scripts │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── genroot.sh │ │ │ └── genserv.sh │ │ ├── srp-verifier-conf │ │ └── srp-verifier-db │ ├── data │ │ ├── DISABLED │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── test1 │ │ ├── test10 │ │ ├── test100 │ │ ├── test1000 │ │ ├── test1001 │ │ ├── test1002 │ │ ├── test1003 │ │ ├── test1004 │ │ ├── test1005 │ │ ├── test1006 │ │ ├── test1007 │ │ ├── test1008 │ │ ├── test1009 │ │ ├── test101 │ │ ├── test1010 │ │ ├── test1011 │ │ ├── test1012 │ │ ├── test1013 │ │ ├── test1014 │ │ ├── test1015 │ │ ├── test1016 │ │ ├── test1017 │ │ ├── test1018 │ │ ├── test1019 │ │ ├── test102 │ │ ├── test1020 │ │ ├── test1021 │ │ ├── test1022 │ │ ├── test1023 │ │ ├── test1024 │ │ ├── test1025 │ │ ├── test1026 │ │ ├── test1027 │ │ ├── test1028 │ │ ├── test1029 │ │ ├── test103 │ │ ├── test1030 │ │ ├── test1031 │ │ ├── test1032 │ │ ├── test1033 │ │ ├── test1034 │ │ ├── test1035 │ │ ├── test1036 │ │ ├── test1037 │ │ ├── test1038 │ │ ├── test1039 │ │ ├── test104 │ │ ├── test1040 │ │ ├── test1041 │ │ ├── test1042 │ │ ├── test1043 │ │ ├── test1044 │ │ ├── test1045 │ │ ├── test1046 │ │ ├── test1047 │ │ ├── test1048 │ │ ├── test1049 │ │ ├── test105 │ │ ├── test1050 │ │ ├── test1051 │ │ ├── test1052 │ │ ├── test1053 │ │ ├── test1054 │ │ ├── test1055 │ │ ├── test1056 │ │ ├── test1057 │ │ ├── test1058 │ │ ├── test1059 │ │ ├── test106 │ │ ├── test1060 │ │ ├── test1061 │ │ ├── test1062 │ │ ├── test1063 │ │ ├── test1064 │ │ ├── test1065 │ │ ├── test1066 │ │ ├── test1067 │ │ ├── test1068 │ │ ├── test1069 │ │ ├── test107 │ │ ├── test1070 │ │ ├── test1071 │ │ ├── test1072 │ │ ├── test1073 │ │ ├── test1074 │ │ ├── test1075 │ │ ├── test1076 │ │ ├── test1077 │ │ ├── test1078 │ │ ├── test1079 │ │ ├── test108 │ │ ├── test1080 │ │ ├── test1081 │ │ ├── test1082 │ │ ├── test1083 │ │ ├── test1084 │ │ ├── test1085 │ │ ├── test1086 │ │ ├── test1087 │ │ ├── test1088 │ │ ├── test1089 │ │ ├── test109 │ │ ├── test1090 │ │ ├── test1091 │ │ ├── test1092 │ │ ├── test1093 │ │ ├── test1094 │ │ ├── test1095 │ │ ├── test1096 │ │ ├── test1097 │ │ ├── test1098 │ │ ├── test1099 │ │ ├── test11 │ │ ├── test110 │ │ ├── test1100 │ │ ├── test1101 │ │ ├── test1102 │ │ ├── test1103 │ │ ├── test1104 │ │ ├── test1105 │ │ ├── test1106 │ │ ├── test1107 │ │ ├── test1108 │ │ ├── test1109 │ │ ├── test111 │ │ ├── test1110 │ │ ├── test1111 │ │ ├── test1112 │ │ ├── test1113 │ │ ├── test1114 │ │ ├── test1115 │ │ ├── test1116 │ │ ├── test1117 │ │ ├── test1118 │ │ ├── test1119 │ │ ├── test112 │ │ ├── test1120 │ │ ├── test1121 │ │ ├── test1122 │ │ ├── test1123 │ │ ├── test1124 │ │ ├── test1125 │ │ ├── test1126 │ │ ├── test1127 │ │ ├── test1128 │ │ ├── test1129 │ │ ├── test113 │ │ ├── test1130 │ │ ├── test1131 │ │ ├── test1132 │ │ ├── test1133 │ │ ├── test1134 │ │ ├── test114 │ │ ├── test115 │ │ ├── test116 │ │ ├── test117 │ │ ├── test118 │ │ ├── test119 │ │ ├── test12 │ │ ├── test120 │ │ ├── test1200 │ │ ├── test1201 │ │ ├── test1202 │ │ ├── test1203 │ │ ├── test1204 │ │ ├── test1205 │ │ ├── test1206 │ │ ├── test1207 │ │ ├── test1208 │ │ ├── test1209 │ │ ├── test121 │ │ ├── test1210 │ │ ├── test1211 │ │ ├── test1212 │ │ ├── test1213 │ │ ├── test1214 │ │ ├── test1215 │ │ ├── test1216 │ │ ├── test1217 │ │ ├── test1218 │ │ ├── test1219 │ │ ├── test122 │ │ ├── test1220 │ │ ├── test1221 │ │ ├── test1222 │ │ ├── test1223 │ │ ├── test1224 │ │ ├── test1225 │ │ ├── test1226 │ │ ├── test1227 │ │ ├── test1228 │ │ ├── test1229 │ │ ├── test123 │ │ ├── test1230 │ │ ├── test1231 │ │ ├── test1232 │ │ ├── test1233 │ │ ├── test1234 │ │ ├── test1235 │ │ ├── test1236 │ │ ├── test1237 │ │ ├── test1238 │ │ ├── test1239 │ │ ├── test124 │ │ ├── test1240 │ │ ├── test125 │ │ ├── test126 │ │ ├── test127 │ │ ├── test128 │ │ ├── test129 │ │ ├── test13 │ │ ├── test130 │ │ ├── test1300 │ │ ├── test1301 │ │ ├── test1302 │ │ ├── test1303 │ │ ├── test1304 │ │ ├── test1305 │ │ ├── test1306 │ │ ├── test1307 │ │ ├── test1308 │ │ ├── test1309 │ │ ├── test131 │ │ ├── test1310 │ │ ├── test1311 │ │ ├── test1312 │ │ ├── test1313 │ │ ├── test1314 │ │ ├── test1315 │ │ ├── test1316 │ │ ├── test1317 │ │ ├── test1318 │ │ ├── test1319 │ │ ├── test132 │ │ ├── test1320 │ │ ├── test1321 │ │ ├── test1325 │ │ ├── test1326 │ │ ├── test1327 │ │ ├── test1328 │ │ ├── test1329 │ │ ├── test133 │ │ ├── test1330 │ │ ├── test1331 │ │ ├── test1332 │ │ ├── test1333 │ │ ├── test1334 │ │ ├── test1335 │ │ ├── test1336 │ │ ├── test1337 │ │ ├── test1338 │ │ ├── test1339 │ │ ├── test134 │ │ ├── test1340 │ │ ├── test1341 │ │ ├── test1342 │ │ ├── test1343 │ │ ├── test1344 │ │ ├── test1345 │ │ ├── test1346 │ │ ├── test1347 │ │ ├── test1348 │ │ ├── test1349 │ │ ├── test135 │ │ ├── test1350 │ │ ├── test1351 │ │ ├── test1352 │ │ ├── test1353 │ │ ├── test1354 │ │ ├── test1355 │ │ ├── test1356 │ │ ├── test1357 │ │ ├── test1358 │ │ ├── test1359 │ │ ├── test136 │ │ ├── test1360 │ │ ├── test1361 │ │ ├── test1362 │ │ ├── test1363 │ │ ├── test1364 │ │ ├── test1365 │ │ ├── test1366 │ │ ├── test1367 │ │ ├── test1368 │ │ ├── test1369 │ │ ├── test137 │ │ ├── test1370 │ │ ├── test1371 │ │ ├── test1372 │ │ ├── test1373 │ │ ├── test1374 │ │ ├── test1375 │ │ ├── test1376 │ │ ├── test1377 │ │ ├── test1378 │ │ ├── test1379 │ │ ├── test138 │ │ ├── test1380 │ │ ├── test1381 │ │ ├── test1382 │ │ ├── test1383 │ │ ├── test1384 │ │ ├── test1385 │ │ ├── test1386 │ │ ├── test1387 │ │ ├── test1388 │ │ ├── test1389 │ │ ├── test139 │ │ ├── test1390 │ │ ├── test1391 │ │ ├── test1392 │ │ ├── test1393 │ │ ├── test1394 │ │ ├── test1395 │ │ ├── test1396 │ │ ├── test1397 │ │ ├── test1398 │ │ ├── test14 │ │ ├── test140 │ │ ├── test1400 │ │ ├── test1401 │ │ ├── test1402 │ │ ├── test1403 │ │ ├── test1404 │ │ ├── test1405 │ │ ├── test1406 │ │ ├── test1407 │ │ ├── test1408 │ │ ├── test1409 │ │ ├── test141 │ │ ├── test1410 │ │ ├── test1411 │ │ ├── test1412 │ │ ├── test1413 │ │ ├── test1414 │ │ ├── test1415 │ │ ├── test1416 │ │ ├── test1417 │ │ ├── test1418 │ │ ├── test1419 │ │ ├── test142 │ │ ├── test1420 │ │ ├── test1428 │ │ ├── test1429 │ │ ├── test143 │ │ ├── test1430 │ │ ├── test1431 │ │ ├── test1432 │ │ ├── test1433 │ │ ├── test1434 │ │ ├── test144 │ │ ├── test145 │ │ ├── test146 │ │ ├── test147 │ │ ├── test148 │ │ ├── test149 │ │ ├── test15 │ │ ├── test150 │ │ ├── test1500 │ │ ├── test1501 │ │ ├── test1502 │ │ ├── test1503 │ │ ├── test1504 │ │ ├── test1505 │ │ ├── test1506 │ │ ├── test1507 │ │ ├── test1508 │ │ ├── test1509 │ │ ├── test151 │ │ ├── test1510 │ │ ├── test1511 │ │ ├── test1512 │ │ ├── test1513 │ │ ├── test1514 │ │ ├── test1515 │ │ ├── test1516 │ │ ├── test152 │ │ ├── test1525 │ │ ├── test1526 │ │ ├── test1527 │ │ ├── test1528 │ │ ├── test153 │ │ ├── test154 │ │ ├── test155 │ │ ├── test156 │ │ ├── test157 │ │ ├── test158 │ │ ├── test159 │ │ ├── test16 │ │ ├── test160 │ │ ├── test161 │ │ ├── test162 │ │ ├── test163 │ │ ├── test164 │ │ ├── test165 │ │ ├── test166 │ │ ├── test167 │ │ ├── test168 │ │ ├── test169 │ │ ├── test17 │ │ ├── test170 │ │ ├── test171 │ │ ├── test172 │ │ ├── test173 │ │ ├── test174 │ │ ├── test175 │ │ ├── test176 │ │ ├── test177 │ │ ├── test178 │ │ ├── test179 │ │ ├── test18 │ │ ├── test180 │ │ ├── test181 │ │ ├── test182 │ │ ├── test183 │ │ ├── test184 │ │ ├── test185 │ │ ├── test186 │ │ ├── test187 │ │ ├── test188 │ │ ├── test189 │ │ ├── test19 │ │ ├── test190 │ │ ├── test1900 │ │ ├── test1901 │ │ ├── test1902 │ │ ├── test1903 │ │ ├── test191 │ │ ├── test192 │ │ ├── test193 │ │ ├── test194 │ │ ├── test195 │ │ ├── test196 │ │ ├── test197 │ │ ├── test198 │ │ ├── test199 │ │ ├── test2 │ │ ├── test20 │ │ ├── test200 │ │ ├── test2000 │ │ ├── test2001 │ │ ├── test2002 │ │ ├── test2003 │ │ ├── test2004 │ │ ├── test2005 │ │ ├── test2006 │ │ ├── test2007 │ │ ├── test2008 │ │ ├── test2009 │ │ ├── test201 │ │ ├── test2010 │ │ ├── test2011 │ │ ├── test2012 │ │ ├── test2013 │ │ ├── test2014 │ │ ├── test2015 │ │ ├── test2016 │ │ ├── test2017 │ │ ├── test2018 │ │ ├── test2019 │ │ ├── test202 │ │ ├── test2020 │ │ ├── test2021 │ │ ├── test2022 │ │ ├── test2023 │ │ ├── test2024 │ │ ├── test2025 │ │ ├── test2026 │ │ ├── test2027 │ │ ├── test2028 │ │ ├── test2029 │ │ ├── test203 │ │ ├── test2030 │ │ ├── test2031 │ │ ├── test2032 │ │ ├── test2033 │ │ ├── test2034 │ │ ├── test2035 │ │ ├── test2036 │ │ ├── test204 │ │ ├── test205 │ │ ├── test206 │ │ ├── test207 │ │ ├── test208 │ │ ├── test209 │ │ ├── test21 │ │ ├── test210 │ │ ├── test211 │ │ ├── test212 │ │ ├── test213 │ │ ├── test214 │ │ ├── test215 │ │ ├── test216 │ │ ├── test217 │ │ ├── test218 │ │ ├── test22 │ │ ├── test220 │ │ ├── test221 │ │ ├── test222 │ │ ├── test223 │ │ ├── test224 │ │ ├── test225 │ │ ├── test226 │ │ ├── test227 │ │ ├── test228 │ │ ├── test229 │ │ ├── test23 │ │ ├── test231 │ │ ├── test233 │ │ ├── test234 │ │ ├── test235 │ │ ├── test236 │ │ ├── test237 │ │ ├── test238 │ │ ├── test239 │ │ ├── test24 │ │ ├── test240 │ │ ├── test241 │ │ ├── test242 │ │ ├── test243 │ │ ├── test245 │ │ ├── test246 │ │ ├── test247 │ │ ├── test248 │ │ ├── test249 │ │ ├── test25 │ │ ├── test250 │ │ ├── test251 │ │ ├── test252 │ │ ├── test253 │ │ ├── test254 │ │ ├── test255 │ │ ├── test256 │ │ ├── test257 │ │ ├── test258 │ │ ├── test259 │ │ ├── test26 │ │ ├── test260 │ │ ├── test261 │ │ ├── test262 │ │ ├── test263 │ │ ├── test264 │ │ ├── test265 │ │ ├── test266 │ │ ├── test267 │ │ ├── test268 │ │ ├── test269 │ │ ├── test27 │ │ ├── test270 │ │ ├── test271 │ │ ├── test272 │ │ ├── test273 │ │ ├── test274 │ │ ├── test275 │ │ ├── test276 │ │ ├── test277 │ │ ├── test278 │ │ ├── test279 │ │ ├── test28 │ │ ├── test280 │ │ ├── test281 │ │ ├── test282 │ │ ├── test283 │ │ ├── test284 │ │ ├── test285 │ │ ├── test286 │ │ ├── test287 │ │ ├── test288 │ │ ├── test289 │ │ ├── test29 │ │ ├── test290 │ │ ├── test291 │ │ ├── test292 │ │ ├── test293 │ │ ├── test294 │ │ ├── test295 │ │ ├── test296 │ │ ├── test297 │ │ ├── test298 │ │ ├── test299 │ │ ├── test3 │ │ ├── test30 │ │ ├── test300 │ │ ├── test301 │ │ ├── test302 │ │ ├── test303 │ │ ├── test304 │ │ ├── test305 │ │ ├── test306 │ │ ├── test307 │ │ ├── test308 │ │ ├── test309 │ │ ├── test31 │ │ ├── test310 │ │ ├── test311 │ │ ├── test312 │ │ ├── test313 │ │ ├── test32 │ │ ├── test320 │ │ ├── test321 │ │ ├── test322 │ │ ├── test323 │ │ ├── test324 │ │ ├── test325 │ │ ├── test33 │ │ ├── test34 │ │ ├── test35 │ │ ├── test350 │ │ ├── test351 │ │ ├── test352 │ │ ├── test353 │ │ ├── test354 │ │ ├── test36 │ │ ├── test37 │ │ ├── test38 │ │ ├── test39 │ │ ├── test4 │ │ ├── test40 │ │ ├── test400 │ │ ├── test401 │ │ ├── test402 │ │ ├── test403 │ │ ├── test404 │ │ ├── test405 │ │ ├── test406 │ │ ├── test407 │ │ ├── test408 │ │ ├── test409 │ │ ├── test41 │ │ ├── test42 │ │ ├── test43 │ │ ├── test44 │ │ ├── test45 │ │ ├── test46 │ │ ├── test47 │ │ ├── test48 │ │ ├── test49 │ │ ├── test5 │ │ ├── test50 │ │ ├── test500 │ │ ├── test501 │ │ ├── test502 │ │ ├── test503 │ │ ├── test504 │ │ ├── test505 │ │ ├── test506 │ │ ├── test507 │ │ ├── test508 │ │ ├── test509 │ │ ├── test51 │ │ ├── test510 │ │ ├── test511 │ │ ├── test512 │ │ ├── test513 │ │ ├── test514 │ │ ├── test515 │ │ ├── test516 │ │ ├── test517 │ │ ├── test518 │ │ ├── test519 │ │ ├── test52 │ │ ├── test520 │ │ ├── test521 │ │ ├── test522 │ │ ├── test523 │ │ ├── test524 │ │ ├── test525 │ │ ├── test526 │ │ ├── test527 │ │ ├── test528 │ │ ├── test529 │ │ ├── test53 │ │ ├── test530 │ │ ├── test531 │ │ ├── test532 │ │ ├── test533 │ │ ├── test534 │ │ ├── test535 │ │ ├── test536 │ │ ├── test537 │ │ ├── test538 │ │ ├── test539 │ │ ├── test54 │ │ ├── test540 │ │ ├── test541 │ │ ├── test542 │ │ ├── test543 │ │ ├── test544 │ │ ├── test545 │ │ ├── test546 │ │ ├── test547 │ │ ├── test548 │ │ ├── test549 │ │ ├── test55 │ │ ├── test550 │ │ ├── test551 │ │ ├── test552 │ │ ├── test553 │ │ ├── test554 │ │ ├── test555 │ │ ├── test556 │ │ ├── test557 │ │ ├── test558 │ │ ├── test56 │ │ ├── test560 │ │ ├── test561 │ │ ├── test562 │ │ ├── test563 │ │ ├── test564 │ │ ├── test565 │ │ ├── test566 │ │ ├── test567 │ │ ├── test568 │ │ ├── test569 │ │ ├── test57 │ │ ├── test570 │ │ ├── test571 │ │ ├── test572 │ │ ├── test573 │ │ ├── test574 │ │ ├── test575 │ │ ├── test576 │ │ ├── test578 │ │ ├── test579 │ │ ├── test58 │ │ ├── test580 │ │ ├── test581 │ │ ├── test582 │ │ ├── test583 │ │ ├── test584 │ │ ├── test585 │ │ ├── test586 │ │ ├── test587 │ │ ├── test588 │ │ ├── test59 │ │ ├── test590 │ │ ├── test591 │ │ ├── test592 │ │ ├── test593 │ │ ├── test594 │ │ ├── test595 │ │ ├── test596 │ │ ├── test597 │ │ ├── test598 │ │ ├── test599 │ │ ├── test6 │ │ ├── test60 │ │ ├── test600 │ │ ├── test601 │ │ ├── test602 │ │ ├── test603 │ │ ├── test604 │ │ ├── test605 │ │ ├── test606 │ │ ├── test607 │ │ ├── test608 │ │ ├── test609 │ │ ├── test61 │ │ ├── test610 │ │ ├── test611 │ │ ├── test612 │ │ ├── test613 │ │ ├── test614 │ │ ├── test615 │ │ ├── test616 │ │ ├── test617 │ │ ├── test618 │ │ ├── test619 │ │ ├── test62 │ │ ├── test620 │ │ ├── test621 │ │ ├── test622 │ │ ├── test623 │ │ ├── test624 │ │ ├── test625 │ │ ├── test626 │ │ ├── test627 │ │ ├── test628 │ │ ├── test629 │ │ ├── test63 │ │ ├── test630 │ │ ├── test631 │ │ ├── test632 │ │ ├── test633 │ │ ├── test634 │ │ ├── test635 │ │ ├── test636 │ │ ├── test637 │ │ ├── test638 │ │ ├── test639 │ │ ├── test64 │ │ ├── test640 │ │ ├── test641 │ │ ├── test65 │ │ ├── test66 │ │ ├── test67 │ │ ├── test68 │ │ ├── test69 │ │ ├── test7 │ │ ├── test70 │ │ ├── test700 │ │ ├── test701 │ │ ├── test702 │ │ ├── test703 │ │ ├── test704 │ │ ├── test705 │ │ ├── test706 │ │ ├── test707 │ │ ├── test708 │ │ ├── test709 │ │ ├── test71 │ │ ├── test710 │ │ ├── test711 │ │ ├── test712 │ │ ├── test72 │ │ ├── test73 │ │ ├── test74 │ │ ├── test75 │ │ ├── test76 │ │ ├── test77 │ │ ├── test78 │ │ ├── test79 │ │ ├── test8 │ │ ├── test80 │ │ ├── test800 │ │ ├── test801 │ │ ├── test802 │ │ ├── test803 │ │ ├── test804 │ │ ├── test805 │ │ ├── test806 │ │ ├── test807 │ │ ├── test808 │ │ ├── test809 │ │ ├── test81 │ │ ├── test810 │ │ ├── test811 │ │ ├── test812 │ │ ├── test813 │ │ ├── test814 │ │ ├── test815 │ │ ├── test816 │ │ ├── test817 │ │ ├── test818 │ │ ├── test819 │ │ ├── test82 │ │ ├── test820 │ │ ├── test821 │ │ ├── test822 │ │ ├── test823 │ │ ├── test824 │ │ ├── test825 │ │ ├── test826 │ │ ├── test827 │ │ ├── test828 │ │ ├── test829 │ │ ├── test83 │ │ ├── test830 │ │ ├── test831 │ │ ├── test832 │ │ ├── test833 │ │ ├── test834 │ │ ├── test835 │ │ ├── test836 │ │ ├── test84 │ │ ├── test85 │ │ ├── test850 │ │ ├── test851 │ │ ├── test852 │ │ ├── test853 │ │ ├── test854 │ │ ├── test855 │ │ ├── test856 │ │ ├── test857 │ │ ├── test858 │ │ ├── test859 │ │ ├── test86 │ │ ├── test860 │ │ ├── test861 │ │ ├── test862 │ │ ├── test863 │ │ ├── test864 │ │ ├── test865 │ │ ├── test866 │ │ ├── test867 │ │ ├── test868 │ │ ├── test869 │ │ ├── test87 │ │ ├── test870 │ │ ├── test871 │ │ ├── test872 │ │ ├── test873 │ │ ├── test874 │ │ ├── test875 │ │ ├── test876 │ │ ├── test877 │ │ ├── test878 │ │ ├── test879 │ │ ├── test88 │ │ ├── test880 │ │ ├── test881 │ │ ├── test882 │ │ ├── test89 │ │ ├── test9 │ │ ├── test90 │ │ ├── test900 │ │ ├── test901 │ │ ├── test902 │ │ ├── test903 │ │ ├── test904 │ │ ├── test905 │ │ ├── test906 │ │ ├── test907 │ │ ├── test908 │ │ ├── test909 │ │ ├── test91 │ │ ├── test910 │ │ ├── test911 │ │ ├── test912 │ │ ├── test913 │ │ ├── test914 │ │ ├── test915 │ │ ├── test916 │ │ ├── test917 │ │ ├── test918 │ │ ├── test919 │ │ ├── test92 │ │ ├── test920 │ │ ├── test921 │ │ ├── test922 │ │ ├── test923 │ │ ├── test924 │ │ ├── test925 │ │ ├── test926 │ │ ├── test927 │ │ ├── test928 │ │ ├── test929 │ │ ├── test93 │ │ ├── test930 │ │ ├── test931 │ │ ├── test932 │ │ ├── test933 │ │ ├── test934 │ │ ├── test935 │ │ ├── test936 │ │ ├── test937 │ │ ├── test938 │ │ ├── test939 │ │ ├── test94 │ │ ├── test940 │ │ ├── test95 │ │ ├── test96 │ │ ├── test97 │ │ ├── test98 │ │ └── test99 │ ├── directories.pm │ ├── ftp.pm │ ├── ftpserver.pl │ ├── getpart.pm │ ├── http_pipe.py │ ├── httpserver.pl │ ├── libtest │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── chkhostname.c │ │ ├── first.c │ │ ├── lib1500.c │ │ ├── lib1501.c │ │ ├── lib1502.c │ │ ├── lib1506.c │ │ ├── lib1507.c │ │ ├── lib1508.c │ │ ├── lib1509.c │ │ ├── lib1510.c │ │ ├── lib1511.c │ │ ├── lib1512.c │ │ ├── lib1513.c │ │ ├── lib1514.c │ │ ├── lib1515.c │ │ ├── lib1525.c │ │ ├── lib1526.c │ │ ├── lib1527.c │ │ ├── lib1528.c │ │ ├── lib1900.c │ │ ├── lib500.c │ │ ├── lib501.c │ │ ├── lib502.c │ │ ├── lib503.c │ │ ├── lib504.c │ │ ├── lib505.c │ │ ├── lib506.c │ │ ├── lib507.c │ │ ├── lib508.c │ │ ├── lib509.c │ │ ├── lib510.c │ │ ├── lib511.c │ │ ├── lib512.c │ │ ├── lib513.c │ │ ├── lib514.c │ │ ├── lib515.c │ │ ├── lib516.c │ │ ├── lib517.c │ │ ├── lib518.c │ │ ├── lib519.c │ │ ├── lib520.c │ │ ├── lib521.c │ │ ├── lib523.c │ │ ├── lib524.c │ │ ├── lib525.c │ │ ├── lib526.c │ │ ├── lib530.c │ │ ├── lib533.c │ │ ├── lib536.c │ │ ├── lib537.c │ │ ├── lib539.c │ │ ├── lib540.c │ │ ├── lib541.c │ │ ├── lib542.c │ │ ├── lib543.c │ │ ├── lib544.c │ │ ├── lib547.c │ │ ├── lib549.c │ │ ├── lib552.c │ │ ├── lib553.c │ │ ├── lib554.c │ │ ├── lib555.c │ │ ├── lib556.c │ │ ├── lib557.c │ │ ├── lib558.c │ │ ├── lib560.c │ │ ├── lib562.c │ │ ├── lib564.c │ │ ├── lib566.c │ │ ├── lib567.c │ │ ├── lib568.c │ │ ├── lib569.c │ │ ├── lib570.c │ │ ├── lib571.c │ │ ├── lib572.c │ │ ├── lib573.c │ │ ├── lib574.c │ │ ├── lib575.c │ │ ├── lib576.c │ │ ├── lib578.c │ │ ├── lib579.c │ │ ├── lib582.c │ │ ├── lib583.c │ │ ├── lib586.c │ │ ├── lib590.c │ │ ├── lib591.c │ │ ├── lib597.c │ │ ├── lib598.c │ │ ├── lib599.c │ │ ├── libauthretry.c │ │ ├── libntlmconnect.c │ │ ├── notexists.pl │ │ ├── sethostname.c │ │ ├── sethostname.h │ │ ├── test.h │ │ ├── test1013.pl │ │ ├── test1022.pl │ │ ├── test307.pl │ │ ├── test610.pl │ │ ├── test613.pl │ │ ├── test75.pl │ │ ├── testtrace.c │ │ ├── testtrace.h │ │ ├── testutil.c │ │ └── testutil.h │ ├── mem-include-scan.pl │ ├── memanalyze.pl │ ├── rtspserver.pl │ ├── runtests.1 │ ├── runtests.html │ ├── runtests.pdf │ ├── runtests.pl │ ├── secureserver.pl │ ├── server │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── base64.pl │ │ ├── fake_ntlm.c │ │ ├── getpart.c │ │ ├── getpart.h │ │ ├── resolve.c │ │ ├── rtspd.c │ │ ├── server_setup.h │ │ ├── server_sockaddr.h │ │ ├── sockfilt.c │ │ ├── sws.c │ │ ├── testpart.c │ │ ├── tftp.h │ │ ├── tftpd.c │ │ ├── util.c │ │ └── util.h │ ├── serverhelp.pm │ ├── sshhelp.pm │ ├── sshserver.pl │ ├── stunnel.pem │ ├── symbol-scan.pl │ ├── testcurl.1 │ ├── testcurl.html │ ├── testcurl.pdf │ ├── testcurl.pl │ ├── tftpserver.pl │ ├── unit │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── README │ │ ├── curlcheck.h │ │ ├── unit1300.c │ │ ├── unit1301.c │ │ ├── unit1302.c │ │ ├── unit1303.c │ │ ├── unit1304.c │ │ ├── unit1305.c │ │ ├── unit1307.c │ │ ├── unit1308.c │ │ ├── unit1309.c │ │ ├── unit1330.c │ │ ├── unit1394.c │ │ ├── unit1395.c │ │ ├── unit1396.c │ │ ├── unit1397.c │ │ └── unit1398.c │ ├── valgrind.pm │ └── valgrind.supp └── winbuild │ ├── BUILD.WINDOWS.txt │ ├── Makefile.msvc.names │ ├── Makefile.vc │ ├── MakefileBuild.vc │ └── gen_resp_file.bat ├── freetype-2.4.5 ├── .gitignore ├── ChangeLog ├── ChangeLog.20 ├── ChangeLog.21 ├── ChangeLog.22 ├── ChangeLog.23 ├── Jamfile ├── Jamrules ├── Makefile ├── README ├── README.git ├── autogen.sh ├── builds │ ├── amiga │ │ ├── README │ │ ├── include │ │ │ └── freetype │ │ │ │ └── config │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftmodule.h │ │ ├── makefile │ │ ├── makefile.os4 │ │ ├── smakefile │ │ └── src │ │ │ └── base │ │ │ ├── ftdebug.c │ │ │ └── ftsystem.c │ ├── ansi │ │ ├── ansi-def.mk │ │ └── ansi.mk │ ├── atari │ │ ├── ATARI.H │ │ ├── FNames.SIC │ │ ├── FREETYPE.PRJ │ │ ├── README.TXT │ │ ├── deflinejoiner.awk │ │ └── gen-purec-patch.sh │ ├── beos │ │ ├── beos-def.mk │ │ ├── beos.mk │ │ └── detect.mk │ ├── compiler │ │ ├── ansi-cc.mk │ │ ├── bcc-dev.mk │ │ ├── bcc.mk │ │ ├── emx.mk │ │ ├── gcc-dev.mk │ │ ├── gcc.mk │ │ ├── intelc.mk │ │ ├── unix-lcc.mk │ │ ├── visualage.mk │ │ ├── visualc.mk │ │ ├── watcom.mk │ │ └── win-lcc.mk │ ├── detect.mk │ ├── dos │ │ ├── detect.mk │ │ ├── dos-def.mk │ │ ├── dos-emx.mk │ │ ├── dos-gcc.mk │ │ └── dos-wat.mk │ ├── exports.mk │ ├── freetype.mk │ ├── link_dos.mk │ ├── link_std.mk │ ├── mac │ │ ├── FreeType.m68k_cfm.make.txt │ │ ├── FreeType.m68k_far.make.txt │ │ ├── FreeType.ppc_carbon.make.txt │ │ ├── FreeType.ppc_classic.make.txt │ │ ├── README │ │ ├── ascii2mpw.py │ │ ├── ftlib.prj.xml │ │ └── ftmac.c │ ├── modules.mk │ ├── newline │ ├── os2 │ │ ├── detect.mk │ │ ├── os2-def.mk │ │ ├── os2-dev.mk │ │ └── os2-gcc.mk │ ├── symbian │ │ ├── bld.inf │ │ └── freetype.mmp │ ├── toplevel.mk │ ├── unix │ │ ├── .gitignore │ │ ├── configure.raw │ │ ├── detect.mk │ │ ├── freetype-config.in │ │ ├── freetype2.in │ │ ├── freetype2.m4 │ │ ├── ft-munmap.m4 │ │ ├── ft2unix.h │ │ ├── ftconfig.in │ │ ├── ftsystem.c │ │ ├── install.mk │ │ ├── mkinstalldirs │ │ ├── unix-cc.in │ │ ├── unix-def.in │ │ ├── unix-dev.mk │ │ ├── unix-lcc.mk │ │ ├── unix.mk │ │ └── unixddef.mk │ ├── vms │ │ ├── ftconfig.h │ │ └── ftsystem.c │ ├── win32 │ │ ├── .gitignore │ │ ├── detect.mk │ │ ├── ftdebug.c │ │ ├── vc2005 │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ ├── vc2008 │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ ├── vc2010 │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcxproj │ │ │ ├── freetype.vcxproj.filters │ │ │ └── index.html │ │ ├── visualc │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ ├── visualce │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ ├── w32-bcc.mk │ │ ├── w32-bccd.mk │ │ ├── w32-dev.mk │ │ ├── w32-gcc.mk │ │ ├── w32-icc.mk │ │ ├── w32-intl.mk │ │ ├── w32-lcc.mk │ │ ├── w32-mingw32.mk │ │ ├── w32-vcc.mk │ │ ├── w32-wat.mk │ │ └── win32-def.mk │ └── wince │ │ ├── ftdebug.c │ │ ├── vc2005-ce │ │ ├── freetype.sln │ │ ├── freetype.vcproj │ │ └── index.html │ │ └── vc2008-ce │ │ ├── freetype.sln │ │ ├── freetype.vcproj │ │ └── index.html ├── configure ├── devel │ ├── ft2build.h │ └── ftoption.h ├── docs │ ├── CHANGES │ ├── CUSTOMIZE │ ├── DEBUG │ ├── FTL.TXT │ ├── GPLv2.TXT │ ├── INSTALL │ ├── INSTALL.ANY │ ├── INSTALL.CROSS │ ├── INSTALL.GNU │ ├── INSTALL.MAC │ ├── INSTALL.UNIX │ ├── INSTALL.VMS │ ├── LICENSE.TXT │ ├── MAKEPP │ ├── PROBLEMS │ ├── TODO │ ├── UPGRADE.UNIX │ ├── VERSION.DLL │ ├── formats.txt │ ├── raster.txt │ ├── reference │ │ ├── .gitignore │ │ └── README │ └── release ├── include │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── ftxf86.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdriver.h │ │ │ ├── ftgloadr.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpic.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── internal.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ ├── svwinfnt.h │ │ │ │ └── svxf86nm.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ └── tttypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ ├── tttags.h │ │ └── ttunpat.h │ └── ft2build.h ├── modules.cfg ├── objs │ ├── .gitignore │ └── README ├── src │ ├── Jamfile │ ├── autofit │ │ ├── Jamfile │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afpic.c │ │ ├── afpic.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ ├── autofit.c │ │ ├── module.mk │ │ └── rules.mk │ ├── base │ │ ├── Jamfile │ │ ├── basepic.c │ │ ├── basepic.h │ │ ├── ftadvanc.c │ │ ├── ftapi.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpic.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftwinfnt.c │ │ ├── ftxf86.c │ │ └── rules.mk │ ├── bdf │ │ ├── Jamfile │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ ├── bdflib.c │ │ ├── module.mk │ │ └── rules.mk │ ├── bzip2 │ │ ├── Jamfile │ │ ├── ftbzip2.c │ │ └── rules.mk │ ├── cache │ │ ├── Jamfile │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ ├── ftcsbits.h │ │ └── rules.mk │ ├── cff │ │ ├── Jamfile │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cffpic.c │ │ ├── cffpic.h │ │ ├── cfftoken.h │ │ ├── cfftypes.h │ │ ├── module.mk │ │ └── rules.mk │ ├── cid │ │ ├── Jamfile │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── type1cid.c │ ├── gxvalid │ │ ├── Jamfile │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ ├── gxvtrak.c │ │ ├── module.mk │ │ └── rules.mk │ ├── gzip │ │ ├── Jamfile │ │ ├── adler32.c │ │ ├── ftgzip.c │ │ ├── infblock.c │ │ ├── infblock.h │ │ ├── infcodes.c │ │ ├── infcodes.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── infutil.c │ │ ├── infutil.h │ │ ├── rules.mk │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── lzw │ │ ├── Jamfile │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ ├── ftzopen.h │ │ └── rules.mk │ ├── otvalid │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ ├── otvmod.h │ │ └── rules.mk │ ├── pcf │ │ ├── Jamfile │ │ ├── README │ │ ├── module.mk │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ ├── pcfutil.h │ │ └── rules.mk │ ├── pfr │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ ├── pfrtypes.h │ │ └── rules.mk │ ├── psaux │ │ ├── Jamfile │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── module.mk │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── rules.mk │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ ├── pshinter │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshpic.c │ │ ├── pshpic.h │ │ ├── pshrec.c │ │ ├── pshrec.h │ │ └── rules.mk │ ├── psnames │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pspic.c │ │ ├── pspic.h │ │ ├── pstables.h │ │ └── rules.mk │ ├── raster │ │ ├── Jamfile │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── module.mk │ │ ├── raster.c │ │ ├── rasterrs.h │ │ ├── rastpic.c │ │ ├── rastpic.h │ │ └── rules.mk │ ├── sfnt │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfntpic.c │ │ ├── sfntpic.h │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ ├── ttsbit.h │ │ └── ttsbit0.c │ ├── smooth │ │ ├── Jamfile │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── ftspic.c │ │ ├── ftspic.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── smooth.c │ ├── tools │ │ ├── Jamfile │ │ ├── apinames.c │ │ ├── chktrcmp.py │ │ ├── cordic.py │ │ ├── docmaker │ │ │ ├── .gitignore │ │ │ ├── content.py │ │ │ ├── docbeauty.py │ │ │ ├── docmaker.py │ │ │ ├── formatter.py │ │ │ ├── sources.py │ │ │ ├── tohtml.py │ │ │ └── utils.py │ │ ├── ftrandom │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── ftrandom.c │ │ ├── glnames.py │ │ ├── test_afm.c │ │ ├── test_bbox.c │ │ └── test_trig.c │ ├── truetype │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpic.c │ │ ├── ttpic.h │ │ ├── ttpload.c │ │ └── ttpload.h │ ├── type1 │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ ├── type42 │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ └── winfonts │ │ ├── Jamfile │ │ ├── fnterrs.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── winfnt.c │ │ └── winfnt.h ├── version.sed └── vms_make.com ├── glew-1.10.0 ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile ├── README.txt ├── TODO.txt ├── auto │ ├── Makefile │ ├── bin │ │ ├── filter_gl_ext.sh │ │ ├── filter_gles_ext.sh │ │ ├── make.pl │ │ ├── make_def_fun.pl │ │ ├── make_def_var.pl │ │ ├── make_header.pl │ │ ├── make_html.pl │ │ ├── make_info.pl │ │ ├── make_info_list.pl │ │ ├── make_init.pl │ │ ├── make_list.pl │ │ ├── make_str.pl │ │ ├── make_struct_fun.pl │ │ ├── make_struct_var.pl │ │ ├── parse_spec.pl │ │ └── update_ext.sh │ ├── blacklist │ ├── core │ │ └── gl │ │ │ ├── GLX_AMD_gpu_association │ │ │ ├── GLX_ARB_get_proc_address │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ ├── GLX_ATI_render_texture │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ ├── GLX_MESA_swap_control │ │ │ ├── GLX_NV_float_buffer │ │ │ ├── GLX_NV_vertex_array_range │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ ├── GLX_SGIX_swap_group │ │ │ ├── GLX_SGI_video_sync │ │ │ ├── GLX_SUN_video_resize │ │ │ ├── GLX_VERSION_1_2 │ │ │ ├── GLX_VERSION_1_3 │ │ │ ├── GLX_VERSION_1_4 │ │ │ ├── GL_APPLE_float_pixels │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ ├── GL_APPLE_texture_range │ │ │ ├── GL_ARB_draw_instanced │ │ │ ├── GL_ARB_imaging │ │ │ ├── GL_ARB_instanced_arrays │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ ├── GL_ARB_matrix_palette │ │ │ ├── GL_ARB_multitexture │ │ │ ├── GL_ARB_robustness │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ ├── GL_ARB_vertex_blend │ │ │ ├── GL_ATIX_point_sprites │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ ├── GL_ATIX_texture_env_route │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ ├── GL_ATI_map_object_buffer │ │ │ ├── GL_ATI_pn_triangles │ │ │ ├── GL_ATI_separate_stencil │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ ├── GL_ATI_vertex_streams │ │ │ ├── GL_EXT_Cg_shader │ │ │ ├── GL_EXT_bindable_uniform │ │ │ ├── GL_EXT_debug_marker │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ ├── GL_EXT_draw_instanced │ │ │ ├── GL_EXT_draw_range_elements │ │ │ ├── GL_EXT_fog_coord │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ ├── GL_EXT_packed_float │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ ├── GL_EXT_secondary_color │ │ │ ├── GL_EXT_texture_array │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ ├── GL_EXT_texture_cube_map │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ ├── GL_EXT_texture_integer │ │ │ ├── GL_EXT_texture_rectangle │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ ├── GL_EXT_timer_query │ │ │ ├── GL_EXT_vertex_shader │ │ │ ├── GL_KTX_buffer_region │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ ├── GL_NV_depth_buffer_float │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ ├── GL_NV_fragment_program2 │ │ │ ├── GL_NV_fragment_program4 │ │ │ ├── GL_NV_fragment_program_option │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ ├── GL_NV_geometry_program4 │ │ │ ├── GL_NV_geometry_shader4 │ │ │ ├── GL_NV_gpu_program4 │ │ │ ├── GL_NV_gpu_program5 │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ ├── GL_NV_path_rendering │ │ │ ├── GL_NV_present_video │ │ │ ├── GL_NV_tessellation_program5 │ │ │ ├── GL_NV_transform_feedback │ │ │ ├── GL_NV_vdpau_interop │ │ │ ├── GL_NV_vertex_program2_option │ │ │ ├── GL_NV_vertex_program3 │ │ │ ├── GL_NV_vertex_program4 │ │ │ ├── GL_SGIX_shadow │ │ │ ├── GL_SUN_read_video_pixels │ │ │ ├── GL_VERSION_1_2 │ │ │ ├── GL_VERSION_1_2_1 │ │ │ ├── GL_VERSION_1_3 │ │ │ ├── GL_VERSION_1_4 │ │ │ ├── GL_VERSION_1_5 │ │ │ ├── GL_VERSION_2_0 │ │ │ ├── GL_VERSION_2_1 │ │ │ ├── GL_VERSION_3_0 │ │ │ ├── GL_VERSION_3_1 │ │ │ ├── GL_VERSION_3_2 │ │ │ ├── GL_VERSION_3_3 │ │ │ ├── GL_VERSION_4_0 │ │ │ ├── GL_VERSION_4_1 │ │ │ ├── GL_VERSION_4_2 │ │ │ ├── GL_VERSION_4_3 │ │ │ ├── GL_VERSION_4_4 │ │ │ ├── GL_WIN_swap_hint │ │ │ ├── WGL_ARB_create_context │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ ├── WGL_NV_gpu_affinity │ │ │ └── WGL_NV_vertex_array_range │ ├── custom.txt │ ├── doc │ │ ├── advanced.html │ │ ├── basic.html │ │ ├── build.html │ │ ├── credits.html │ │ ├── index.html │ │ ├── install.html │ │ └── log.html │ ├── extensions │ │ └── gl │ │ │ ├── .dummy │ │ │ ├── GLX_3DFX_multisample │ │ │ ├── GLX_AMD_gpu_association │ │ │ ├── GLX_ARB_create_context │ │ │ ├── GLX_ARB_create_context_profile │ │ │ ├── GLX_ARB_create_context_robustness │ │ │ ├── GLX_ARB_fbconfig_float │ │ │ ├── GLX_ARB_framebuffer_sRGB │ │ │ ├── GLX_ARB_get_proc_address │ │ │ ├── GLX_ARB_multisample │ │ │ ├── GLX_ARB_robustness_application_isolation │ │ │ ├── GLX_ARB_robustness_share_group_isolation │ │ │ ├── GLX_ARB_vertex_buffer_object │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ ├── GLX_ATI_render_texture │ │ │ ├── GLX_EXT_buffer_age │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ ├── GLX_EXT_import_context │ │ │ ├── GLX_EXT_scene_marker │ │ │ ├── GLX_EXT_swap_control │ │ │ ├── GLX_EXT_swap_control_tear │ │ │ ├── GLX_EXT_texture_from_pixmap │ │ │ ├── GLX_EXT_visual_info │ │ │ ├── GLX_EXT_visual_rating │ │ │ ├── GLX_INTEL_swap_event │ │ │ ├── GLX_MESA_agp_offset │ │ │ ├── GLX_MESA_copy_sub_buffer │ │ │ ├── GLX_MESA_pixmap_colormap │ │ │ ├── GLX_MESA_release_buffers │ │ │ ├── GLX_MESA_set_3dfx_mode │ │ │ ├── GLX_MESA_swap_control │ │ │ ├── GLX_NV_copy_image │ │ │ ├── GLX_NV_float_buffer │ │ │ ├── GLX_NV_multisample_coverage │ │ │ ├── GLX_NV_present_video │ │ │ ├── GLX_NV_swap_group │ │ │ ├── GLX_NV_vertex_array_range │ │ │ ├── GLX_NV_video_capture │ │ │ ├── GLX_NV_video_output │ │ │ ├── GLX_OML_swap_method │ │ │ ├── GLX_OML_sync_control │ │ │ ├── GLX_SGIS_blended_overlay │ │ │ ├── GLX_SGIS_color_range │ │ │ ├── GLX_SGIS_multisample │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ ├── GLX_SGIX_fbconfig │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ ├── GLX_SGIX_pbuffer │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ ├── GLX_SGIX_swap_group │ │ │ ├── GLX_SGIX_video_resize │ │ │ ├── GLX_SGIX_visual_select_group │ │ │ ├── GLX_SGI_cushion │ │ │ ├── GLX_SGI_make_current_read │ │ │ ├── GLX_SGI_swap_control │ │ │ ├── GLX_SGI_video_sync │ │ │ ├── GLX_SUN_get_transparent_index │ │ │ ├── GLX_SUN_video_resize │ │ │ ├── GL_3DFX_multisample │ │ │ ├── GL_3DFX_tbuffer │ │ │ ├── GL_3DFX_texture_compression_FXT1 │ │ │ ├── GL_AMD_blend_minmax_factor │ │ │ ├── GL_AMD_conservative_depth │ │ │ ├── GL_AMD_debug_output │ │ │ ├── GL_AMD_depth_clamp_separate │ │ │ ├── GL_AMD_draw_buffers_blend │ │ │ ├── GL_AMD_interleaved_elements │ │ │ ├── GL_AMD_multi_draw_indirect │ │ │ ├── GL_AMD_name_gen_delete │ │ │ ├── GL_AMD_performance_monitor │ │ │ ├── GL_AMD_pinned_memory │ │ │ ├── GL_AMD_query_buffer_object │ │ │ ├── GL_AMD_sample_positions │ │ │ ├── GL_AMD_seamless_cubemap_per_texture │ │ │ ├── GL_AMD_shader_stencil_export │ │ │ ├── GL_AMD_shader_trinary_minmax │ │ │ ├── GL_AMD_sparse_texture │ │ │ ├── GL_AMD_stencil_operation_extended │ │ │ ├── GL_AMD_texture_texture4 │ │ │ ├── GL_AMD_transform_feedback3_lines_triangles │ │ │ ├── GL_AMD_vertex_shader_layer │ │ │ ├── GL_AMD_vertex_shader_tessellator │ │ │ ├── GL_AMD_vertex_shader_viewport_index │ │ │ ├── GL_ANGLE_depth_texture │ │ │ ├── GL_ANGLE_framebuffer_blit │ │ │ ├── GL_ANGLE_framebuffer_multisample │ │ │ ├── GL_ANGLE_instanced_arrays │ │ │ ├── GL_ANGLE_pack_reverse_row_order │ │ │ ├── GL_ANGLE_program_binary │ │ │ ├── GL_ANGLE_texture_compression_dxt1 │ │ │ ├── GL_ANGLE_texture_compression_dxt3 │ │ │ ├── GL_ANGLE_texture_compression_dxt5 │ │ │ ├── GL_ANGLE_texture_usage │ │ │ ├── GL_ANGLE_timer_query │ │ │ ├── GL_ANGLE_translated_shader_source │ │ │ ├── GL_APPLE_aux_depth_stencil │ │ │ ├── GL_APPLE_client_storage │ │ │ ├── GL_APPLE_element_array │ │ │ ├── GL_APPLE_fence │ │ │ ├── GL_APPLE_float_pixels │ │ │ ├── GL_APPLE_flush_buffer_range │ │ │ ├── GL_APPLE_object_purgeable │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ ├── GL_APPLE_rgb_422 │ │ │ ├── GL_APPLE_row_bytes │ │ │ ├── GL_APPLE_specular_vector │ │ │ ├── GL_APPLE_texture_range │ │ │ ├── GL_APPLE_transform_hint │ │ │ ├── GL_APPLE_vertex_array_object │ │ │ ├── GL_APPLE_vertex_array_range │ │ │ ├── GL_APPLE_vertex_program_evaluators │ │ │ ├── GL_APPLE_ycbcr_422 │ │ │ ├── GL_ARB_ES2_compatibility │ │ │ ├── GL_ARB_ES3_compatibility │ │ │ ├── GL_ARB_arrays_of_arrays │ │ │ ├── GL_ARB_base_instance │ │ │ ├── GL_ARB_bindless_texture │ │ │ ├── GL_ARB_blend_func_extended │ │ │ ├── GL_ARB_buffer_storage │ │ │ ├── GL_ARB_cl_event │ │ │ ├── GL_ARB_clear_buffer_object │ │ │ ├── GL_ARB_clear_texture │ │ │ ├── GL_ARB_color_buffer_float │ │ │ ├── GL_ARB_compatibility │ │ │ ├── GL_ARB_compressed_texture_pixel_storage │ │ │ ├── GL_ARB_compute_shader │ │ │ ├── GL_ARB_compute_variable_group_size │ │ │ ├── GL_ARB_conservative_depth │ │ │ ├── GL_ARB_copy_buffer │ │ │ ├── GL_ARB_copy_image │ │ │ ├── GL_ARB_debug_output │ │ │ ├── GL_ARB_depth_buffer_float │ │ │ ├── GL_ARB_depth_clamp │ │ │ ├── GL_ARB_depth_texture │ │ │ ├── GL_ARB_draw_buffers │ │ │ ├── GL_ARB_draw_buffers_blend │ │ │ ├── GL_ARB_draw_elements_base_vertex │ │ │ ├── GL_ARB_draw_indirect │ │ │ ├── GL_ARB_draw_instanced │ │ │ ├── GL_ARB_enhanced_layouts │ │ │ ├── GL_ARB_explicit_attrib_location │ │ │ ├── GL_ARB_explicit_uniform_location │ │ │ ├── GL_ARB_fragment_coord_conventions │ │ │ ├── GL_ARB_fragment_layer_viewport │ │ │ ├── GL_ARB_fragment_program │ │ │ ├── GL_ARB_fragment_program_shadow │ │ │ ├── GL_ARB_fragment_shader │ │ │ ├── GL_ARB_framebuffer_no_attachments │ │ │ ├── GL_ARB_framebuffer_object │ │ │ ├── GL_ARB_framebuffer_sRGB │ │ │ ├── GL_ARB_geometry_shader4 │ │ │ ├── GL_ARB_get_program_binary │ │ │ ├── GL_ARB_gpu_shader5 │ │ │ ├── GL_ARB_gpu_shader_fp64 │ │ │ ├── GL_ARB_half_float_pixel │ │ │ ├── GL_ARB_half_float_vertex │ │ │ ├── GL_ARB_imaging │ │ │ ├── GL_ARB_indirect_parameters │ │ │ ├── GL_ARB_instanced_arrays │ │ │ ├── GL_ARB_internalformat_query │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ ├── GL_ARB_invalidate_subdata │ │ │ ├── GL_ARB_map_buffer_alignment │ │ │ ├── GL_ARB_map_buffer_range │ │ │ ├── GL_ARB_matrix_palette │ │ │ ├── GL_ARB_multi_bind │ │ │ ├── GL_ARB_multi_draw_indirect │ │ │ ├── GL_ARB_multisample │ │ │ ├── GL_ARB_multitexture │ │ │ ├── GL_ARB_occlusion_query │ │ │ ├── GL_ARB_occlusion_query2 │ │ │ ├── GL_ARB_pixel_buffer_object │ │ │ ├── GL_ARB_point_parameters │ │ │ ├── GL_ARB_point_sprite │ │ │ ├── GL_ARB_program_interface_query │ │ │ ├── GL_ARB_provoking_vertex │ │ │ ├── GL_ARB_query_buffer_object │ │ │ ├── GL_ARB_robust_buffer_access_behavior │ │ │ ├── GL_ARB_robustness │ │ │ ├── GL_ARB_robustness_application_isolation │ │ │ ├── GL_ARB_robustness_share_group_isolation │ │ │ ├── GL_ARB_sample_shading │ │ │ ├── GL_ARB_sampler_objects │ │ │ ├── GL_ARB_seamless_cube_map │ │ │ ├── GL_ARB_seamless_cubemap_per_texture │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ ├── GL_ARB_shader_atomic_counters │ │ │ ├── GL_ARB_shader_bit_encoding │ │ │ ├── GL_ARB_shader_draw_parameters │ │ │ ├── GL_ARB_shader_group_vote │ │ │ ├── GL_ARB_shader_image_load_store │ │ │ ├── GL_ARB_shader_image_size │ │ │ ├── GL_ARB_shader_objects │ │ │ ├── GL_ARB_shader_precision │ │ │ ├── GL_ARB_shader_stencil_export │ │ │ ├── GL_ARB_shader_storage_buffer_object │ │ │ ├── GL_ARB_shader_subroutine │ │ │ ├── GL_ARB_shader_texture_lod │ │ │ ├── GL_ARB_shading_language_100 │ │ │ ├── GL_ARB_shading_language_420pack │ │ │ ├── GL_ARB_shading_language_include │ │ │ ├── GL_ARB_shading_language_packing │ │ │ ├── GL_ARB_shadow │ │ │ ├── GL_ARB_shadow_ambient │ │ │ ├── GL_ARB_sparse_texture │ │ │ ├── GL_ARB_stencil_texturing │ │ │ ├── GL_ARB_sync │ │ │ ├── GL_ARB_tessellation_shader │ │ │ ├── GL_ARB_texture_border_clamp │ │ │ ├── GL_ARB_texture_buffer_object │ │ │ ├── GL_ARB_texture_buffer_object_rgb32 │ │ │ ├── GL_ARB_texture_buffer_range │ │ │ ├── GL_ARB_texture_compression │ │ │ ├── GL_ARB_texture_compression_bptc │ │ │ ├── GL_ARB_texture_compression_rgtc │ │ │ ├── GL_ARB_texture_cube_map │ │ │ ├── GL_ARB_texture_cube_map_array │ │ │ ├── GL_ARB_texture_env_add │ │ │ ├── GL_ARB_texture_env_combine │ │ │ ├── GL_ARB_texture_env_crossbar │ │ │ ├── GL_ARB_texture_env_dot3 │ │ │ ├── GL_ARB_texture_float │ │ │ ├── GL_ARB_texture_gather │ │ │ ├── GL_ARB_texture_mirror_clamp_to_edge │ │ │ ├── GL_ARB_texture_mirrored_repeat │ │ │ ├── GL_ARB_texture_multisample │ │ │ ├── GL_ARB_texture_non_power_of_two │ │ │ ├── GL_ARB_texture_query_levels │ │ │ ├── GL_ARB_texture_query_lod │ │ │ ├── GL_ARB_texture_rectangle │ │ │ ├── GL_ARB_texture_rg │ │ │ ├── GL_ARB_texture_rgb10_a2ui │ │ │ ├── GL_ARB_texture_stencil8 │ │ │ ├── GL_ARB_texture_storage │ │ │ ├── GL_ARB_texture_storage_multisample │ │ │ ├── GL_ARB_texture_swizzle │ │ │ ├── GL_ARB_texture_view │ │ │ ├── GL_ARB_timer_query │ │ │ ├── GL_ARB_transform_feedback2 │ │ │ ├── GL_ARB_transform_feedback3 │ │ │ ├── GL_ARB_transform_feedback_instanced │ │ │ ├── GL_ARB_transpose_matrix │ │ │ ├── GL_ARB_uniform_buffer_object │ │ │ ├── GL_ARB_vertex_array_bgra │ │ │ ├── GL_ARB_vertex_array_object │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ ├── GL_ARB_vertex_attrib_binding │ │ │ ├── GL_ARB_vertex_blend │ │ │ ├── GL_ARB_vertex_buffer_object │ │ │ ├── GL_ARB_vertex_program │ │ │ ├── GL_ARB_vertex_shader │ │ │ ├── GL_ARB_vertex_type_10f_11f_11f_rev │ │ │ ├── GL_ARB_vertex_type_2_10_10_10_rev │ │ │ ├── GL_ARB_viewport_array │ │ │ ├── GL_ARB_window_pos │ │ │ ├── GL_ATIX_point_sprites │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ ├── GL_ATIX_texture_env_route │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ ├── GL_ATI_draw_buffers │ │ │ ├── GL_ATI_element_array │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ ├── GL_ATI_fragment_shader │ │ │ ├── GL_ATI_map_object_buffer │ │ │ ├── GL_ATI_meminfo │ │ │ ├── GL_ATI_pn_triangles │ │ │ ├── GL_ATI_separate_stencil │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ ├── GL_ATI_text_fragment_shader │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ ├── GL_ATI_texture_env_combine3 │ │ │ ├── GL_ATI_texture_float │ │ │ ├── GL_ATI_texture_mirror_once │ │ │ ├── GL_ATI_vertex_array_object │ │ │ ├── GL_ATI_vertex_attrib_array_object │ │ │ ├── GL_ATI_vertex_streams │ │ │ ├── GL_EXT_422_pixels │ │ │ ├── GL_EXT_Cg_shader │ │ │ ├── GL_EXT_abgr │ │ │ ├── GL_EXT_bgra │ │ │ ├── GL_EXT_bindable_uniform │ │ │ ├── GL_EXT_blend_color │ │ │ ├── GL_EXT_blend_equation_separate │ │ │ ├── GL_EXT_blend_func_separate │ │ │ ├── GL_EXT_blend_logic_op │ │ │ ├── GL_EXT_blend_minmax │ │ │ ├── GL_EXT_blend_subtract │ │ │ ├── GL_EXT_clip_volume_hint │ │ │ ├── GL_EXT_cmyka │ │ │ ├── GL_EXT_color_subtable │ │ │ ├── GL_EXT_compiled_vertex_array │ │ │ ├── GL_EXT_convolution │ │ │ ├── GL_EXT_coordinate_frame │ │ │ ├── GL_EXT_copy_texture │ │ │ ├── GL_EXT_cull_vertex │ │ │ ├── GL_EXT_debug_marker │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ ├── GL_EXT_direct_state_access │ │ │ ├── GL_EXT_draw_buffers2 │ │ │ ├── GL_EXT_draw_instanced │ │ │ ├── GL_EXT_draw_range_elements │ │ │ ├── GL_EXT_fog_coord │ │ │ ├── GL_EXT_fragment_lighting │ │ │ ├── GL_EXT_framebuffer_blit │ │ │ ├── GL_EXT_framebuffer_multisample │ │ │ ├── GL_EXT_framebuffer_multisample_blit_scaled │ │ │ ├── GL_EXT_framebuffer_object │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ ├── GL_EXT_histogram │ │ │ ├── GL_EXT_index_array_formats │ │ │ ├── GL_EXT_index_func │ │ │ ├── GL_EXT_index_material │ │ │ ├── GL_EXT_index_texture │ │ │ ├── GL_EXT_light_texture │ │ │ ├── GL_EXT_misc_attribute │ │ │ ├── GL_EXT_multi_draw_arrays │ │ │ ├── GL_EXT_multisample │ │ │ ├── GL_EXT_packed_depth_stencil │ │ │ ├── GL_EXT_packed_float │ │ │ ├── GL_EXT_packed_pixels │ │ │ ├── GL_EXT_paletted_texture │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ ├── GL_EXT_pixel_transform │ │ │ ├── GL_EXT_pixel_transform_color_table │ │ │ ├── GL_EXT_point_parameters │ │ │ ├── GL_EXT_polygon_offset │ │ │ ├── GL_EXT_provoking_vertex │ │ │ ├── GL_EXT_rescale_normal │ │ │ ├── GL_EXT_scene_marker │ │ │ ├── GL_EXT_secondary_color │ │ │ ├── GL_EXT_separate_shader_objects │ │ │ ├── GL_EXT_separate_specular_color │ │ │ ├── GL_EXT_shader_image_load_store │ │ │ ├── GL_EXT_shadow_funcs │ │ │ ├── GL_EXT_shared_texture_palette │ │ │ ├── GL_EXT_stencil_clear_tag │ │ │ ├── GL_EXT_stencil_two_side │ │ │ ├── GL_EXT_stencil_wrap │ │ │ ├── GL_EXT_subtexture │ │ │ ├── GL_EXT_texture │ │ │ ├── GL_EXT_texture3D │ │ │ ├── GL_EXT_texture_array │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ ├── GL_EXT_texture_compression_dxt1 │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ ├── GL_EXT_texture_compression_s3tc │ │ │ ├── GL_EXT_texture_cube_map │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ ├── GL_EXT_texture_env │ │ │ ├── GL_EXT_texture_env_add │ │ │ ├── GL_EXT_texture_env_combine │ │ │ ├── GL_EXT_texture_env_dot3 │ │ │ ├── GL_EXT_texture_filter_anisotropic │ │ │ ├── GL_EXT_texture_integer │ │ │ ├── GL_EXT_texture_lod_bias │ │ │ ├── GL_EXT_texture_mirror_clamp │ │ │ ├── GL_EXT_texture_object │ │ │ ├── GL_EXT_texture_perturb_normal │ │ │ ├── GL_EXT_texture_rectangle │ │ │ ├── GL_EXT_texture_sRGB │ │ │ ├── GL_EXT_texture_sRGB_decode │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ ├── GL_EXT_texture_snorm │ │ │ ├── GL_EXT_texture_swizzle │ │ │ ├── GL_EXT_timer_query │ │ │ ├── GL_EXT_transform_feedback │ │ │ ├── GL_EXT_vertex_array │ │ │ ├── GL_EXT_vertex_array_bgra │ │ │ ├── GL_EXT_vertex_attrib_64bit │ │ │ ├── GL_EXT_vertex_shader │ │ │ ├── GL_EXT_vertex_weighting │ │ │ ├── GL_EXT_x11_sync_object │ │ │ ├── GL_GREMEDY_frame_terminator │ │ │ ├── GL_GREMEDY_string_marker │ │ │ ├── GL_HP_convolution_border_modes │ │ │ ├── GL_HP_image_transform │ │ │ ├── GL_HP_occlusion_test │ │ │ ├── GL_HP_texture_lighting │ │ │ ├── GL_IBM_cull_vertex │ │ │ ├── GL_IBM_multimode_draw_arrays │ │ │ ├── GL_IBM_rasterpos_clip │ │ │ ├── GL_IBM_static_data │ │ │ ├── GL_IBM_texture_mirrored_repeat │ │ │ ├── GL_IBM_vertex_array_lists │ │ │ ├── GL_INGR_color_clamp │ │ │ ├── GL_INGR_interlace_read │ │ │ ├── GL_INTEL_map_texture │ │ │ ├── GL_INTEL_parallel_arrays │ │ │ ├── GL_INTEL_texture_scissor │ │ │ ├── GL_KHR_debug │ │ │ ├── GL_KHR_texture_compression_astc_ldr │ │ │ ├── GL_KTX_buffer_region │ │ │ ├── GL_MESAX_texture_stack │ │ │ ├── GL_MESA_pack_invert │ │ │ ├── GL_MESA_resize_buffers │ │ │ ├── GL_MESA_window_pos │ │ │ ├── GL_MESA_ycbcr_texture │ │ │ ├── GL_NVX_conditional_render │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ ├── GL_NV_bindless_multi_draw_indirect │ │ │ ├── GL_NV_bindless_texture │ │ │ ├── GL_NV_blend_equation_advanced │ │ │ ├── GL_NV_blend_equation_advanced_coherent │ │ │ ├── GL_NV_blend_square │ │ │ ├── GL_NV_compute_program5 │ │ │ ├── GL_NV_conditional_render │ │ │ ├── GL_NV_copy_depth_to_color │ │ │ ├── GL_NV_copy_image │ │ │ ├── GL_NV_deep_texture3D │ │ │ ├── GL_NV_depth_buffer_float │ │ │ ├── GL_NV_depth_clamp │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ ├── GL_NV_draw_texture │ │ │ ├── GL_NV_evaluators │ │ │ ├── GL_NV_explicit_multisample │ │ │ ├── GL_NV_fence │ │ │ ├── GL_NV_float_buffer │ │ │ ├── GL_NV_fog_distance │ │ │ ├── GL_NV_fragment_program │ │ │ ├── GL_NV_fragment_program2 │ │ │ ├── GL_NV_fragment_program4 │ │ │ ├── GL_NV_fragment_program_option │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ ├── GL_NV_geometry_program4 │ │ │ ├── GL_NV_geometry_shader4 │ │ │ ├── GL_NV_gpu_program4 │ │ │ ├── GL_NV_gpu_program5 │ │ │ ├── GL_NV_gpu_program5_mem_extended │ │ │ ├── GL_NV_gpu_program_fp64 │ │ │ ├── GL_NV_gpu_shader5 │ │ │ ├── GL_NV_half_float │ │ │ ├── GL_NV_light_max_exponent │ │ │ ├── GL_NV_multisample_coverage │ │ │ ├── GL_NV_multisample_filter_hint │ │ │ ├── GL_NV_occlusion_query │ │ │ ├── GL_NV_packed_depth_stencil │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ ├── GL_NV_parameter_buffer_object2 │ │ │ ├── GL_NV_path_rendering │ │ │ ├── GL_NV_pixel_data_range │ │ │ ├── GL_NV_point_sprite │ │ │ ├── GL_NV_present_video │ │ │ ├── GL_NV_primitive_restart │ │ │ ├── GL_NV_register_combiners │ │ │ ├── GL_NV_register_combiners2 │ │ │ ├── GL_NV_shader_atomic_counters │ │ │ ├── GL_NV_shader_atomic_float │ │ │ ├── GL_NV_shader_buffer_load │ │ │ ├── GL_NV_shader_storage_buffer_object │ │ │ ├── GL_NV_tessellation_program5 │ │ │ ├── GL_NV_texgen_emboss │ │ │ ├── GL_NV_texgen_reflection │ │ │ ├── GL_NV_texture_barrier │ │ │ ├── GL_NV_texture_compression_vtc │ │ │ ├── GL_NV_texture_env_combine4 │ │ │ ├── GL_NV_texture_expand_normal │ │ │ ├── GL_NV_texture_multisample │ │ │ ├── GL_NV_texture_rectangle │ │ │ ├── GL_NV_texture_shader │ │ │ ├── GL_NV_texture_shader2 │ │ │ ├── GL_NV_texture_shader3 │ │ │ ├── GL_NV_transform_feedback │ │ │ ├── GL_NV_transform_feedback2 │ │ │ ├── GL_NV_vdpau_interop │ │ │ ├── GL_NV_vertex_array_range │ │ │ ├── GL_NV_vertex_array_range2 │ │ │ ├── GL_NV_vertex_attrib_integer_64bit │ │ │ ├── GL_NV_vertex_buffer_unified_memory │ │ │ ├── GL_NV_vertex_program │ │ │ ├── GL_NV_vertex_program1_1 │ │ │ ├── GL_NV_vertex_program2 │ │ │ ├── GL_NV_vertex_program2_option │ │ │ ├── GL_NV_vertex_program3 │ │ │ ├── GL_NV_vertex_program4 │ │ │ ├── GL_NV_video_capture │ │ │ ├── GL_OES_byte_coordinates │ │ │ ├── GL_OES_compressed_paletted_texture │ │ │ ├── GL_OES_read_format │ │ │ ├── GL_OES_single_precision │ │ │ ├── GL_OML_interlace │ │ │ ├── GL_OML_resample │ │ │ ├── GL_OML_subsample │ │ │ ├── GL_PGI_misc_hints │ │ │ ├── GL_PGI_vertex_hints │ │ │ ├── GL_REGAL_ES1_0_compatibility │ │ │ ├── GL_REGAL_ES1_1_compatibility │ │ │ ├── GL_REGAL_enable │ │ │ ├── GL_REGAL_error_string │ │ │ ├── GL_REGAL_extension_query │ │ │ ├── GL_REGAL_log │ │ │ ├── GL_REND_screen_coordinates │ │ │ ├── GL_S3_s3tc │ │ │ ├── GL_SGIS_color_range │ │ │ ├── GL_SGIS_detail_texture │ │ │ ├── GL_SGIS_fog_function │ │ │ ├── GL_SGIS_generate_mipmap │ │ │ ├── GL_SGIS_multisample │ │ │ ├── GL_SGIS_pixel_texture │ │ │ ├── GL_SGIS_point_line_texgen │ │ │ ├── GL_SGIS_sharpen_texture │ │ │ ├── GL_SGIS_texture4D │ │ │ ├── GL_SGIS_texture_border_clamp │ │ │ ├── GL_SGIS_texture_edge_clamp │ │ │ ├── GL_SGIS_texture_filter4 │ │ │ ├── GL_SGIS_texture_lod │ │ │ ├── GL_SGIS_texture_select │ │ │ ├── GL_SGIX_async │ │ │ ├── GL_SGIX_async_histogram │ │ │ ├── GL_SGIX_async_pixel │ │ │ ├── GL_SGIX_blend_alpha_minmax │ │ │ ├── GL_SGIX_clipmap │ │ │ ├── GL_SGIX_convolution_accuracy │ │ │ ├── GL_SGIX_depth_texture │ │ │ ├── GL_SGIX_flush_raster │ │ │ ├── GL_SGIX_fog_offset │ │ │ ├── GL_SGIX_fog_texture │ │ │ ├── GL_SGIX_fragment_specular_lighting │ │ │ ├── GL_SGIX_framezoom │ │ │ ├── GL_SGIX_interlace │ │ │ ├── GL_SGIX_ir_instrument1 │ │ │ ├── GL_SGIX_list_priority │ │ │ ├── GL_SGIX_pixel_texture │ │ │ ├── GL_SGIX_pixel_texture_bits │ │ │ ├── GL_SGIX_reference_plane │ │ │ ├── GL_SGIX_resample │ │ │ ├── GL_SGIX_shadow │ │ │ ├── GL_SGIX_shadow_ambient │ │ │ ├── GL_SGIX_sprite │ │ │ ├── GL_SGIX_tag_sample_buffer │ │ │ ├── GL_SGIX_texture_add_env │ │ │ ├── GL_SGIX_texture_coordinate_clamp │ │ │ ├── GL_SGIX_texture_lod_bias │ │ │ ├── GL_SGIX_texture_multi_buffer │ │ │ ├── GL_SGIX_texture_range │ │ │ ├── GL_SGIX_texture_scale_bias │ │ │ ├── GL_SGIX_vertex_preclip │ │ │ ├── GL_SGIX_vertex_preclip_hint │ │ │ ├── GL_SGIX_ycrcb │ │ │ ├── GL_SGI_color_matrix │ │ │ ├── GL_SGI_color_table │ │ │ ├── GL_SGI_texture_color_table │ │ │ ├── GL_SUNX_constant_data │ │ │ ├── GL_SUN_convolution_border_modes │ │ │ ├── GL_SUN_global_alpha │ │ │ ├── GL_SUN_mesh_array │ │ │ ├── GL_SUN_read_video_pixels │ │ │ ├── GL_SUN_slice_accum │ │ │ ├── GL_SUN_triangle_list │ │ │ ├── GL_SUN_vertex │ │ │ ├── GL_WIN_phong_shading │ │ │ ├── GL_WIN_specular_fog │ │ │ ├── GL_WIN_swap_hint │ │ │ ├── WGL_3DFX_multisample │ │ │ ├── WGL_3DL_stereo_control │ │ │ ├── WGL_AMD_gpu_association │ │ │ ├── WGL_ARB_buffer_region │ │ │ ├── WGL_ARB_create_context │ │ │ ├── WGL_ARB_create_context_profile │ │ │ ├── WGL_ARB_create_context_robustness │ │ │ ├── WGL_ARB_extensions_string │ │ │ ├── WGL_ARB_framebuffer_sRGB │ │ │ ├── WGL_ARB_make_current_read │ │ │ ├── WGL_ARB_multisample │ │ │ ├── WGL_ARB_pbuffer │ │ │ ├── WGL_ARB_pixel_format │ │ │ ├── WGL_ARB_pixel_format_float │ │ │ ├── WGL_ARB_render_texture │ │ │ ├── WGL_ARB_robustness_application_isolation │ │ │ ├── WGL_ARB_robustness_share_group_isolation │ │ │ ├── WGL_ATI_pixel_format_float │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ ├── WGL_EXT_depth_float │ │ │ ├── WGL_EXT_display_color_table │ │ │ ├── WGL_EXT_extensions_string │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ ├── WGL_EXT_make_current_read │ │ │ ├── WGL_EXT_multisample │ │ │ ├── WGL_EXT_pbuffer │ │ │ ├── WGL_EXT_pixel_format │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ ├── WGL_EXT_swap_control │ │ │ ├── WGL_EXT_swap_control_tear │ │ │ ├── WGL_I3D_digital_video_control │ │ │ ├── WGL_I3D_gamma │ │ │ ├── WGL_I3D_genlock │ │ │ ├── WGL_I3D_image_buffer │ │ │ ├── WGL_I3D_swap_frame_lock │ │ │ ├── WGL_I3D_swap_frame_usage │ │ │ ├── WGL_NV_DX_interop │ │ │ ├── WGL_NV_DX_interop2 │ │ │ ├── WGL_NV_copy_image │ │ │ ├── WGL_NV_float_buffer │ │ │ ├── WGL_NV_gpu_affinity │ │ │ ├── WGL_NV_multisample_coverage │ │ │ ├── WGL_NV_present_video │ │ │ ├── WGL_NV_render_depth_texture │ │ │ ├── WGL_NV_render_texture_rectangle │ │ │ ├── WGL_NV_swap_group │ │ │ ├── WGL_NV_vertex_array_range │ │ │ ├── WGL_NV_video_capture │ │ │ ├── WGL_NV_video_output │ │ │ └── WGL_OML_sync_control │ ├── lib │ │ └── OpenGL │ │ │ └── Spec.pm │ └── src │ │ ├── footer.html │ │ ├── glew.rc │ │ ├── glew_head.c │ │ ├── glew_head.h │ │ ├── glew_init_gl.c │ │ ├── glew_init_glx.c │ │ ├── glew_init_tail.c │ │ ├── glew_init_wgl.c │ │ ├── glew_license.h │ │ ├── glew_str_glx.c │ │ ├── glew_str_head.c │ │ ├── glew_str_tail.c │ │ ├── glew_str_wgl.c │ │ ├── glew_tail.h │ │ ├── glew_utils.c │ │ ├── glew_utils.h │ │ ├── glewinfo.rc │ │ ├── glewinfo_gl.c │ │ ├── glewinfo_glx.c │ │ ├── glewinfo_head.c │ │ ├── glewinfo_tail.c │ │ ├── glewinfo_wgl.c │ │ ├── glxew_head.h │ │ ├── glxew_mid.h │ │ ├── glxew_tail.h │ │ ├── header.html │ │ ├── khronos_license.h │ │ ├── mesa_license.h │ │ ├── visualinfo.rc │ │ ├── wglew_head.h │ │ ├── wglew_mid.h │ │ └── wglew_tail.h ├── config │ ├── Makefile.cygming │ ├── Makefile.cygwin │ ├── Makefile.darwin │ ├── Makefile.darwin-ppc │ ├── Makefile.darwin-x86_64 │ ├── Makefile.fedora-mingw32 │ ├── Makefile.freebsd │ ├── Makefile.gnu │ ├── Makefile.irix │ ├── Makefile.kfreebsd │ ├── Makefile.linux │ ├── Makefile.linux-mingw32 │ ├── Makefile.linux-mingw64 │ ├── Makefile.mingw │ ├── Makefile.nacl-32 │ ├── Makefile.nacl-64 │ ├── Makefile.netbsd │ ├── Makefile.openbsd │ ├── Makefile.solaris │ ├── Makefile.solaris-gcc │ ├── config.guess │ └── version ├── doc │ ├── advanced.html │ ├── basic.html │ ├── build.html │ ├── credits.html │ ├── glew.css │ ├── glew.html │ ├── glew.png │ ├── glew.txt │ ├── glxew.html │ ├── gpl.txt │ ├── index.html │ ├── install.html │ ├── khronos.txt │ ├── log.html │ ├── mesa.txt │ ├── new.png │ ├── ogl_sm.jpg │ └── wglew.html ├── glew.pc.in ├── include │ └── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h └── src │ ├── glew.c │ ├── glewinfo.c │ └── visualinfo.c ├── libjson-7.6.1 ├── CMakeLists.txt ├── Documentation.pdf ├── Getting Started │ ├── C++ Interface │ │ ├── array.htm │ │ ├── basic_parser.htm │ │ ├── child_node.htm │ │ └── simple_write.htm │ └── Library Interface │ │ ├── array.htm │ │ ├── basic_parser.htm │ │ ├── child_node.htm │ │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushCpp.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ ├── simple_write.htm │ │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css ├── JSONOptions.h ├── License.txt ├── _internal │ ├── Dependencies │ │ ├── CMakeLists.txt │ │ ├── libbase64++ │ │ │ └── libbase64++.h │ │ └── mempool++ │ │ │ └── mempool.h │ ├── Source │ │ ├── CMakeLists.txt │ │ ├── JSONAllocator.cpp │ │ ├── JSONAllocator.h │ │ ├── JSONChildren.cpp │ │ ├── JSONChildren.h │ │ ├── JSONDebug.cpp │ │ ├── JSONDebug.h │ │ ├── JSONDefs.h │ │ ├── JSONDefs │ │ │ ├── GNU_C.h │ │ │ ├── Strings_Defs.h │ │ │ ├── Unknown_C.h │ │ │ └── Visual_C.h │ │ ├── JSONGlobals.h │ │ ├── JSONIterators.cpp │ │ ├── JSONMemory.cpp │ │ ├── JSONMemory.h │ │ ├── JSONMemoryPool.h │ │ ├── JSONNode.cpp │ │ ├── JSONNode.h │ │ ├── JSONNode_Mutex.cpp │ │ ├── JSONPreparse.cpp │ │ ├── JSONPreparse.h │ │ ├── JSONSharedString.h │ │ ├── JSONSingleton.h │ │ ├── JSONStats.h │ │ ├── JSONStream.cpp │ │ ├── JSONStream.h │ │ ├── JSONValidator.cpp │ │ ├── JSONValidator.h │ │ ├── JSONWorker.cpp │ │ ├── JSONWorker.h │ │ ├── JSONWriter.cpp │ │ ├── JSON_Base64.h │ │ ├── NumberToString.h │ │ ├── internalJSONNode.cpp │ │ ├── internalJSONNode.h │ │ └── libjson.cpp │ ├── TestSuite │ │ ├── All │ │ │ ├── Options.txt │ │ │ └── main.cpp │ │ ├── Benchmark │ │ │ ├── main.cpp │ │ │ └── makefile │ │ ├── Checklist.txt │ │ ├── RunTestSuite2.cpp │ │ ├── RunTestSuite2.h │ │ ├── StringTest.h │ │ ├── TestAssign.cpp │ │ ├── TestBinary.cpp │ │ ├── TestChildren.cpp │ │ ├── TestComments.cpp │ │ ├── TestConverters.cpp │ │ ├── TestCtors.cpp │ │ ├── TestEquality.cpp │ │ ├── TestFunctions.cpp │ │ ├── TestInequality.cpp │ │ ├── TestInspectors.cpp │ │ ├── TestIterators.cpp │ │ ├── TestMutex.cpp │ │ ├── TestNamespace.cpp │ │ ├── TestRefCounting.cpp │ │ ├── TestSharedString.cpp │ │ ├── TestStreams.cpp │ │ ├── TestString.cpp │ │ ├── TestSuite.1 │ │ ├── TestSuite.cpp │ │ ├── TestSuite.h │ │ ├── TestSuite.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── wallace.xcuserdatad │ │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── wallace.mode1v3 │ │ │ ├── wallace.pbxuser │ │ │ └── xcuserdata │ │ │ │ └── wallace.xcuserdatad │ │ │ │ ├── xcdebugger │ │ │ │ └── Breakpoints.xcbkptlist │ │ │ │ └── xcschemes │ │ │ │ ├── TestSuite.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── TestSuite2Creator.php │ │ ├── TestValidator.cpp │ │ ├── TestWriter.cpp │ │ ├── UStringTest.h │ │ ├── UnitTest.cpp │ │ ├── UnitTest.h │ │ ├── main.cpp │ │ └── makefile │ └── TestSuite2 │ │ ├── BaseTest.h │ │ ├── JSONDebug │ │ ├── JSON_ASSERT.cpp │ │ ├── JSON_ASSERT.h │ │ ├── JSON_ASSERT_SAFE.cpp │ │ ├── JSON_ASSERT_SAFE.h │ │ ├── JSON_FAIL.cpp │ │ ├── JSON_FAIL.h │ │ ├── JSON_FAIL_SAFE.cpp │ │ └── JSON_FAIL_SAFE.h │ │ ├── JSONGlobals │ │ ├── jsonSingleton.cpp │ │ └── jsonSingleton.h │ │ ├── JSONValidator │ │ ├── Resources │ │ │ └── validyMacros.h │ │ ├── isValidArray.cpp │ │ ├── isValidArray.h │ │ ├── isValidMember.cpp │ │ ├── isValidMember.h │ │ ├── isValidNamedObject.cpp │ │ ├── isValidNamedObject.h │ │ ├── isValidNumber.cpp │ │ ├── isValidNumber.h │ │ ├── isValidObject.cpp │ │ ├── isValidObject.h │ │ ├── isValidPartialRoot.cpp │ │ ├── isValidPartialRoot.h │ │ ├── isValidRoot.cpp │ │ ├── isValidRoot.h │ │ ├── isValidString.cpp │ │ ├── isValidString.h │ │ ├── securityTest.cpp │ │ └── securityTest.h │ │ ├── JSON_Base64 │ │ ├── json_decode64.cpp │ │ ├── json_decode64.h │ │ ├── json_encode64.cpp │ │ └── json_encode64.h │ │ └── NumberToString │ │ ├── _areFloatsEqual.cpp │ │ ├── _areFloatsEqual.h │ │ ├── _atof.cpp │ │ ├── _atof.h │ │ ├── _ftoa.cpp │ │ ├── _ftoa.h │ │ ├── _itoa.cpp │ │ ├── _itoa.h │ │ ├── _uitoa.cpp │ │ ├── _uitoa.h │ │ ├── getLenSize.cpp │ │ ├── getLenSize.h │ │ ├── isNumeric.cpp │ │ └── isNumeric.h ├── libjson.h ├── libjson.vcproj └── makefile ├── lua-5.2.3 ├── CMakeLists.txt ├── Makefile ├── README ├── doc │ ├── contents.html │ ├── logo.gif │ ├── lua.1 │ ├── lua.css │ ├── luac.1 │ ├── manual.css │ ├── manual.html │ ├── osi-certified-72x60.png │ └── readme.html └── src │ ├── CMakeLists.txt │ ├── 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.c.original │ ├── 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 │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── ogg-1.3.2 ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── 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.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 ├── openal-1.16.0 ├── .gitignore ├── Alc │ ├── ALc.c │ ├── ALu.c │ ├── alcConfig.c │ ├── alcRing.c │ ├── alstring.h │ ├── backends │ │ ├── alsa.c │ │ ├── base.c │ │ ├── base.h │ │ ├── coreaudio.c │ │ ├── dsound.c │ │ ├── loopback.c │ │ ├── mmdevapi.c │ │ ├── null.c │ │ ├── opensl.c │ │ ├── oss.c │ │ ├── portaudio.c │ │ ├── pulseaudio.c │ │ ├── qsa.c │ │ ├── sndio.c │ │ ├── solaris.c │ │ ├── wave.c │ │ └── winmm.c │ ├── bs2b.c │ ├── compat.h │ ├── effects │ │ ├── autowah.c │ │ ├── chorus.c │ │ ├── compressor.c │ │ ├── dedicated.c │ │ ├── distortion.c │ │ ├── echo.c │ │ ├── equalizer.c │ │ ├── flanger.c │ │ ├── modulator.c │ │ ├── null.c │ │ └── reverb.c │ ├── evtqueue.h │ ├── helpers.c │ ├── hrtf.c │ ├── hrtf.h │ ├── midi │ │ ├── base.c │ │ ├── base.h │ │ ├── dummy.c │ │ ├── fluidsynth.c │ │ ├── sf2load.c │ │ └── soft.c │ ├── mixer.c │ ├── mixer_c.c │ ├── mixer_defs.h │ ├── mixer_inc.c │ ├── mixer_neon.c │ ├── mixer_sse.c │ ├── mixer_sse2.c │ ├── mixer_sse41.c │ ├── panning.c │ └── vector.h ├── CMakeLists.txt ├── CMakeLists.txt.original ├── COPYING ├── ChangeLog ├── OpenAL32 │ ├── Include │ │ ├── alAuxEffectSlot.h │ │ ├── alBuffer.h │ │ ├── alEffect.h │ │ ├── alError.h │ │ ├── alFilter.h │ │ ├── alListener.h │ │ ├── alMain.h │ │ ├── alMidi.h │ │ ├── alSource.h │ │ ├── alThunk.h │ │ ├── alu.h │ │ ├── bs2b.h │ │ └── sample_cvt.h │ ├── alAuxEffectSlot.c │ ├── alBuffer.c │ ├── alEffect.c │ ├── alError.c │ ├── alExtension.c │ ├── alFilter.c │ ├── alFontsound.c │ ├── alListener.c │ ├── alMidi.c │ ├── alPreset.c │ ├── alSoundfont.c │ ├── alSource.c │ ├── alState.c │ ├── alThunk.c │ └── sample_cvt.c ├── README ├── XCompile.txt ├── alsoftrc.sample ├── cmake │ ├── CheckFileOffsetBits.c │ ├── CheckFileOffsetBits.cmake │ ├── CheckSharedFunctionExists.cmake │ ├── FindALSA.cmake │ ├── FindAudioIO.cmake │ ├── FindDSound.cmake │ ├── FindFFmpeg.cmake │ ├── FindFluidSynth.cmake │ ├── FindOSS.cmake │ ├── FindPortAudio.cmake │ ├── FindPulseAudio.cmake │ ├── FindQSA.cmake │ ├── FindSDL2.cmake │ ├── FindSDL_sound.cmake │ └── FindSoundIO.cmake ├── common │ ├── atomic.c │ ├── rwlock.c │ ├── threads.c │ └── uintmap.c ├── config.h.in ├── env-vars.txt ├── examples │ ├── alffplay.c │ ├── allatency.c │ ├── alloopback.c │ ├── alreverb.c │ ├── alstream.c │ └── common │ │ ├── alhelpers.c │ │ ├── alhelpers.h │ │ ├── sdl_sound.c │ │ └── sdl_sound.h ├── hrtf.txt ├── hrtf │ ├── default-44100.mhr │ └── default-48000.mhr ├── include │ ├── AL │ │ ├── al.h │ │ ├── alc.h │ │ ├── alext.h │ │ ├── efx-creative.h │ │ ├── efx-presets.h │ │ └── efx.h │ ├── align.h │ ├── atomic.h │ ├── bool.h │ ├── rwlock.h │ ├── static_assert.h │ ├── threads.h │ └── uintmap.h ├── openal.pc.in └── utils │ ├── CIAIR.def │ ├── IRC_1005.def │ ├── MIT_KEMAR.def │ ├── alsoft-config │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui │ ├── makehrtf.c │ └── openal-info.c ├── png-1.6.15 ├── ANNOUNCE ├── CHANGES ├── CMakeLists.txt ├── CMakeLists.txt.original ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── TODO ├── aclocal.m4 ├── arm │ ├── arm_init.c │ ├── filter_neon.S │ └── filter_neon_intrinsics.c ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── contrib │ ├── README.txt │ ├── arm-neon │ │ ├── README │ │ ├── android-ndk.c │ │ ├── linux-auxv.c │ │ └── linux.c │ ├── conftest │ │ ├── README │ │ ├── read.dfa │ │ ├── s_read.dfa │ │ ├── s_write.dfa │ │ ├── simple.dfa │ │ └── write.dfa │ ├── examples │ │ ├── README.txt │ │ ├── iccfrompng.c │ │ ├── pngpixel.c │ │ └── pngtopng.c │ ├── gregbook │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── Makefile.mingw32 │ │ ├── Makefile.sgi │ │ ├── Makefile.unx │ │ ├── Makefile.w32 │ │ ├── README │ │ ├── makevms.com │ │ ├── readpng.c │ │ ├── readpng.h │ │ ├── readpng2.c │ │ ├── readpng2.h │ │ ├── readppm.c │ │ ├── rpng-win.c │ │ ├── rpng-x.c │ │ ├── rpng2-win.c │ │ ├── rpng2-x.c │ │ ├── toucan.png │ │ ├── wpng.c │ │ ├── writepng.c │ │ └── writepng.h │ ├── libtests │ │ ├── fakepng.c │ │ ├── gentests.sh │ │ ├── makepng.c │ │ ├── pngimage.c │ │ ├── pngstest.c │ │ ├── pngunknown.c │ │ ├── pngvalid.c │ │ ├── readpng.c │ │ ├── tarith.c │ │ └── timepng.c │ ├── pngminim │ │ ├── README │ │ ├── decoder │ │ │ ├── README │ │ │ ├── makefile │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ ├── encoder │ │ │ ├── README │ │ │ ├── makefile │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ └── preader │ │ │ ├── README │ │ │ ├── makefile │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ ├── pngminus │ │ ├── README │ │ ├── makefile.std │ │ ├── makefile.tc3 │ │ ├── makevms.com │ │ ├── png2pnm.bat │ │ ├── png2pnm.c │ │ ├── png2pnm.sh │ │ ├── pngminus.bat │ │ ├── pngminus.sh │ │ ├── pnm2png.bat │ │ ├── pnm2png.c │ │ └── pnm2png.sh │ ├── pngsuite │ │ ├── README │ │ ├── basn0g01.png │ │ ├── basn0g02.png │ │ ├── basn0g04.png │ │ ├── basn0g08.png │ │ ├── basn0g16.png │ │ ├── basn2c08.png │ │ ├── basn2c16.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn4a08.png │ │ ├── basn4a16.png │ │ ├── basn6a08.png │ │ ├── basn6a16.png │ │ ├── ftbbn0g01.png │ │ ├── ftbbn0g02.png │ │ ├── ftbbn0g04.png │ │ ├── ftbbn2c16.png │ │ ├── ftbbn3p08.png │ │ ├── ftbgn2c16.png │ │ ├── ftbgn3p08.png │ │ ├── ftbrn2c08.png │ │ ├── ftbwn0g16.png │ │ ├── ftbwn3p08.png │ │ ├── ftbyn3p08.png │ │ ├── ftp0n0g08.png │ │ ├── ftp0n2c08.png │ │ ├── ftp0n3p08.png │ │ └── ftp1n3p08.png │ ├── tools │ │ ├── README.txt │ │ ├── checksum-icc.c │ │ ├── chkfmt │ │ ├── cvtcolor.c │ │ ├── intgamma.sh │ │ ├── makesRGB.c │ │ ├── png-fix-itxt.c │ │ ├── pngfix.c │ │ └── sRGB.h │ └── visupng │ │ ├── PngFile.c │ │ ├── PngFile.h │ │ ├── README.txt │ │ ├── VisualPng.c │ │ ├── VisualPng.dsp │ │ ├── VisualPng.dsw │ │ ├── VisualPng.ico │ │ ├── VisualPng.png │ │ ├── VisualPng.rc │ │ ├── cexcept.h │ │ └── resource.h ├── depcomp ├── example.c ├── install-sh ├── libpng-config.in ├── libpng-manual.txt ├── libpng.3 ├── libpng.pc.in ├── libpngpf.3 ├── ltmain.sh ├── missing ├── png.5 ├── png.c ├── png.h ├── pngbar.jpg ├── pngbar.png ├── pngconf.h ├── pngdebug.h ├── pngerror.c ├── pngget.c ├── pnginfo.h ├── pngmem.c ├── pngnow.png ├── pngpread.c ├── pngpriv.h ├── pngread.c ├── pngrio.c ├── pngrtran.c ├── pngrutil.c ├── pngset.c ├── pngstruct.h ├── pngtest.c ├── pngtest.png ├── pngtrans.c ├── pngusr.dfa ├── pngwio.c ├── pngwrite.c ├── pngwtran.c ├── pngwutil.c ├── projects │ ├── owatcom │ │ ├── libpng.tgt │ │ ├── libpng.wpj │ │ ├── pngconfig.mak │ │ ├── pngstest.tgt │ │ ├── pngtest.tgt │ │ └── pngvalid.tgt │ ├── visualc71 │ │ ├── PRJ0041.mak │ │ ├── README.txt │ │ ├── README_zlib.txt │ │ ├── libpng.sln │ │ ├── libpng.vcproj │ │ ├── pngtest.vcproj │ │ └── zlib.vcproj │ └── vstudio │ │ ├── WARNING │ │ ├── libpng │ │ └── libpng.vcxproj │ │ ├── pnglibconf │ │ └── pnglibconf.vcxproj │ │ ├── pngstest │ │ └── pngstest.vcxproj │ │ ├── pngtest │ │ └── pngtest.vcxproj │ │ ├── pngunknown │ │ └── pngunknown.vcxproj │ │ ├── pngvalid │ │ └── pngvalid.vcxproj │ │ ├── readme.txt │ │ ├── vstudio.sln │ │ ├── zlib.props │ │ └── zlib │ │ └── zlib.vcxproj ├── scripts │ ├── README.txt │ ├── SCOPTIONS.ppc │ ├── checksym.awk │ ├── def.dfn │ ├── descrip.mms │ ├── dfn.awk │ ├── intprefix.dfn │ ├── libpng-config-body.in │ ├── libpng-config-head.in │ ├── libpng.pc.in │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── macro.lst │ ├── makefile.32sunu │ ├── makefile.64sunu │ ├── makefile.acorn │ ├── makefile.aix │ ├── makefile.amiga │ ├── makefile.atari │ ├── makefile.bc32 │ ├── makefile.beos │ ├── makefile.bor │ ├── makefile.cegcc │ ├── makefile.darwin │ ├── makefile.dec │ ├── makefile.dj2 │ ├── makefile.freebsd │ ├── makefile.gcc │ ├── makefile.hp64 │ ├── makefile.hpgcc │ ├── makefile.hpux │ ├── makefile.ibmc │ ├── makefile.intel │ ├── makefile.knr │ ├── makefile.linux │ ├── makefile.mips │ ├── makefile.msc │ ├── makefile.msys │ ├── makefile.ne12bsd │ ├── makefile.netbsd │ ├── makefile.openbsd │ ├── makefile.sco │ ├── makefile.sggcc │ ├── makefile.sgi │ ├── makefile.so9 │ ├── makefile.solaris │ ├── makefile.solaris-x86 │ ├── makefile.std │ ├── makefile.sunos │ ├── makefile.tc3 │ ├── makefile.vcwin32 │ ├── makevms.com │ ├── options.awk │ ├── pnglibconf.dfa │ ├── pnglibconf.h.prebuilt │ ├── pnglibconf.mak │ ├── pngwin.rc │ ├── prefix.dfn │ ├── smakefile.ppc │ ├── sym.dfn │ ├── symbols.def │ ├── symbols.dfn │ └── vers.dfn ├── test-driver └── tests │ ├── pngimage-full │ ├── pngimage-quick │ ├── pngstest │ ├── pngstest-0g01 │ ├── pngstest-0g02 │ ├── pngstest-0g04 │ ├── pngstest-0g08 │ ├── pngstest-0g16 │ ├── pngstest-2c08 │ ├── pngstest-2c16 │ ├── pngstest-3p01 │ ├── pngstest-3p02 │ ├── pngstest-3p04 │ ├── pngstest-3p08 │ ├── pngstest-4a08 │ ├── pngstest-4a16 │ ├── pngstest-6a08 │ ├── pngstest-6a16 │ ├── pngstest-error │ ├── pngtest │ ├── pngunknown-IDAT │ ├── pngunknown-discard │ ├── pngunknown-if-safe │ ├── pngunknown-sAPI │ ├── pngunknown-sTER │ ├── pngunknown-save │ ├── pngunknown-vpAg │ ├── pngvalid-gamma-16-to-8 │ ├── pngvalid-gamma-alpha-mode │ ├── pngvalid-gamma-background │ ├── pngvalid-gamma-expand16-alpha-mode │ ├── pngvalid-gamma-expand16-background │ ├── pngvalid-gamma-expand16-transform │ ├── pngvalid-gamma-sbit │ ├── pngvalid-gamma-threshold │ ├── pngvalid-gamma-transform │ ├── pngvalid-progressive-interlace-size │ ├── pngvalid-progressive-interlace-standard │ ├── pngvalid-progressive-interlace-transform │ ├── pngvalid-progressive-standard │ └── pngvalid-standard ├── theora-1.1.1 ├── AUTHORS ├── CHANGES ├── COPYING ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── SConstruct ├── aclocal.m4 ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── Doxyfile.in │ ├── Makefile.am │ ├── Makefile.in │ ├── color.html │ ├── draft-ietf-avt-rtp-theora-00.txt │ ├── draft-ietf-avt-rtp-theora-00.xml │ ├── libtheora │ │ ├── html │ │ │ ├── annotated.html │ │ │ ├── classes.html │ │ │ ├── codec_8h.html │ │ │ ├── codec_8h_source.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── files.html │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── globals_vars.html │ │ │ ├── group__basefuncs.html │ │ │ ├── group__decfuncs.html │ │ │ ├── group__encfuncs.html │ │ │ ├── group__oldfuncs.html │ │ │ ├── index.html │ │ │ ├── modules.html │ │ │ ├── structth__comment.html │ │ │ ├── structth__huff__code.html │ │ │ ├── structth__img__plane.html │ │ │ ├── structth__info.html │ │ │ ├── structth__quant__info.html │ │ │ ├── structth__quant__ranges.html │ │ │ ├── structth__stripe__callback.html │ │ │ ├── structtheora__comment.html │ │ │ ├── structtheora__info.html │ │ │ ├── structtheora__state.html │ │ │ ├── structyuv__buffer.html │ │ │ ├── tab_b.gif │ │ │ ├── tab_l.gif │ │ │ ├── tab_r.gif │ │ │ ├── tabs.css │ │ │ ├── theora_8h.html │ │ │ ├── theora_8h_source.html │ │ │ ├── theoradec_8h.html │ │ │ ├── theoradec_8h_source.html │ │ │ ├── theoraenc_8h.html │ │ │ └── theoraenc_8h_source.html │ │ └── latex │ │ │ ├── Makefile │ │ │ ├── annotated.tex │ │ │ ├── codec_8h.tex │ │ │ ├── doxygen.sty │ │ │ ├── files.tex │ │ │ ├── group__basefuncs.tex │ │ │ ├── group__decfuncs.tex │ │ │ ├── group__encfuncs.tex │ │ │ ├── group__oldfuncs.tex │ │ │ ├── index.tex │ │ │ ├── modules.tex │ │ │ ├── refman.tex │ │ │ ├── structth__comment.tex │ │ │ ├── structth__huff__code.tex │ │ │ ├── structth__img__plane.tex │ │ │ ├── structth__info.tex │ │ │ ├── structth__quant__info.tex │ │ │ ├── structth__quant__ranges.tex │ │ │ ├── structth__stripe__callback.tex │ │ │ ├── structtheora__comment.tex │ │ │ ├── structtheora__info.tex │ │ │ ├── structtheora__state.tex │ │ │ ├── structyuv__buffer.tex │ │ │ ├── theora_8h.tex │ │ │ ├── theoradec_8h.tex │ │ │ └── theoraenc_8h.tex │ ├── spec │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Theora.pdf │ │ ├── fdct.fig │ │ ├── hilbert-block.fig │ │ ├── hilbert-mb.fig │ │ ├── idct.fig │ │ ├── lflim.fig │ │ ├── ltablex.sty │ │ ├── macroblock.fig │ │ ├── pic-frame.fig │ │ ├── pic_even.fig │ │ ├── pic_even_odd.fig │ │ ├── pic_odd.fig │ │ ├── pic_odd_even.fig │ │ ├── pixel420.fig │ │ ├── pixel422.fig │ │ ├── pixel444.fig │ │ ├── raster-block.fig │ │ ├── reference-frames.fig │ │ ├── spec.bib │ │ ├── spec.tex │ │ ├── superblock.fig │ │ ├── vp3huff.c │ │ └── xifish.fig │ └── vp3-format.txt ├── examples │ ├── Makefile.am │ ├── Makefile.in │ ├── dump_psnr.c │ ├── dump_video.c │ ├── encoder_example.c │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── player_example.c │ └── png2theora.c ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── theora │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── codec.h │ │ ├── theora.h │ │ ├── theoradec.h │ │ └── theoraenc.h ├── install-sh ├── lib │ ├── Makefile.am │ ├── Makefile.in │ ├── Version_script │ ├── Version_script-dec │ ├── Version_script-enc │ ├── analyze.c │ ├── apiwrapper.c │ ├── apiwrapper.h │ ├── bitpack.c │ ├── bitpack.h │ ├── cpu.c │ ├── cpu.h │ ├── dct.h │ ├── decapiwrapper.c │ ├── decinfo.c │ ├── decint.h │ ├── decode.c │ ├── dequant.c │ ├── dequant.h │ ├── encapiwrapper.c │ ├── encfrag.c │ ├── encinfo.c │ ├── encint.h │ ├── encode.c │ ├── encoder_disabled.c │ ├── enquant.c │ ├── enquant.h │ ├── fdct.c │ ├── fragment.c │ ├── huffdec.c │ ├── huffdec.h │ ├── huffenc.c │ ├── huffenc.h │ ├── huffman.h │ ├── idct.c │ ├── info.c │ ├── internal.c │ ├── internal.h │ ├── mathops.c │ ├── mathops.h │ ├── mcenc.c │ ├── modedec.h │ ├── ocintrin.h │ ├── quant.c │ ├── quant.h │ ├── rate.c │ ├── state.c │ ├── theora.exp │ ├── theoradec.exp │ ├── theoraenc.exp │ ├── tokenize.c │ ├── x86 │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxfrag.h │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── sse2fdct.c │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86int.h │ │ └── x86state.c │ └── x86_vc │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxfrag.h │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86int.h │ │ └── x86state.c ├── libtheora.spec ├── libtheora.spec.in ├── ltmain.sh ├── m4 │ ├── Makefile.am │ ├── Makefile.in │ ├── as-ac-expand.m4 │ ├── ogg.m4 │ ├── pkg.m4 │ ├── sdl.m4 │ └── vorbis.m4 ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── Theora.xcodeproj │ │ └── project.pbxproj │ └── Theora_Prefix.pch ├── missing ├── mkinstalldirs ├── symbian │ ├── bld.inf │ ├── config.h │ └── theora.mmp ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── comment.c │ ├── comment_theora.c │ ├── granulepos.c │ ├── granulepos_theora.c │ ├── noop.c │ ├── noop_theora.c │ └── tests.h ├── theora-uninstalled.pc.in ├── theora.pc.in ├── theoradec-uninstalled.pc.in ├── theoradec.pc.in ├── theoraenc-uninstalled.pc.in ├── theoraenc.pc.in └── win32 │ ├── VS2005 │ ├── README │ ├── dump_video │ │ ├── dump_video_dynamic.vcproj │ │ └── dump_video_static.vcproj │ ├── encoder_example │ │ ├── encoder_example_dynamic.vcproj │ │ └── encoder_example_static.vcproj │ ├── libogg.vsprops │ ├── libtheora │ │ ├── libtheora_dynamic.vcproj │ │ └── libtheora_static.vcproj │ ├── libtheora_dynamic.sln │ ├── libtheora_static.sln │ └── libvorbis.vsprops │ ├── VS2008 │ ├── README │ ├── dump_video │ │ ├── dump_video_dynamic.vcproj │ │ └── dump_video_static.vcproj │ ├── encoder_example │ │ ├── encoder_example_dynamic.vcproj │ │ └── encoder_example_static.vcproj │ ├── libogg.vsprops │ ├── libtheora │ │ ├── libtheora_dynamic.vcproj │ │ └── libtheora_static.vcproj │ ├── libtheora_dynamic.sln │ ├── libtheora_static.sln │ └── libvorbis.vsprops │ ├── build_theora_static.bat │ ├── build_theora_static_debug.bat │ ├── experimental │ ├── dumpvid │ │ └── dumpvid.dsp │ ├── encoderwin │ │ ├── ReadMe.txt │ │ └── encoderwin.dsp │ ├── transcoder │ │ ├── avi2vp3 │ │ │ ├── avi2vp3.c │ │ │ ├── avilib.c │ │ │ ├── avilib.h │ │ │ ├── outfile.vp3 │ │ │ └── vp31.avi │ │ ├── readme.txt │ │ ├── transcoder.dsp │ │ └── transcoder_example.c │ └── wincompat │ │ ├── README.txt │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── getopt_long.c │ │ └── unistd.h │ ├── getopt.c │ ├── getopt1.c │ ├── getopt_win.h │ ├── theora_static.dsp │ └── xmingw32 │ ├── Makefile │ ├── libtheoradec-all.def │ ├── libtheoradec-all.rc │ ├── libtheoradec.rc │ ├── libtheoradec70.rc │ ├── libtheoradec70d.rc │ ├── libtheoradec71.rc │ ├── libtheoradec71d.rc │ ├── libtheoradec80.rc │ ├── libtheoradec80d.rc │ ├── libtheoradecd.rc │ ├── libtheoraenc-all.def │ ├── libtheoraenc-all.rc │ ├── libtheoraenc.rc │ ├── libtheoraenc70.rc │ ├── libtheoraenc70d.rc │ ├── libtheoraenc71.rc │ ├── libtheoraenc71d.rc │ ├── libtheoraenc80.rc │ ├── libtheoraenc80d.rc │ └── libtheoraencd.rc ├── tinyxml2-2.1.0 ├── .gitignore ├── CMakeLists.txt ├── CMakeLists.txt.original ├── Makefile ├── TinyXML2_small.png ├── contrib │ └── html5-printer.cpp ├── dox ├── readme.md ├── resources │ ├── dream.xml │ ├── empty.xml │ ├── utf8test.xml │ └── utf8testverify.xml ├── setversion.py ├── tinyxml2.cpp ├── tinyxml2.h ├── tinyxml2.pc.in ├── tinyxml2 │ ├── test.vcxproj │ ├── test.vcxproj.filters │ ├── tinyxml2-cbp │ │ ├── README │ │ └── tinyxml2-cbp.cbp │ ├── tinyxml2.sln │ ├── tinyxml2.vcxproj │ ├── tinyxml2.vcxproj.filters │ └── tinyxml2.xcodeproj │ │ └── project.pbxproj └── xmltest.cpp ├── vorbis-1.3.4 ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── 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 └── zlib-1.2.8 ├── CMakeLists.txt ├── CMakeLists.txt.original ├── ChangeLog ├── FAQ ├── INDEX ├── Makefile ├── Makefile.in ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── as400 ├── bndsrc ├── compile.clp ├── readme.txt └── zlib.inc ├── compress.c ├── configure ├── contrib ├── README.contrib ├── ada │ ├── buffer_demo.adb │ ├── mtest.adb │ ├── read.adb │ ├── readme.txt │ ├── test.adb │ ├── zlib-streams.adb │ ├── zlib-streams.ads │ ├── zlib-thin.adb │ ├── zlib-thin.ads │ ├── zlib.adb │ ├── zlib.ads │ └── zlib.gpr ├── amd64 │ └── amd64-match.S ├── asm686 │ ├── README.686 │ └── match.S ├── blast │ ├── Makefile │ ├── README │ ├── blast.c │ ├── blast.h │ ├── test.pk │ └── test.txt ├── delphi │ ├── ZLib.pas │ ├── ZLibConst.pas │ ├── readme.txt │ └── zlibd32.mak ├── dotzlib │ ├── DotZLib.build │ ├── DotZLib.chm │ ├── DotZLib.sln │ ├── DotZLib │ │ ├── AssemblyInfo.cs │ │ ├── ChecksumImpl.cs │ │ ├── CircularBuffer.cs │ │ ├── CodecBase.cs │ │ ├── Deflater.cs │ │ ├── DotZLib.cs │ │ ├── DotZLib.csproj │ │ ├── GZipStream.cs │ │ ├── Inflater.cs │ │ └── UnitTests.cs │ ├── LICENSE_1_0.txt │ └── readme.txt ├── gcc_gvmat64 │ └── gvmat64.S ├── infback9 │ ├── README │ ├── infback9.c │ ├── infback9.h │ ├── inffix9.h │ ├── inflate9.h │ ├── inftree9.c │ └── inftree9.h ├── inflate86 │ ├── inffas86.c │ └── inffast.S ├── iostream │ ├── test.cpp │ ├── zfstream.cpp │ └── zfstream.h ├── iostream2 │ ├── zstream.h │ └── zstream_test.cpp ├── iostream3 │ ├── README │ ├── TODO │ ├── test.cc │ ├── zfstream.cc │ └── zfstream.h ├── masmx64 │ ├── bld_ml64.bat │ ├── gvmat64.asm │ ├── inffas8664.c │ ├── inffasx64.asm │ └── readme.txt ├── masmx86 │ ├── bld_ml32.bat │ ├── inffas32.asm │ ├── match686.asm │ └── readme.txt ├── minizip │ ├── Makefile │ ├── Makefile.am │ ├── MiniZip64_Changes.txt │ ├── MiniZip64_info.txt │ ├── configure.ac │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── make_vms.com │ ├── miniunz.c │ ├── miniunzip.1 │ ├── minizip.1 │ ├── minizip.c │ ├── minizip.pc.in │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── pascal │ ├── example.pas │ ├── readme.txt │ ├── zlibd32.mak │ └── zlibpas.pas ├── puff │ ├── Makefile │ ├── README │ ├── puff.c │ ├── puff.h │ ├── pufftest.c │ └── zeros.raw ├── testzlib │ ├── testzlib.c │ └── testzlib.txt ├── untgz │ ├── Makefile │ ├── Makefile.msc │ └── untgz.c └── vstudio │ ├── readme.txt │ ├── vc10 │ ├── miniunz.vcxproj │ ├── miniunz.vcxproj.filters │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ ├── testzlib.vcxproj │ ├── testzlib.vcxproj.filters │ ├── testzlibdll.vcxproj │ ├── testzlibdll.vcxproj.filters │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibstat.vcxproj.filters │ ├── zlibvc.def │ ├── zlibvc.sln │ ├── zlibvc.vcxproj │ └── zlibvc.vcxproj.filters │ ├── vc11 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ └── vc9 │ ├── miniunz.vcproj │ ├── minizip.vcproj │ ├── testzlib.vcproj │ ├── testzlibdll.vcproj │ ├── zlib.rc │ ├── zlibstat.vcproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcproj ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── doc ├── algorithm.txt ├── rfc1950.txt ├── rfc1951.txt ├── rfc1952.txt └── txtvsbin.txt ├── examples ├── README.examples ├── enough.c ├── fitblk.c ├── gun.c ├── gzappend.c ├── gzjoin.c ├── gzlog.c ├── gzlog.h ├── zlib_how.html ├── zpipe.c └── zran.c ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── nintendods ├── Makefile └── README ├── old ├── Makefile.emx ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def └── visual-basic.txt ├── qnx └── package.qpg ├── test ├── example.c ├── infcover.c └── minigzip.c ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom ├── watcom_f.mak └── watcom_l.mak ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.gcc ├── Makefile.msc ├── README-WIN32.txt ├── VisualC.txt ├── zlib.def └── zlib1.rc ├── zconf.h.cmakein ├── zconf.h.cmakein.original ├── zconf.h.in ├── zconf.h.included ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.cmakein ├── zlib.pc.in ├── zlib2ansi ├── zutil.c └── zutil.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | out/ 3 | *.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/README.md -------------------------------------------------------------------------------- /base64-1.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/base64-1.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /base64-1.0.0/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/base64-1.0.0/base64.cpp -------------------------------------------------------------------------------- /base64-1.0.0/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/base64-1.0.0/base64.h -------------------------------------------------------------------------------- /bullet-2.82-r2704/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/AUTHORS -------------------------------------------------------------------------------- /bullet-2.82-r2704/BspDemo.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/BspDemo.bsp -------------------------------------------------------------------------------- /bullet-2.82-r2704/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/COPYING -------------------------------------------------------------------------------- /bullet-2.82-r2704/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/ChangeLog -------------------------------------------------------------------------------- /bullet-2.82-r2704/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/Doxyfile -------------------------------------------------------------------------------- /bullet-2.82-r2704/Extras/CDTestFramework/AntTweakBar/src/TwPrecomp.cpp: -------------------------------------------------------------------------------- 1 | #include "TwPrecomp.h" 2 | -------------------------------------------------------------------------------- /bullet-2.82-r2704/Extras/CDTestFramework/License.txt.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bullet-2.82-r2704/GLUT32.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/GLUT32.DLL -------------------------------------------------------------------------------- /bullet-2.82-r2704/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/INSTALL -------------------------------------------------------------------------------- /bullet-2.82-r2704/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/Makefile.am -------------------------------------------------------------------------------- /bullet-2.82-r2704/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/NEWS -------------------------------------------------------------------------------- /bullet-2.82-r2704/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/README -------------------------------------------------------------------------------- /bullet-2.82-r2704/UnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS( cppunit BulletUnitTests) 3 | -------------------------------------------------------------------------------- /bullet-2.82-r2704/VERSION: -------------------------------------------------------------------------------- 1 | 2.82 2 | -------------------------------------------------------------------------------- /bullet-2.82-r2704/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/autogen.sh -------------------------------------------------------------------------------- /bullet-2.82-r2704/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/config.h.in -------------------------------------------------------------------------------- /bullet-2.82-r2704/convex0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/convex0.bin -------------------------------------------------------------------------------- /bullet-2.82-r2704/file.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/file.obj -------------------------------------------------------------------------------- /bullet-2.82-r2704/glut64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/glut64.dll -------------------------------------------------------------------------------- /bullet-2.82-r2704/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/install-sh -------------------------------------------------------------------------------- /bullet-2.82-r2704/jenga.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/jenga.dae -------------------------------------------------------------------------------- /bullet-2.82-r2704/src/BulletMultiThreaded/SpuSampleTask/readme.txt: -------------------------------------------------------------------------------- 1 | Empty placeholder for future Libspe2 SPU task 2 | -------------------------------------------------------------------------------- /bullet-2.82-r2704/test1.oec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/bullet-2.82-r2704/test1.oec -------------------------------------------------------------------------------- /cmake/TargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/cmake/TargetArch.cmake -------------------------------------------------------------------------------- /cmake/android.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/cmake/android.toolchain.cmake -------------------------------------------------------------------------------- /cmake/gnu-amalgamate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/cmake/gnu-amalgamate.sh -------------------------------------------------------------------------------- /cmake/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/cmake/ios.toolchain.cmake -------------------------------------------------------------------------------- /cmake/msvc-amalgamate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/cmake/msvc-amalgamate.bat -------------------------------------------------------------------------------- /cmake/xcode-amalgamate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/cmake/xcode-amalgamate.sh -------------------------------------------------------------------------------- /curl-7.39.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/CHANGES -------------------------------------------------------------------------------- /curl-7.39.0/CMake/CurlTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/CMake/CurlTests.c -------------------------------------------------------------------------------- /curl-7.39.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/CMakeLists.txt -------------------------------------------------------------------------------- /curl-7.39.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/COPYING -------------------------------------------------------------------------------- /curl-7.39.0/MacOSX-Framework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/MacOSX-Framework -------------------------------------------------------------------------------- /curl-7.39.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/Makefile -------------------------------------------------------------------------------- /curl-7.39.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/Makefile.am -------------------------------------------------------------------------------- /curl-7.39.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/Makefile.in -------------------------------------------------------------------------------- /curl-7.39.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/README -------------------------------------------------------------------------------- /curl-7.39.0/RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/RELEASE-NOTES -------------------------------------------------------------------------------- /curl-7.39.0/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/acinclude.m4 -------------------------------------------------------------------------------- /curl-7.39.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/aclocal.m4 -------------------------------------------------------------------------------- /curl-7.39.0/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/buildconf -------------------------------------------------------------------------------- /curl-7.39.0/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/compile -------------------------------------------------------------------------------- /curl-7.39.0/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/config.guess -------------------------------------------------------------------------------- /curl-7.39.0/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/config.sub -------------------------------------------------------------------------------- /curl-7.39.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/configure -------------------------------------------------------------------------------- /curl-7.39.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/configure.ac -------------------------------------------------------------------------------- /curl-7.39.0/curl-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/curl-config.in -------------------------------------------------------------------------------- /curl-7.39.0/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/depcomp -------------------------------------------------------------------------------- /curl-7.39.0/docs/BINDINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/BINDINGS -------------------------------------------------------------------------------- /curl-7.39.0/docs/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/BUGS -------------------------------------------------------------------------------- /curl-7.39.0/docs/CONTRIBUTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/CONTRIBUTE -------------------------------------------------------------------------------- /curl-7.39.0/docs/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/FAQ -------------------------------------------------------------------------------- /curl-7.39.0/docs/FEATURES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/FEATURES -------------------------------------------------------------------------------- /curl-7.39.0/docs/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/HISTORY -------------------------------------------------------------------------------- /curl-7.39.0/docs/HTTP-COOKIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/HTTP-COOKIES -------------------------------------------------------------------------------- /curl-7.39.0/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/INSTALL -------------------------------------------------------------------------------- /curl-7.39.0/docs/INTERNALS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/INTERNALS -------------------------------------------------------------------------------- /curl-7.39.0/docs/KNOWN_BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/KNOWN_BUGS -------------------------------------------------------------------------------- /curl-7.39.0/docs/MANUAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/MANUAL -------------------------------------------------------------------------------- /curl-7.39.0/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/Makefile.am -------------------------------------------------------------------------------- /curl-7.39.0/docs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/Makefile.in -------------------------------------------------------------------------------- /curl-7.39.0/docs/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/README.win32 -------------------------------------------------------------------------------- /curl-7.39.0/docs/RESOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/RESOURCES -------------------------------------------------------------------------------- /curl-7.39.0/docs/SECURITY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/SECURITY -------------------------------------------------------------------------------- /curl-7.39.0/docs/SSL-PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/SSL-PROBLEMS -------------------------------------------------------------------------------- /curl-7.39.0/docs/SSLCERTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/SSLCERTS -------------------------------------------------------------------------------- /curl-7.39.0/docs/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/THANKS -------------------------------------------------------------------------------- /curl-7.39.0/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/TODO -------------------------------------------------------------------------------- /curl-7.39.0/docs/VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/VERSIONS -------------------------------------------------------------------------------- /curl-7.39.0/docs/curl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/curl.1 -------------------------------------------------------------------------------- /curl-7.39.0/docs/curl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/curl.html -------------------------------------------------------------------------------- /curl-7.39.0/docs/curl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/curl.pdf -------------------------------------------------------------------------------- /curl-7.39.0/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/index.html -------------------------------------------------------------------------------- /curl-7.39.0/docs/libcurl/ABI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/docs/libcurl/ABI -------------------------------------------------------------------------------- /curl-7.39.0/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/include/README -------------------------------------------------------------------------------- /curl-7.39.0/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/install-sh -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.am -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.b32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.b32 -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.in -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.inc -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.m32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.m32 -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.vc10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.vc10 -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.vc6 -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.vc8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.vc8 -------------------------------------------------------------------------------- /curl-7.39.0/lib/Makefile.vc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/Makefile.vc9 -------------------------------------------------------------------------------- /curl-7.39.0/lib/README.ares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/README.ares -------------------------------------------------------------------------------- /curl-7.39.0/lib/README.curlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/README.curlx -------------------------------------------------------------------------------- /curl-7.39.0/lib/README.hostip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/README.hostip -------------------------------------------------------------------------------- /curl-7.39.0/lib/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/amigaos.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/amigaos.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/arpa_telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/arpa_telnet.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/asyn-ares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/asyn-ares.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/asyn-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/asyn-thread.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/asyn.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/base64.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/bundles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/bundles.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/bundles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/bundles.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/checksrc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/checksrc.pl -------------------------------------------------------------------------------- /curl-7.39.0/lib/config-dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/config-dos.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/config-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/config-mac.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/config-tpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/config-tpf.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/conncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/conncache.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/conncache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/conncache.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/connect.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/connect.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/cookie.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/cookie.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_base64.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_gssapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_gssapi.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_gssapi.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_hmac.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_ldap.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_md4.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_md5.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_memory.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_ntlm.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_ntlm.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_rtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_rtmp.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_rtmp.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_sasl.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_sasl.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_sec.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_setup.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_sspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_sspi.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/curl_sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curl_sspi.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/curlx.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/dict.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/dict.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/dotdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/dotdot.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/dotdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/dotdot.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/easy.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/easyif.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/escape.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/escape.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/file.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/file.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/fileinfo.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/fileinfo.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/formdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/formdata.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/formdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/formdata.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/ftp.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/ftp.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/getenv.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/getinfo.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/getinfo.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/gopher.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/gopher.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hash.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hash.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hmac.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostasyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostasyn.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostcheck.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostcheck.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostip.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostip.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostip4.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostip6.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/hostsyn.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http2.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http2.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/http_chunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http_chunks.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/http_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http_chunks.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/http_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http_digest.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/http_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http_digest.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/http_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http_proxy.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/http_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/http_proxy.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/idn_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/idn_win32.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/if2ip.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/if2ip.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/imap.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/imap.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/inet_ntop.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/inet_ntop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/inet_ntop.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/inet_pton.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/inet_pton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/inet_pton.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/krb5.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/ldap.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/libcurl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/libcurl.plist -------------------------------------------------------------------------------- /curl-7.39.0/lib/libcurl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/libcurl.rc -------------------------------------------------------------------------------- /curl-7.39.0/lib/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/llist.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/llist.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/makefile.dj -------------------------------------------------------------------------------- /curl-7.39.0/lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/md4.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/md5.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/memdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/memdebug.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/memdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/memdebug.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/mprintf.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/multi.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/multihandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/multihandle.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/multiif.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/netrc.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/netrc.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/non-ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/non-ascii.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/non-ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/non-ascii.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/nonblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/nonblock.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/nonblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/nonblock.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/nwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/nwlib.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/nwos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/nwos.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/objnames.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/objnames.inc -------------------------------------------------------------------------------- /curl-7.39.0/lib/openldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/openldap.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/parsedate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/parsedate.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/parsedate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/parsedate.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/pingpong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/pingpong.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/pingpong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/pingpong.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/pipeline.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/pipeline.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/pop3.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/pop3.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/progress.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/progress.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/rawstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/rawstr.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/rawstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/rawstr.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/rtsp.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/rtsp.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/security.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/select.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/select.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/sendf.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/sendf.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/setup-os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/setup-os400.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/setup-vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/setup-vms.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/share.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/share.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/sigpipe.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/slist.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/slist.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/smtp.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/smtp.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/sockaddr.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/socks.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/socks.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/socks_sspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/socks_sspi.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/speedcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/speedcheck.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/speedcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/speedcheck.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/splay.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/splay.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/ssh.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/ssh.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strdup.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strdup.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/strequal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strequal.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/strequal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strequal.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strerror.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strerror.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strtok.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strtok.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/strtoofft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strtoofft.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/strtoofft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/strtoofft.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/telnet.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/telnet.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/tftp.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/tftp.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/timeval.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/timeval.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/transfer.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/transfer.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/url.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/url.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/urldata.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/version.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/axtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/axtls.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/axtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/axtls.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/cyassl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/cyassl.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/cyassl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/cyassl.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/gskit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/gskit.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/gskit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/gskit.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/gtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/gtls.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/gtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/gtls.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/nss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/nss.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/nssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/nssg.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/vtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/vtls.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/vtls/vtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/vtls/vtls.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/warnless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/warnless.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/warnless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/warnless.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/wildcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/wildcard.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/wildcard.h -------------------------------------------------------------------------------- /curl-7.39.0/lib/x509asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/x509asn1.c -------------------------------------------------------------------------------- /curl-7.39.0/lib/x509asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/lib/x509asn1.h -------------------------------------------------------------------------------- /curl-7.39.0/libcurl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/libcurl.pc.in -------------------------------------------------------------------------------- /curl-7.39.0/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/ltmain.sh -------------------------------------------------------------------------------- /curl-7.39.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/libtool.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/xc-am-iface.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/xc-am-iface.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/xc-cc-check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/xc-cc-check.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/xc-lt-iface.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/xc-lt-iface.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/xc-translit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/xc-translit.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/xc-val-flgs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/xc-val-flgs.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/zz40-xc-ovr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/zz40-xc-ovr.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/zz50-xc-ovr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/zz50-xc-ovr.m4 -------------------------------------------------------------------------------- /curl-7.39.0/m4/zz60-xc-ovr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/m4/zz60-xc-ovr.m4 -------------------------------------------------------------------------------- /curl-7.39.0/maketgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/maketgz -------------------------------------------------------------------------------- /curl-7.39.0/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/missing -------------------------------------------------------------------------------- /curl-7.39.0/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/mkinstalldirs -------------------------------------------------------------------------------- /curl-7.39.0/packages/AIX/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | 3 | EXTRA_DIST = Makefile.am 4 | -------------------------------------------------------------------------------- /curl-7.39.0/packages/AIX/RPM/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = README curl.spec.in 2 | 3 | -------------------------------------------------------------------------------- /curl-7.39.0/packages/EPM/Makefile.am: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign 2 | 3 | EXTRA_DIST = README curl.list.in 4 | -------------------------------------------------------------------------------- /curl-7.39.0/packages/Linux/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | -------------------------------------------------------------------------------- /curl-7.39.0/packages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/packages/README -------------------------------------------------------------------------------- /curl-7.39.0/packages/Win32/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = cygwin 2 | 3 | EXTRA_DIST = README 4 | -------------------------------------------------------------------------------- /curl-7.39.0/projects/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/projects/README -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.am -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.b32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.b32 -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.in -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.inc -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.m32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.m32 -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.vc10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.vc10 -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.vc6 -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.vc8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.vc8 -------------------------------------------------------------------------------- /curl-7.39.0/src/Makefile.vc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/Makefile.vc9 -------------------------------------------------------------------------------- /curl-7.39.0/src/curl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/curl.rc -------------------------------------------------------------------------------- /curl-7.39.0/src/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/makefile.dj -------------------------------------------------------------------------------- /curl-7.39.0/src/mkhelp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/mkhelp.pl -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_bname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_bname.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_bname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_bname.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_dbg.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_dbg.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_hdr.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_hdr.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_prg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_prg.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_prg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_prg.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_rea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_rea.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_rea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_rea.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_see.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_see.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_see.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_wrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_wrt.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_cb_wrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_cb_wrt.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_dirhie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_dirhie.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_dirhie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_dirhie.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_doswin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_doswin.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_doswin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_doswin.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_help.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_help.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_main.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_main.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_mfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_mfiles.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_mfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_mfiles.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_msgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_msgs.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_msgs.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_sdecls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_sdecls.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_setopt.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_setopt.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_setup.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_sleep.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_sleep.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_strdup.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_strdup.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_util.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_util.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_vms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_vms.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_vms.h -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_xattr.c -------------------------------------------------------------------------------- /curl-7.39.0/src/tool_xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/src/tool_xattr.h -------------------------------------------------------------------------------- /curl-7.39.0/tests/FILEFORMAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/FILEFORMAT -------------------------------------------------------------------------------- /curl-7.39.0/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/Makefile.am -------------------------------------------------------------------------------- /curl-7.39.0/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/Makefile.in -------------------------------------------------------------------------------- /curl-7.39.0/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/README -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test1 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test10 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test11 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test12 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test13 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test14 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test15 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test16 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test17 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test18 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test19 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test2 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test20 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test21 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test22 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test23 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test24 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test25 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test26 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test27 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test28 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test29 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test3 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test30 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test31 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test32 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test33 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test34 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test35 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test36 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test37 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test38 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test39 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test4 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test40 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test41 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test42 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test43 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test44 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test45 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test46 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test47 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test48 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test49 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test5 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test50 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test51 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test52 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test53 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test54 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test55 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test56 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test57 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test58: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test58 -------------------------------------------------------------------------------- /curl-7.39.0/tests/data/test59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/data/test59 -------------------------------------------------------------------------------- /curl-7.39.0/tests/ftp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/curl-7.39.0/tests/ftp.pm -------------------------------------------------------------------------------- /freetype-2.4.5/.gitignore: -------------------------------------------------------------------------------- 1 | config.mk 2 | -------------------------------------------------------------------------------- /freetype-2.4.5/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/ChangeLog -------------------------------------------------------------------------------- /freetype-2.4.5/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/Jamfile -------------------------------------------------------------------------------- /freetype-2.4.5/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/Jamrules -------------------------------------------------------------------------------- /freetype-2.4.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/Makefile -------------------------------------------------------------------------------- /freetype-2.4.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/README -------------------------------------------------------------------------------- /freetype-2.4.5/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/README.git -------------------------------------------------------------------------------- /freetype-2.4.5/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/autogen.sh -------------------------------------------------------------------------------- /freetype-2.4.5/builds/newline: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /freetype-2.4.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/configure -------------------------------------------------------------------------------- /freetype-2.4.5/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/docs/DEBUG -------------------------------------------------------------------------------- /freetype-2.4.5/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/docs/MAKEPP -------------------------------------------------------------------------------- /freetype-2.4.5/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/docs/TODO -------------------------------------------------------------------------------- /freetype-2.4.5/docs/reference/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /freetype-2.4.5/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/modules.cfg -------------------------------------------------------------------------------- /freetype-2.4.5/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/objs/README -------------------------------------------------------------------------------- /freetype-2.4.5/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/src/Jamfile -------------------------------------------------------------------------------- /freetype-2.4.5/src/tools/docmaker/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /freetype-2.4.5/version.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/freetype-2.4.5/version.sed -------------------------------------------------------------------------------- /glew-1.10.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/CMakeLists.txt -------------------------------------------------------------------------------- /glew-1.10.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/LICENSE.txt -------------------------------------------------------------------------------- /glew-1.10.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/Makefile -------------------------------------------------------------------------------- /glew-1.10.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/README.txt -------------------------------------------------------------------------------- /glew-1.10.0/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/TODO.txt -------------------------------------------------------------------------------- /glew-1.10.0/auto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/auto/Makefile -------------------------------------------------------------------------------- /glew-1.10.0/auto/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/auto/blacklist -------------------------------------------------------------------------------- /glew-1.10.0/auto/extensions/gl/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glew-1.10.0/auto/src/glewinfo_glx.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | #else /* _UNIX */ 4 | 5 | static void glxewInfo () 6 | { 7 | -------------------------------------------------------------------------------- /glew-1.10.0/config/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/config/version -------------------------------------------------------------------------------- /glew-1.10.0/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/basic.html -------------------------------------------------------------------------------- /glew-1.10.0/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/build.html -------------------------------------------------------------------------------- /glew-1.10.0/doc/glew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/glew.css -------------------------------------------------------------------------------- /glew-1.10.0/doc/glew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/glew.html -------------------------------------------------------------------------------- /glew-1.10.0/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/glew.png -------------------------------------------------------------------------------- /glew-1.10.0/doc/glew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/glew.txt -------------------------------------------------------------------------------- /glew-1.10.0/doc/glxew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/glxew.html -------------------------------------------------------------------------------- /glew-1.10.0/doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/gpl.txt -------------------------------------------------------------------------------- /glew-1.10.0/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/index.html -------------------------------------------------------------------------------- /glew-1.10.0/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/log.html -------------------------------------------------------------------------------- /glew-1.10.0/doc/mesa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/mesa.txt -------------------------------------------------------------------------------- /glew-1.10.0/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/new.png -------------------------------------------------------------------------------- /glew-1.10.0/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /glew-1.10.0/doc/wglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/doc/wglew.html -------------------------------------------------------------------------------- /glew-1.10.0/glew.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/glew.pc.in -------------------------------------------------------------------------------- /glew-1.10.0/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/src/glew.c -------------------------------------------------------------------------------- /glew-1.10.0/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/glew-1.10.0/src/glewinfo.c -------------------------------------------------------------------------------- /libjson-7.6.1/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/libjson-7.6.1/License.txt -------------------------------------------------------------------------------- /libjson-7.6.1/libjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/libjson-7.6.1/libjson.h -------------------------------------------------------------------------------- /libjson-7.6.1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/libjson-7.6.1/makefile -------------------------------------------------------------------------------- /lua-5.2.3/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(src) 2 | -------------------------------------------------------------------------------- /lua-5.2.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/Makefile -------------------------------------------------------------------------------- /lua-5.2.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/README -------------------------------------------------------------------------------- /lua-5.2.3/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/doc/logo.gif -------------------------------------------------------------------------------- /lua-5.2.3/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/doc/lua.1 -------------------------------------------------------------------------------- /lua-5.2.3/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/doc/lua.css -------------------------------------------------------------------------------- /lua-5.2.3/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/doc/luac.1 -------------------------------------------------------------------------------- /lua-5.2.3/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/doc/manual.css -------------------------------------------------------------------------------- /lua-5.2.3/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/doc/manual.html -------------------------------------------------------------------------------- /lua-5.2.3/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/doc/readme.html -------------------------------------------------------------------------------- /lua-5.2.3/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/Makefile -------------------------------------------------------------------------------- /lua-5.2.3/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lapi.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lapi.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lauxlib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lauxlib.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lbaselib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lbitlib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lcode.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lcode.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lcorolib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lctype.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lctype.h -------------------------------------------------------------------------------- /lua-5.2.3/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ldblib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ldebug.c -------------------------------------------------------------------------------- /lua-5.2.3/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ldebug.h -------------------------------------------------------------------------------- /lua-5.2.3/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ldo.c -------------------------------------------------------------------------------- /lua-5.2.3/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ldo.h -------------------------------------------------------------------------------- /lua-5.2.3/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ldump.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lfunc.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lfunc.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lgc.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lgc.h -------------------------------------------------------------------------------- /lua-5.2.3/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/linit.c -------------------------------------------------------------------------------- /lua-5.2.3/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/liolib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/llex.c -------------------------------------------------------------------------------- /lua-5.2.3/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/llex.h -------------------------------------------------------------------------------- /lua-5.2.3/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/llimits.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lmathlib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lmem.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lmem.h -------------------------------------------------------------------------------- /lua-5.2.3/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/loadlib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lobject.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lobject.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lopcodes.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lopcodes.h -------------------------------------------------------------------------------- /lua-5.2.3/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/loslib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lparser.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lparser.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lstate.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lstate.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lstring.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lstring.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lstrlib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ltable.c -------------------------------------------------------------------------------- /lua-5.2.3/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ltable.h -------------------------------------------------------------------------------- /lua-5.2.3/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ltablib.c -------------------------------------------------------------------------------- /lua-5.2.3/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ltm.c -------------------------------------------------------------------------------- /lua-5.2.3/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/ltm.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lua.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lua.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lua.hpp -------------------------------------------------------------------------------- /lua-5.2.3/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/luac.c -------------------------------------------------------------------------------- /lua-5.2.3/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/luaconf.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lualib.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lundump.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lundump.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lvm.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lvm.h -------------------------------------------------------------------------------- /lua-5.2.3/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lzio.c -------------------------------------------------------------------------------- /lua-5.2.3/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/lua-5.2.3/src/lzio.h -------------------------------------------------------------------------------- /ogg-1.3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/AUTHORS -------------------------------------------------------------------------------- /ogg-1.3.2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/CHANGES -------------------------------------------------------------------------------- /ogg-1.3.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/CMakeLists.txt -------------------------------------------------------------------------------- /ogg-1.3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/COPYING -------------------------------------------------------------------------------- /ogg-1.3.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/Makefile.am -------------------------------------------------------------------------------- /ogg-1.3.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/Makefile.in -------------------------------------------------------------------------------- /ogg-1.3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/README -------------------------------------------------------------------------------- /ogg-1.3.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/aclocal.m4 -------------------------------------------------------------------------------- /ogg-1.3.2/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/compile -------------------------------------------------------------------------------- /ogg-1.3.2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/config.guess -------------------------------------------------------------------------------- /ogg-1.3.2/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/config.h.in -------------------------------------------------------------------------------- /ogg-1.3.2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/config.sub -------------------------------------------------------------------------------- /ogg-1.3.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/configure -------------------------------------------------------------------------------- /ogg-1.3.2/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/configure.in -------------------------------------------------------------------------------- /ogg-1.3.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/depcomp -------------------------------------------------------------------------------- /ogg-1.3.2/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/Makefile.am -------------------------------------------------------------------------------- /ogg-1.3.2/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/Makefile.in -------------------------------------------------------------------------------- /ogg-1.3.2/doc/framing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/framing.html -------------------------------------------------------------------------------- /ogg-1.3.2/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/index.html -------------------------------------------------------------------------------- /ogg-1.3.2/doc/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/packets.png -------------------------------------------------------------------------------- /ogg-1.3.2/doc/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/pages.png -------------------------------------------------------------------------------- /ogg-1.3.2/doc/rfc3533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/rfc3533.txt -------------------------------------------------------------------------------- /ogg-1.3.2/doc/rfc5334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/rfc5334.txt -------------------------------------------------------------------------------- /ogg-1.3.2/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/doc/stream.png -------------------------------------------------------------------------------- /ogg-1.3.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/install-sh -------------------------------------------------------------------------------- /ogg-1.3.2/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/libogg.spec -------------------------------------------------------------------------------- /ogg-1.3.2/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/libogg.spec.in -------------------------------------------------------------------------------- /ogg-1.3.2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/ltmain.sh -------------------------------------------------------------------------------- /ogg-1.3.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/missing -------------------------------------------------------------------------------- /ogg-1.3.2/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/ogg.m4 -------------------------------------------------------------------------------- /ogg-1.3.2/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/ogg.pc.in -------------------------------------------------------------------------------- /ogg-1.3.2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/src/Makefile.am -------------------------------------------------------------------------------- /ogg-1.3.2/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/src/Makefile.in -------------------------------------------------------------------------------- /ogg-1.3.2/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/src/bitwise.c -------------------------------------------------------------------------------- /ogg-1.3.2/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/src/framing.c -------------------------------------------------------------------------------- /ogg-1.3.2/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/ogg-1.3.2/win32/ogg.def -------------------------------------------------------------------------------- /openal-1.16.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/.gitignore -------------------------------------------------------------------------------- /openal-1.16.0/Alc/ALc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/ALc.c -------------------------------------------------------------------------------- /openal-1.16.0/Alc/ALu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/ALu.c -------------------------------------------------------------------------------- /openal-1.16.0/Alc/bs2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/bs2b.c -------------------------------------------------------------------------------- /openal-1.16.0/Alc/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/compat.h -------------------------------------------------------------------------------- /openal-1.16.0/Alc/hrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/hrtf.c -------------------------------------------------------------------------------- /openal-1.16.0/Alc/hrtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/hrtf.h -------------------------------------------------------------------------------- /openal-1.16.0/Alc/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/mixer.c -------------------------------------------------------------------------------- /openal-1.16.0/Alc/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/Alc/vector.h -------------------------------------------------------------------------------- /openal-1.16.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/COPYING -------------------------------------------------------------------------------- /openal-1.16.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/ChangeLog -------------------------------------------------------------------------------- /openal-1.16.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/README -------------------------------------------------------------------------------- /openal-1.16.0/XCompile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/XCompile.txt -------------------------------------------------------------------------------- /openal-1.16.0/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/config.h.in -------------------------------------------------------------------------------- /openal-1.16.0/env-vars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/env-vars.txt -------------------------------------------------------------------------------- /openal-1.16.0/hrtf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/hrtf.txt -------------------------------------------------------------------------------- /openal-1.16.0/openal.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/openal-1.16.0/openal.pc.in -------------------------------------------------------------------------------- /png-1.6.15/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/ANNOUNCE -------------------------------------------------------------------------------- /png-1.6.15/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/CHANGES -------------------------------------------------------------------------------- /png-1.6.15/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/CMakeLists.txt -------------------------------------------------------------------------------- /png-1.6.15/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/INSTALL -------------------------------------------------------------------------------- /png-1.6.15/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/LICENSE -------------------------------------------------------------------------------- /png-1.6.15/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/Makefile.am -------------------------------------------------------------------------------- /png-1.6.15/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/Makefile.in -------------------------------------------------------------------------------- /png-1.6.15/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/README -------------------------------------------------------------------------------- /png-1.6.15/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/TODO -------------------------------------------------------------------------------- /png-1.6.15/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/aclocal.m4 -------------------------------------------------------------------------------- /png-1.6.15/arm/arm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/arm/arm_init.c -------------------------------------------------------------------------------- /png-1.6.15/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/autogen.sh -------------------------------------------------------------------------------- /png-1.6.15/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/compile -------------------------------------------------------------------------------- /png-1.6.15/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/config.guess -------------------------------------------------------------------------------- /png-1.6.15/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/config.h.in -------------------------------------------------------------------------------- /png-1.6.15/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/config.sub -------------------------------------------------------------------------------- /png-1.6.15/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/configure -------------------------------------------------------------------------------- /png-1.6.15/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/configure.ac -------------------------------------------------------------------------------- /png-1.6.15/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/depcomp -------------------------------------------------------------------------------- /png-1.6.15/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/example.c -------------------------------------------------------------------------------- /png-1.6.15/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/install-sh -------------------------------------------------------------------------------- /png-1.6.15/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/libpng.3 -------------------------------------------------------------------------------- /png-1.6.15/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/libpng.pc.in -------------------------------------------------------------------------------- /png-1.6.15/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/libpngpf.3 -------------------------------------------------------------------------------- /png-1.6.15/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/ltmain.sh -------------------------------------------------------------------------------- /png-1.6.15/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/missing -------------------------------------------------------------------------------- /png-1.6.15/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/png.5 -------------------------------------------------------------------------------- /png-1.6.15/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/png.c -------------------------------------------------------------------------------- /png-1.6.15/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/png.h -------------------------------------------------------------------------------- /png-1.6.15/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngbar.jpg -------------------------------------------------------------------------------- /png-1.6.15/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngbar.png -------------------------------------------------------------------------------- /png-1.6.15/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngconf.h -------------------------------------------------------------------------------- /png-1.6.15/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngdebug.h -------------------------------------------------------------------------------- /png-1.6.15/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngerror.c -------------------------------------------------------------------------------- /png-1.6.15/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngget.c -------------------------------------------------------------------------------- /png-1.6.15/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pnginfo.h -------------------------------------------------------------------------------- /png-1.6.15/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngmem.c -------------------------------------------------------------------------------- /png-1.6.15/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngnow.png -------------------------------------------------------------------------------- /png-1.6.15/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngpread.c -------------------------------------------------------------------------------- /png-1.6.15/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngpriv.h -------------------------------------------------------------------------------- /png-1.6.15/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngread.c -------------------------------------------------------------------------------- /png-1.6.15/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngrio.c -------------------------------------------------------------------------------- /png-1.6.15/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngrtran.c -------------------------------------------------------------------------------- /png-1.6.15/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngrutil.c -------------------------------------------------------------------------------- /png-1.6.15/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngset.c -------------------------------------------------------------------------------- /png-1.6.15/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngstruct.h -------------------------------------------------------------------------------- /png-1.6.15/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngtest.c -------------------------------------------------------------------------------- /png-1.6.15/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngtest.png -------------------------------------------------------------------------------- /png-1.6.15/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngtrans.c -------------------------------------------------------------------------------- /png-1.6.15/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngusr.dfa -------------------------------------------------------------------------------- /png-1.6.15/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngwio.c -------------------------------------------------------------------------------- /png-1.6.15/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngwrite.c -------------------------------------------------------------------------------- /png-1.6.15/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngwtran.c -------------------------------------------------------------------------------- /png-1.6.15/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/pngwutil.c -------------------------------------------------------------------------------- /png-1.6.15/scripts/def.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/scripts/def.dfn -------------------------------------------------------------------------------- /png-1.6.15/scripts/dfn.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/scripts/dfn.awk -------------------------------------------------------------------------------- /png-1.6.15/scripts/sym.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/scripts/sym.dfn -------------------------------------------------------------------------------- /png-1.6.15/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/test-driver -------------------------------------------------------------------------------- /png-1.6.15/tests/pngstest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/tests/pngstest -------------------------------------------------------------------------------- /png-1.6.15/tests/pngtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/png-1.6.15/tests/pngtest -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-background 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-gamma-expand16-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-transform --expand16 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-sbit 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-threshold 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-transform 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-progressive-interlace-size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --size --progressive-read 3 | -------------------------------------------------------------------------------- /png-1.6.15/tests/pngvalid-progressive-interlace-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --transform 3 | -------------------------------------------------------------------------------- /theora-1.1.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/AUTHORS -------------------------------------------------------------------------------- /theora-1.1.1/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/CHANGES -------------------------------------------------------------------------------- /theora-1.1.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/COPYING -------------------------------------------------------------------------------- /theora-1.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/LICENSE -------------------------------------------------------------------------------- /theora-1.1.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/Makefile.am -------------------------------------------------------------------------------- /theora-1.1.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/Makefile.in -------------------------------------------------------------------------------- /theora-1.1.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/README -------------------------------------------------------------------------------- /theora-1.1.1/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/SConstruct -------------------------------------------------------------------------------- /theora-1.1.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/aclocal.m4 -------------------------------------------------------------------------------- /theora-1.1.1/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/autogen.sh -------------------------------------------------------------------------------- /theora-1.1.1/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/compile -------------------------------------------------------------------------------- /theora-1.1.1/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/config.guess -------------------------------------------------------------------------------- /theora-1.1.1/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/config.h.in -------------------------------------------------------------------------------- /theora-1.1.1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/config.sub -------------------------------------------------------------------------------- /theora-1.1.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/configure -------------------------------------------------------------------------------- /theora-1.1.1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/configure.ac -------------------------------------------------------------------------------- /theora-1.1.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/depcomp -------------------------------------------------------------------------------- /theora-1.1.1/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/install-sh -------------------------------------------------------------------------------- /theora-1.1.1/lib/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/analyze.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/bitpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/bitpack.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/bitpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/bitpack.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/cpu.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/cpu.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/dct.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/decinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/decinfo.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/decint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/decint.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/decode.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/dequant.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/dequant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/dequant.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/encfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/encfrag.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/encinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/encinfo.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/encint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/encint.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/encode.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/enquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/enquant.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/enquant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/enquant.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/fdct.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/huffdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/huffdec.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/huffdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/huffdec.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/huffenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/huffenc.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/huffenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/huffenc.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/huffman.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/idct.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/info.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/mathops.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/mathops.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/mcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/mcenc.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/modedec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/modedec.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/quant.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/quant.h -------------------------------------------------------------------------------- /theora-1.1.1/lib/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/rate.c -------------------------------------------------------------------------------- /theora-1.1.1/lib/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/lib/state.c -------------------------------------------------------------------------------- /theora-1.1.1/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/ltmain.sh -------------------------------------------------------------------------------- /theora-1.1.1/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/m4/ogg.m4 -------------------------------------------------------------------------------- /theora-1.1.1/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/m4/pkg.m4 -------------------------------------------------------------------------------- /theora-1.1.1/m4/sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/m4/sdl.m4 -------------------------------------------------------------------------------- /theora-1.1.1/m4/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/m4/vorbis.m4 -------------------------------------------------------------------------------- /theora-1.1.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/missing -------------------------------------------------------------------------------- /theora-1.1.1/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/mkinstalldirs -------------------------------------------------------------------------------- /theora-1.1.1/tests/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/tests/noop.c -------------------------------------------------------------------------------- /theora-1.1.1/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/tests/tests.h -------------------------------------------------------------------------------- /theora-1.1.1/theora.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/theora-1.1.1/theora.pc.in -------------------------------------------------------------------------------- /theora-1.1.1/win32/experimental/wincompat/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinyxml2-2.1.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/tinyxml2-2.1.0/.gitignore -------------------------------------------------------------------------------- /tinyxml2-2.1.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/tinyxml2-2.1.0/Makefile -------------------------------------------------------------------------------- /tinyxml2-2.1.0/dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/tinyxml2-2.1.0/dox -------------------------------------------------------------------------------- /tinyxml2-2.1.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/tinyxml2-2.1.0/readme.md -------------------------------------------------------------------------------- /tinyxml2-2.1.0/resources/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinyxml2-2.1.0/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/tinyxml2-2.1.0/tinyxml2.h -------------------------------------------------------------------------------- /tinyxml2-2.1.0/xmltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/tinyxml2-2.1.0/xmltest.cpp -------------------------------------------------------------------------------- /vorbis-1.3.4/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/AUTHORS -------------------------------------------------------------------------------- /vorbis-1.3.4/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/CHANGES -------------------------------------------------------------------------------- /vorbis-1.3.4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/COPYING -------------------------------------------------------------------------------- /vorbis-1.3.4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/Makefile.am -------------------------------------------------------------------------------- /vorbis-1.3.4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/Makefile.in -------------------------------------------------------------------------------- /vorbis-1.3.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/README -------------------------------------------------------------------------------- /vorbis-1.3.4/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/aclocal.m4 -------------------------------------------------------------------------------- /vorbis-1.3.4/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/autogen.sh -------------------------------------------------------------------------------- /vorbis-1.3.4/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/compile -------------------------------------------------------------------------------- /vorbis-1.3.4/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/config.guess -------------------------------------------------------------------------------- /vorbis-1.3.4/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/config.h.in -------------------------------------------------------------------------------- /vorbis-1.3.4/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/config.sub -------------------------------------------------------------------------------- /vorbis-1.3.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/configure -------------------------------------------------------------------------------- /vorbis-1.3.4/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/configure.ac -------------------------------------------------------------------------------- /vorbis-1.3.4/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/depcomp -------------------------------------------------------------------------------- /vorbis-1.3.4/doc/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/doc/wait.png -------------------------------------------------------------------------------- /vorbis-1.3.4/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/install-sh -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/barkmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/barkmel.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/bitrate.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/bitrate.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/block.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/floor0.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/floor1.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/info.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/lookup.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/lookup.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/lpc.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/lpc.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/lsp.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/lsp.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/masking.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/mdct.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/mdct.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/misc.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/os.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/psy.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/psy.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/psytune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/psytune.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/res0.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/scales.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/smallft.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/smallft.h -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/tone.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/window.c -------------------------------------------------------------------------------- /vorbis-1.3.4/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/lib/window.h -------------------------------------------------------------------------------- /vorbis-1.3.4/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/ltmain.sh -------------------------------------------------------------------------------- /vorbis-1.3.4/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/m4/ogg.m4 -------------------------------------------------------------------------------- /vorbis-1.3.4/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/m4/pkg.m4 -------------------------------------------------------------------------------- /vorbis-1.3.4/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/missing -------------------------------------------------------------------------------- /vorbis-1.3.4/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/test/test.c -------------------------------------------------------------------------------- /vorbis-1.3.4/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/test/util.c -------------------------------------------------------------------------------- /vorbis-1.3.4/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/test/util.h -------------------------------------------------------------------------------- /vorbis-1.3.4/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/todo.txt -------------------------------------------------------------------------------- /vorbis-1.3.4/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vorbis.m4 -------------------------------------------------------------------------------- /vorbis-1.3.4/vorbis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vorbis.pc.in -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/16.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/16u.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c-1.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c0.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c1.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c2.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c3.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c4.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c5.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c6.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c7.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c8.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44c9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44c9.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p-1.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p0.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p1.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p2.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p3.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p4.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p5.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p6.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p7.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p8.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44p9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44p9.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u0.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u1.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u2.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u3.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u4.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u5.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u6.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u7.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u8.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/44u9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/44u9.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/8.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/8u.vqs -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/bookutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/bookutil.c -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/bookutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/bookutil.h -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/metrics.c -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/vqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/vqgen.c -------------------------------------------------------------------------------- /vorbis-1.3.4/vq/vqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/vorbis-1.3.4/vq/vqgen.h -------------------------------------------------------------------------------- /zlib-1.2.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/CMakeLists.txt -------------------------------------------------------------------------------- /zlib-1.2.8/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/ChangeLog -------------------------------------------------------------------------------- /zlib-1.2.8/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/FAQ -------------------------------------------------------------------------------- /zlib-1.2.8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/INDEX -------------------------------------------------------------------------------- /zlib-1.2.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/Makefile -------------------------------------------------------------------------------- /zlib-1.2.8/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/Makefile.in -------------------------------------------------------------------------------- /zlib-1.2.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/README -------------------------------------------------------------------------------- /zlib-1.2.8/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/adler32.c -------------------------------------------------------------------------------- /zlib-1.2.8/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/as400/bndsrc -------------------------------------------------------------------------------- /zlib-1.2.8/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/as400/zlib.inc -------------------------------------------------------------------------------- /zlib-1.2.8/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/compress.c -------------------------------------------------------------------------------- /zlib-1.2.8/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/configure -------------------------------------------------------------------------------- /zlib-1.2.8/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/crc32.c -------------------------------------------------------------------------------- /zlib-1.2.8/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/crc32.h -------------------------------------------------------------------------------- /zlib-1.2.8/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/deflate.c -------------------------------------------------------------------------------- /zlib-1.2.8/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/deflate.h -------------------------------------------------------------------------------- /zlib-1.2.8/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/doc/rfc1950.txt -------------------------------------------------------------------------------- /zlib-1.2.8/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/doc/rfc1951.txt -------------------------------------------------------------------------------- /zlib-1.2.8/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/doc/rfc1952.txt -------------------------------------------------------------------------------- /zlib-1.2.8/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/examples/gun.c -------------------------------------------------------------------------------- /zlib-1.2.8/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/examples/zran.c -------------------------------------------------------------------------------- /zlib-1.2.8/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/gzclose.c -------------------------------------------------------------------------------- /zlib-1.2.8/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/gzguts.h -------------------------------------------------------------------------------- /zlib-1.2.8/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/gzlib.c -------------------------------------------------------------------------------- /zlib-1.2.8/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/gzread.c -------------------------------------------------------------------------------- /zlib-1.2.8/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/gzwrite.c -------------------------------------------------------------------------------- /zlib-1.2.8/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/infback.c -------------------------------------------------------------------------------- /zlib-1.2.8/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/inffast.c -------------------------------------------------------------------------------- /zlib-1.2.8/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/inffast.h -------------------------------------------------------------------------------- /zlib-1.2.8/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/inffixed.h -------------------------------------------------------------------------------- /zlib-1.2.8/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/inflate.c -------------------------------------------------------------------------------- /zlib-1.2.8/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/inflate.h -------------------------------------------------------------------------------- /zlib-1.2.8/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/inftrees.c -------------------------------------------------------------------------------- /zlib-1.2.8/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/inftrees.h -------------------------------------------------------------------------------- /zlib-1.2.8/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/make_vms.com -------------------------------------------------------------------------------- /zlib-1.2.8/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/old/README -------------------------------------------------------------------------------- /zlib-1.2.8/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/old/descrip.mms -------------------------------------------------------------------------------- /zlib-1.2.8/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/qnx/package.qpg -------------------------------------------------------------------------------- /zlib-1.2.8/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/test/example.c -------------------------------------------------------------------------------- /zlib-1.2.8/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/test/infcover.c -------------------------------------------------------------------------------- /zlib-1.2.8/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/test/minigzip.c -------------------------------------------------------------------------------- /zlib-1.2.8/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/treebuild.xml -------------------------------------------------------------------------------- /zlib-1.2.8/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/trees.c -------------------------------------------------------------------------------- /zlib-1.2.8/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/trees.h -------------------------------------------------------------------------------- /zlib-1.2.8/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/uncompr.c -------------------------------------------------------------------------------- /zlib-1.2.8/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/win32/zlib.def -------------------------------------------------------------------------------- /zlib-1.2.8/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/win32/zlib1.rc -------------------------------------------------------------------------------- /zlib-1.2.8/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zconf.h.cmakein -------------------------------------------------------------------------------- /zlib-1.2.8/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zconf.h.in -------------------------------------------------------------------------------- /zlib-1.2.8/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zlib.3 -------------------------------------------------------------------------------- /zlib-1.2.8/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zlib.3.pdf -------------------------------------------------------------------------------- /zlib-1.2.8/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zlib.h -------------------------------------------------------------------------------- /zlib-1.2.8/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zlib.map -------------------------------------------------------------------------------- /zlib-1.2.8/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zlib.pc.cmakein -------------------------------------------------------------------------------- /zlib-1.2.8/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zlib.pc.in -------------------------------------------------------------------------------- /zlib-1.2.8/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zlib2ansi -------------------------------------------------------------------------------- /zlib-1.2.8/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zutil.c -------------------------------------------------------------------------------- /zlib-1.2.8/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameplay3d/gameplay-deps/HEAD/zlib-1.2.8/zutil.h --------------------------------------------------------------------------------