├── .hg_archival.txt ├── .hgignore ├── README.md ├── doc ├── HCraft_Manual.odt ├── HCraft_Manual.pdf ├── build.txt ├── changes.txt ├── coding_guidelines.txt ├── editor.txt ├── folders.txt ├── levels.txt ├── licenses.txt └── models_xml.odt ├── ghosts └── ghosts.txt ├── hcraft.sh ├── libgcc_s_dw2-1.dll ├── libs ├── directx │ └── include │ │ └── sal.h ├── freealut │ └── freealut-1.1.0 │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── admin │ │ ├── Makefile.am │ │ ├── RPM │ │ │ └── freealut.spec.in │ │ ├── VisualStudio6 │ │ │ ├── alut.dsw │ │ │ ├── alut │ │ │ │ └── alut.dsp │ │ │ ├── hello_world │ │ │ │ └── hello_world.dsp │ │ │ └── playfile │ │ │ │ └── playfile.dsp │ │ ├── VisualStudioDotNET │ │ │ ├── alut.sln │ │ │ ├── alut │ │ │ │ └── alut.vcproj │ │ │ ├── hello_world │ │ │ │ └── hello_world.vcproj │ │ │ └── playfile │ │ │ │ └── playfile.vcproj │ │ └── pkgconfig │ │ │ ├── Makefile.am │ │ │ ├── freealut-config.in │ │ │ └── freealut.pc.in │ │ ├── autogen.sh │ │ ├── config.h.cmake_in │ │ ├── configure.ac │ │ ├── doc │ │ ├── alut.css │ │ └── alut.html │ │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── hello_world.c │ │ └── playfile.c │ │ ├── include │ │ ├── AL │ │ │ └── alut.h │ │ └── Makefile.am │ │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README │ │ ├── alutBufferData.c │ │ ├── alutCodec.c │ │ ├── alutError.c │ │ ├── alutInit.c │ │ ├── alutInputStream.c │ │ ├── alutInternal.h │ │ ├── alutLoader.c │ │ ├── alutOutputStream.c │ │ ├── alutUtil.c │ │ ├── alutVersion.c │ │ ├── alutWaveform.c │ │ └── helloworld.wav │ │ └── test_suite │ │ ├── Makefile.am │ │ ├── README │ │ ├── file1.wav │ │ ├── file2.au │ │ ├── file3.raw │ │ ├── test_errorstuff.c │ │ ├── test_fileloader.c │ │ ├── test_memoryloader.c │ │ ├── test_retrostuff.c │ │ ├── test_version.c │ │ └── test_waveforms.c ├── irrlicht │ ├── bin │ │ ├── Win32-VisualStudio │ │ │ └── irrlicht.ico │ │ ├── Win32-gcc │ │ │ └── irrlicht.ico │ │ └── Win64-VisualStudio │ │ │ └── readme.txt │ ├── changes.txt │ ├── doc │ │ ├── aesGladman.txt │ │ ├── bzip2-license.txt │ │ ├── irrlicht-license.txt │ │ ├── jpglib-license.txt │ │ ├── libpng-license.txt │ │ ├── readme.txt │ │ ├── release_checklist.txt │ │ └── upgrade-guide.txt │ ├── examples │ │ ├── 01.HelloWorld │ │ │ ├── HelloWorld.cbp │ │ │ ├── HelloWorld.dev │ │ │ ├── HelloWorld.vcproj │ │ │ ├── HelloWorld_vc10.vcxproj │ │ │ ├── HelloWorld_vc11.vcxproj │ │ │ ├── HelloWorld_vc8.vcproj │ │ │ ├── HelloWorld_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 02.Quake3Map │ │ │ ├── Makefile │ │ │ ├── Quake3Map.cbp │ │ │ ├── Quake3Map.dev │ │ │ ├── Quake3Map.vcproj │ │ │ ├── Quake3Map_vc10.vcxproj │ │ │ ├── Quake3Map_vc11.vcxproj │ │ │ ├── Quake3Map_vc8.vcproj │ │ │ ├── Quake3Map_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 03.CustomSceneNode │ │ │ ├── CustomSceneNode.cbp │ │ │ ├── CustomSceneNode.dev │ │ │ ├── CustomSceneNode.vcproj │ │ │ ├── CustomSceneNode_vc10.vcxproj │ │ │ ├── CustomSceneNode_vc11.vcxproj │ │ │ ├── CustomSceneNode_vc8.vcproj │ │ │ ├── CustomSceneNode_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 04.Movement │ │ │ ├── Makefile │ │ │ ├── Movement.cbp │ │ │ ├── Movement.dev │ │ │ ├── Movement.vcproj │ │ │ ├── Movement_vc10.vcxproj │ │ │ ├── Movement_vc11.vcxproj │ │ │ ├── Movement_vc8.vcproj │ │ │ ├── Movement_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 05.UserInterface │ │ │ ├── Makefile │ │ │ ├── UserInterface.cbp │ │ │ ├── UserInterface.dev │ │ │ ├── UserInterface.vcproj │ │ │ ├── UserInterface_vc10.vcxproj │ │ │ ├── UserInterface_vc11.vcxproj │ │ │ ├── UserInterface_vc8.vcproj │ │ │ ├── UserInterface_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 06.2DGraphics │ │ │ ├── 2DGraphics.cbp │ │ │ ├── 2DGraphics.dev │ │ │ ├── 2DGraphics.vcproj │ │ │ ├── 2DGraphics_vc10.vcxproj │ │ │ ├── 2DGraphics_vc11.vcxproj │ │ │ ├── 2DGraphics_vc8.vcproj │ │ │ ├── 2DGraphics_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 07.Collision │ │ │ ├── Collision.cbp │ │ │ ├── Collision.dev │ │ │ ├── Collision.vcproj │ │ │ ├── Collision_vc10.vcxproj │ │ │ ├── Collision_vc11.vcxproj │ │ │ ├── Collision_vc8.vcproj │ │ │ ├── Collision_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 08.SpecialFX │ │ │ ├── Makefile │ │ │ ├── SpecialFX.cbp │ │ │ ├── SpecialFX.dev │ │ │ ├── SpecialFX.vcproj │ │ │ ├── SpecialFX_vc10.vcxproj │ │ │ ├── SpecialFX_vc11.vcxproj │ │ │ ├── SpecialFX_vc8.vcproj │ │ │ ├── SpecialFX_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 09.Meshviewer │ │ │ ├── 9.Meshviewer.rc │ │ │ ├── Makefile │ │ │ ├── MeshViewer.dev │ │ │ ├── Meshviewer.cbp │ │ │ ├── Meshviewer.vcproj │ │ │ ├── Meshviewer_vc10.vcxproj │ │ │ ├── Meshviewer_vc11.vcxproj │ │ │ ├── Meshviewer_vc8.vcproj │ │ │ ├── Meshviewer_vc9.vcproj │ │ │ ├── icon.ico │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ └── tutorial.html │ │ ├── 10.Shaders │ │ │ ├── Makefile │ │ │ ├── Shaders.cbp │ │ │ ├── Shaders.dev │ │ │ ├── Shaders.vcproj │ │ │ ├── Shaders_vc10.vcxproj │ │ │ ├── Shaders_vc11.vcxproj │ │ │ ├── Shaders_vc8.vcproj │ │ │ ├── Shaders_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 11.PerPixelLighting │ │ │ ├── Makefile │ │ │ ├── PerPixelLighting.cbp │ │ │ ├── PerPixelLighting.dev │ │ │ ├── PerPixelLighting.vcproj │ │ │ ├── PerPixelLighting_vc10.vcxproj │ │ │ ├── PerPixelLighting_vc11.vcxproj │ │ │ ├── PerPixelLighting_vc8.vcproj │ │ │ ├── PerPixelLighting_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 12.TerrainRendering │ │ │ ├── Makefile │ │ │ ├── TerrainRendering.cbp │ │ │ ├── TerrainRendering.dev │ │ │ ├── TerrainRendering.vcproj │ │ │ ├── TerrainRendering_vc10.vcxproj │ │ │ ├── TerrainRendering_vc11.vcxproj │ │ │ ├── TerrainRendering_vc8.vcproj │ │ │ ├── TerrainRendering_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 13.RenderToTexture │ │ │ ├── Makefile │ │ │ ├── RenderToTexture.cbp │ │ │ ├── RenderToTexture.dev │ │ │ ├── RenderToTexture.vcproj │ │ │ ├── RenderToTexture_vc10.vcxproj │ │ │ ├── RenderToTexture_vc11.vcxproj │ │ │ ├── RenderToTexture_vc8.vcproj │ │ │ ├── RenderToTexture_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 14.Win32Window │ │ │ ├── Makefile │ │ │ ├── Win32Window.cbp │ │ │ ├── Win32Window.dev │ │ │ ├── Win32Window.vcproj │ │ │ ├── Win32Window_vc10.vcxproj │ │ │ ├── Win32Window_vc11.vcxproj │ │ │ ├── Win32Window_vc8.vcproj │ │ │ ├── Win32Window_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 15.LoadIrrFile │ │ │ ├── LoadIrrFile.cbp │ │ │ ├── LoadIrrFile.dev │ │ │ ├── LoadIrrFile.vcproj │ │ │ ├── LoadIrrFile_vc10.vcxproj │ │ │ ├── LoadIrrFile_vc11.vcxproj │ │ │ ├── LoadIrrFile_vc8.vcproj │ │ │ ├── LoadIrrFile_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 16.Quake3MapShader │ │ │ ├── Makefile │ │ │ ├── Quake3MapShader.cbp │ │ │ ├── Quake3MapShader.dev │ │ │ ├── Quake3MapShader.vcproj │ │ │ ├── Quake3MapShader_vc10.vcxproj │ │ │ ├── Quake3MapShader_vc11.vcxproj │ │ │ ├── Quake3MapShader_vc8.vcproj │ │ │ ├── Quake3MapShader_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 17.HelloWorld_Mobile │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_v8.vcproj │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_v9.vcproj │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_vc10.vcxproj │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_vc11.vcxproj │ │ │ ├── HelloWorld_mobile.sln │ │ │ ├── HelloWorld_mobile.vcproj │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ ├── 18.SplitScreen │ │ │ ├── Makefile │ │ │ ├── SplitScreen.cbp │ │ │ ├── SplitScreen.dev │ │ │ ├── SplitScreen.vcproj │ │ │ ├── SplitScreen_vc10.vcxproj │ │ │ ├── SplitScreen_vc11.vcxproj │ │ │ ├── SplitScreen_vc8.vcproj │ │ │ ├── SplitScreen_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 19.MouseAndJoystick │ │ │ ├── Makefile │ │ │ ├── MouseAndJoystick.cbp │ │ │ ├── MouseAndJoystick.dev │ │ │ ├── MouseAndJoystick.vcproj │ │ │ ├── MouseAndJoystick_vc10.vcxproj │ │ │ ├── MouseAndJoystick_vc11.vcxproj │ │ │ ├── MouseAndJoystick_vc8.vcproj │ │ │ ├── MouseAndJoystick_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 20.ManagedLights │ │ │ ├── Makefile │ │ │ ├── ManagedLights.cbp │ │ │ ├── ManagedLights.dev │ │ │ ├── ManagedLights.vcproj │ │ │ ├── ManagedLights_vc10.vcxproj │ │ │ ├── ManagedLights_vc11.vcxproj │ │ │ ├── ManagedLights_vc8.vcproj │ │ │ ├── ManagedLights_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 21.Quake3Explorer │ │ │ ├── Makefile │ │ │ ├── Quake3Explorer.cbp │ │ │ ├── Quake3Explorer.dev │ │ │ ├── Quake3Explorer.vcproj │ │ │ ├── Quake3Explorer_vc10.vcxproj │ │ │ ├── Quake3Explorer_vc11.vcxproj │ │ │ ├── Quake3Explorer_vc8.vcproj │ │ │ ├── Quake3Explorer_vc9.vcproj │ │ │ ├── main.cpp │ │ │ ├── q3factory.cpp │ │ │ ├── q3factory.h │ │ │ ├── sound.cpp │ │ │ └── sound.h │ │ ├── 22.MaterialViewer │ │ │ ├── Makefile │ │ │ ├── MaterialViewer.cbp │ │ │ ├── MaterialViewer.dev │ │ │ ├── MaterialViewer.vcproj │ │ │ ├── MaterialViewer_vc10.vcxproj │ │ │ ├── MaterialViewer_vc11.vcxproj │ │ │ ├── MaterialViewer_vc8.vcproj │ │ │ ├── MaterialViewer_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── main.h │ │ ├── 23.SMeshHandling │ │ │ ├── Makefile │ │ │ ├── SMeshHandling.cbp │ │ │ ├── SMeshHandling.dev │ │ │ ├── SMeshHandling.vcproj │ │ │ ├── SMeshHandling_vc10.vcxproj │ │ │ ├── SMeshHandling_vc11.vcxproj │ │ │ ├── SMeshHandling_vc8.vcproj │ │ │ ├── SMeshHandling_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 24.CursorControl │ │ │ ├── CursorControl.cbp │ │ │ ├── CursorControl.vcproj │ │ │ ├── CursorControl_vc10.vcxproj │ │ │ ├── CursorControl_vc11.vcxproj │ │ │ ├── CursorControl_vc8.vcproj │ │ │ ├── CursorControl_vc9.vcproj │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ ├── 25.XmlHandling │ │ │ ├── Makefile │ │ │ ├── XmlHandling.cbp │ │ │ ├── XmlHandling.vcproj │ │ │ ├── XmlHandling_vc10.vcxproj │ │ │ ├── XmlHandling_vc11.vcxproj │ │ │ ├── XmlHandling_vc8.vcproj │ │ │ ├── XmlHandling_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 26.OcclusionQuery │ │ │ ├── Makefile │ │ │ ├── OcclusionQuery.cbp │ │ │ ├── OcclusionQuery.dev │ │ │ ├── OcclusionQuery.vcproj │ │ │ ├── OcclusionQuery_vc10.vcxproj │ │ │ ├── OcclusionQuery_vc11.vcxproj │ │ │ ├── OcclusionQuery_vc8.vcproj │ │ │ ├── OcclusionQuery_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 27.HelloWorld_Android │ │ │ └── where_is_it.txt │ │ ├── 28.HelloWorld_iPhone │ │ │ └── where_is_it.txt │ │ ├── 29.HardwareSkinning │ │ │ └── where_is_it.txt │ │ ├── 30.Profiling │ │ │ ├── Makefile │ │ │ ├── Profiling.cbp │ │ │ ├── Profiling.vcproj │ │ │ ├── Profiling_vc10.vcxproj │ │ │ ├── Profiling_vc11.vcxproj │ │ │ ├── Profiling_vc8.vcproj │ │ │ ├── Profiling_vc9.vcproj │ │ │ └── main.cpp │ │ ├── BuildAllExamples.MacOSX │ │ │ └── DemoApp-Info.plist │ │ ├── BuildAllExamples.workspace │ │ ├── BuildAllExamples_v8.sln │ │ ├── BuildAllExamples_v9.sln │ │ ├── BuildAllExamples_vc10.sln │ │ ├── BuildAllExamples_vc11.sln │ │ ├── Demo │ │ │ ├── CDemo.cpp │ │ │ ├── CDemo.h │ │ │ ├── CMainMenu.cpp │ │ │ ├── CMainMenu.h │ │ │ ├── Demo.vcproj │ │ │ ├── Demo_vc10.vcxproj │ │ │ ├── Demo_vc11.vcxproj │ │ │ ├── Demo_vc8.vcproj │ │ │ ├── Demo_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── demo.cbp │ │ │ ├── demo.dev │ │ │ ├── icon.ico │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ └── resscript.rc │ │ ├── Makefile │ │ ├── buildAllExamples.sh │ │ └── whereAreTheBinaries.txt │ ├── include │ │ ├── CDynamicMeshBuffer.h │ │ ├── CIndexBuffer.h │ │ ├── CMeshBuffer.h │ │ ├── CVertexBuffer.h │ │ ├── EAttributes.h │ │ ├── ECullingTypes.h │ │ ├── EDebugSceneTypes.h │ │ ├── EDeviceTypes.h │ │ ├── EDriverFeatures.h │ │ ├── EDriverTypes.h │ │ ├── EFocusFlags.h │ │ ├── EGUIAlignment.h │ │ ├── EGUIElementTypes.h │ │ ├── EHardwareBufferFlags.h │ │ ├── EMaterialFlags.h │ │ ├── EMaterialTypes.h │ │ ├── EMeshWriterEnums.h │ │ ├── EMessageBoxFlags.h │ │ ├── EPrimitiveTypes.h │ │ ├── ESceneNodeAnimatorTypes.h │ │ ├── ESceneNodeTypes.h │ │ ├── EShaderTypes.h │ │ ├── ETerrainElements.h │ │ ├── IAnimatedMesh.h │ │ ├── IAnimatedMeshMD2.h │ │ ├── IAnimatedMeshMD3.h │ │ ├── IAnimatedMeshSceneNode.h │ │ ├── IAttributeExchangingObject.h │ │ ├── IAttributes.h │ │ ├── IBillboardSceneNode.h │ │ ├── IBillboardTextSceneNode.h │ │ ├── IBoneSceneNode.h │ │ ├── ICameraSceneNode.h │ │ ├── IColladaMeshWriter.h │ │ ├── ICursorControl.h │ │ ├── IDummyTransformationSceneNode.h │ │ ├── IDynamicMeshBuffer.h │ │ ├── IEventReceiver.h │ │ ├── IFileArchive.h │ │ ├── IFileList.h │ │ ├── IFileSystem.h │ │ ├── IGPUProgrammingServices.h │ │ ├── IGUIButton.h │ │ ├── IGUICheckBox.h │ │ ├── IGUIColorSelectDialog.h │ │ ├── IGUIComboBox.h │ │ ├── IGUIContextMenu.h │ │ ├── IGUIEditBox.h │ │ ├── IGUIElement.h │ │ ├── IGUIElementFactory.h │ │ ├── IGUIEnvironment.h │ │ ├── IGUIFileOpenDialog.h │ │ ├── IGUIFont.h │ │ ├── IGUIFontBitmap.h │ │ ├── IGUIImage.h │ │ ├── IGUIImageList.h │ │ ├── IGUIInOutFader.h │ │ ├── IGUIListBox.h │ │ ├── IGUIMeshViewer.h │ │ ├── IGUIProfiler.h │ │ ├── IGUIScrollBar.h │ │ ├── IGUISkin.h │ │ ├── IGUISpinBox.h │ │ ├── IGUISpriteBank.h │ │ ├── IGUIStaticText.h │ │ ├── IGUITabControl.h │ │ ├── IGUITable.h │ │ ├── IGUIToolbar.h │ │ ├── IGUITreeView.h │ │ ├── IGUIWindow.h │ │ ├── IGeometryCreator.h │ │ ├── IImage.h │ │ ├── IImageLoader.h │ │ ├── IImageWriter.h │ │ ├── IIndexBuffer.h │ │ ├── ILightManager.h │ │ ├── ILightSceneNode.h │ │ ├── ILogger.h │ │ ├── IMaterialRenderer.h │ │ ├── IMaterialRendererServices.h │ │ ├── IMesh.h │ │ ├── IMeshBuffer.h │ │ ├── IMeshCache.h │ │ ├── IMeshLoader.h │ │ ├── IMeshManipulator.h │ │ ├── IMeshSceneNode.h │ │ ├── IMeshTextureLoader.h │ │ ├── IMeshWriter.h │ │ ├── IMetaTriangleSelector.h │ │ ├── IOSOperator.h │ │ ├── IParticleAffector.h │ │ ├── IParticleAnimatedMeshSceneNodeEmitter.h │ │ ├── IParticleAttractionAffector.h │ │ ├── IParticleBoxEmitter.h │ │ ├── IParticleCylinderEmitter.h │ │ ├── IParticleEmitter.h │ │ ├── IParticleFadeOutAffector.h │ │ ├── IParticleGravityAffector.h │ │ ├── IParticleMeshEmitter.h │ │ ├── IParticleRingEmitter.h │ │ ├── IParticleRotationAffector.h │ │ ├── IParticleSphereEmitter.h │ │ ├── IParticleSystemSceneNode.h │ │ ├── IProfiler.h │ │ ├── IQ3LevelMesh.h │ │ ├── IQ3Shader.h │ │ ├── IRandomizer.h │ │ ├── IReadFile.h │ │ ├── IReferenceCounted.h │ │ ├── ISceneCollisionManager.h │ │ ├── ISceneLoader.h │ │ ├── ISceneManager.h │ │ ├── ISceneNode.h │ │ ├── ISceneNodeAnimator.h │ │ ├── ISceneNodeAnimatorCameraFPS.h │ │ ├── ISceneNodeAnimatorCameraMaya.h │ │ ├── ISceneNodeAnimatorCollisionResponse.h │ │ ├── ISceneNodeAnimatorFactory.h │ │ ├── ISceneNodeFactory.h │ │ ├── ISceneUserDataSerializer.h │ │ ├── IShaderConstantSetCallBack.h │ │ ├── IShadowVolumeSceneNode.h │ │ ├── ISkinnedMesh.h │ │ ├── ITerrainSceneNode.h │ │ ├── ITextSceneNode.h │ │ ├── ITexture.h │ │ ├── ITimer.h │ │ ├── ITriangleSelector.h │ │ ├── IVertexBuffer.h │ │ ├── IVideoDriver.h │ │ ├── IVideoModeList.h │ │ ├── IVolumeLightSceneNode.h │ │ ├── IWriteFile.h │ │ ├── IXMLReader.h │ │ ├── IXMLWriter.h │ │ ├── IrrCompileConfig.h │ │ ├── IrrlichtDevice.h │ │ ├── Keycodes.h │ │ ├── S3DVertex.h │ │ ├── SAnimatedMesh.h │ │ ├── SColor.h │ │ ├── SExposedVideoData.h │ │ ├── SIrrCreationParameters.h │ │ ├── SKeyMap.h │ │ ├── SLight.h │ │ ├── SMaterial.h │ │ ├── SMaterialLayer.h │ │ ├── SMesh.h │ │ ├── SMeshBuffer.h │ │ ├── SMeshBufferLightMap.h │ │ ├── SMeshBufferTangents.h │ │ ├── SParticle.h │ │ ├── SSharedMeshBuffer.h │ │ ├── SSkinMeshBuffer.h │ │ ├── SVertexIndex.h │ │ ├── SVertexManipulator.h │ │ ├── SViewFrustum.h │ │ ├── SceneParameters.h │ │ ├── aabbox3d.h │ │ ├── coreutil.h │ │ ├── dimension2d.h │ │ ├── driverChoice.h │ │ ├── fast_atof.h │ │ ├── heapsort.h │ │ ├── irrAllocator.h │ │ ├── irrArray.h │ │ ├── irrList.h │ │ ├── irrMap.h │ │ ├── irrMath.h │ │ ├── irrString.h │ │ ├── irrTypes.h │ │ ├── irrXML.h │ │ ├── irrlicht.h │ │ ├── irrpack.h │ │ ├── irrunpack.h │ │ ├── leakHunter.h │ │ ├── line2d.h │ │ ├── line3d.h │ │ ├── matrix4.h │ │ ├── path.h │ │ ├── plane3d.h │ │ ├── position2d.h │ │ ├── quaternion.h │ │ ├── rect.h │ │ ├── triangle3d.h │ │ ├── vector2d.h │ │ └── vector3d.h │ ├── lib │ │ └── Win64-visualStudio │ │ │ └── readme.txt │ ├── readme.txt │ ├── scripts │ │ ├── doc │ │ │ ├── irrlicht │ │ │ │ ├── doxygen-pdf.cfg │ │ │ │ ├── doxygen.cfg │ │ │ │ ├── footer.html │ │ │ │ ├── irrlicht.png │ │ │ │ ├── irrlichtlogo.png │ │ │ │ ├── logobig.png │ │ │ │ ├── makedocumentation.bat │ │ │ │ ├── makedocumentation.sh │ │ │ │ ├── maketut.sed │ │ │ │ ├── maketutorial.bat │ │ │ │ ├── maketutorial.sh │ │ │ │ ├── tut.txt │ │ │ │ ├── tut_end.html │ │ │ │ ├── tut_head.html │ │ │ │ └── tutorials.sed │ │ │ └── sed.txt │ │ ├── libIrrlicht1.spec │ │ └── packages │ │ │ └── OSX │ │ │ ├── Irrlicht.pmdoc │ │ │ ├── 01irrlicht-contents.xml │ │ │ ├── 01irrlicht.xml │ │ │ ├── 02html-contents.xml │ │ │ ├── 02html.xml │ │ │ ├── 03media-contents.xml │ │ │ ├── 03media.xml │ │ │ ├── 04examples-contents.xml │ │ │ ├── 04examples.xml │ │ │ ├── 05tools-contents.xml │ │ │ ├── 05tools.xml │ │ │ ├── 06source-contents.xml │ │ │ ├── 06source.xml │ │ │ ├── 07changes-contents.xml │ │ │ ├── 07changes.xml │ │ │ ├── 08readme-contents.xml │ │ │ ├── 08readme.xml │ │ │ └── index.xml │ │ │ ├── moveAll.sh │ │ │ └── readme.txt │ ├── source │ │ ├── Irrlicht │ │ │ ├── BuiltInFont.h │ │ │ ├── C3DSMeshFileLoader.cpp │ │ │ ├── C3DSMeshFileLoader.h │ │ │ ├── CAnimatedMeshHalfLife.cpp │ │ │ ├── CAnimatedMeshHalfLife.h │ │ │ ├── CAnimatedMeshMD2.cpp │ │ │ ├── CAnimatedMeshMD2.h │ │ │ ├── CAnimatedMeshMD3.cpp │ │ │ ├── CAnimatedMeshMD3.h │ │ │ ├── CAnimatedMeshSceneNode.cpp │ │ │ ├── CAnimatedMeshSceneNode.h │ │ │ ├── CAttributeImpl.h │ │ │ ├── CAttributes.cpp │ │ │ ├── CAttributes.h │ │ │ ├── CB3DMeshFileLoader.cpp │ │ │ ├── CB3DMeshFileLoader.h │ │ │ ├── CBSPMeshFileLoader.cpp │ │ │ ├── CBSPMeshFileLoader.h │ │ │ ├── CBillboardSceneNode.cpp │ │ │ ├── CBillboardSceneNode.h │ │ │ ├── CBlit.h │ │ │ ├── CBoneSceneNode.cpp │ │ │ ├── CBoneSceneNode.h │ │ │ ├── CBurningShader_Raster_Reference.cpp │ │ │ ├── CCSMLoader.cpp │ │ │ ├── CCSMLoader.h │ │ │ ├── CCameraSceneNode.cpp │ │ │ ├── CCameraSceneNode.h │ │ │ ├── CCgMaterialRenderer.cpp │ │ │ ├── CCgMaterialRenderer.h │ │ │ ├── CColladaFileLoader.cpp │ │ │ ├── CColladaFileLoader.h │ │ │ ├── CColladaMeshWriter.cpp │ │ │ ├── CColladaMeshWriter.h │ │ │ ├── CColorConverter.cpp │ │ │ ├── CColorConverter.h │ │ │ ├── CCubeSceneNode.cpp │ │ │ ├── CCubeSceneNode.h │ │ │ ├── CD3D8Driver.cpp │ │ │ ├── CD3D8Driver.h │ │ │ ├── CD3D8MaterialRenderer.h │ │ │ ├── CD3D8NormalMapRenderer.cpp │ │ │ ├── CD3D8NormalMapRenderer.h │ │ │ ├── CD3D8ParallaxMapRenderer.cpp │ │ │ ├── CD3D8ParallaxMapRenderer.h │ │ │ ├── CD3D8ShaderMaterialRenderer.cpp │ │ │ ├── CD3D8ShaderMaterialRenderer.h │ │ │ ├── CD3D8Texture.cpp │ │ │ ├── CD3D8Texture.h │ │ │ ├── CD3D9CgMaterialRenderer.cpp │ │ │ ├── CD3D9CgMaterialRenderer.h │ │ │ ├── CD3D9Driver.cpp │ │ │ ├── CD3D9Driver.h │ │ │ ├── CD3D9HLSLMaterialRenderer.cpp │ │ │ ├── CD3D9HLSLMaterialRenderer.h │ │ │ ├── CD3D9MaterialRenderer.h │ │ │ ├── CD3D9NormalMapRenderer.cpp │ │ │ ├── CD3D9NormalMapRenderer.h │ │ │ ├── CD3D9ParallaxMapRenderer.cpp │ │ │ ├── CD3D9ParallaxMapRenderer.h │ │ │ ├── CD3D9ShaderMaterialRenderer.cpp │ │ │ ├── CD3D9ShaderMaterialRenderer.h │ │ │ ├── CD3D9Texture.cpp │ │ │ ├── CD3D9Texture.h │ │ │ ├── CDMFLoader.cpp │ │ │ ├── CDMFLoader.h │ │ │ ├── CDefaultGUIElementFactory.cpp │ │ │ ├── CDefaultGUIElementFactory.h │ │ │ ├── CDefaultSceneNodeAnimatorFactory.cpp │ │ │ ├── CDefaultSceneNodeAnimatorFactory.h │ │ │ ├── CDefaultSceneNodeFactory.cpp │ │ │ ├── CDefaultSceneNodeFactory.h │ │ │ ├── CDepthBuffer.cpp │ │ │ ├── CDepthBuffer.h │ │ │ ├── CDummyTransformationSceneNode.cpp │ │ │ ├── CDummyTransformationSceneNode.h │ │ │ ├── CEmptySceneNode.cpp │ │ │ ├── CEmptySceneNode.h │ │ │ ├── CFPSCounter.cpp │ │ │ ├── CFPSCounter.h │ │ │ ├── CFileList.cpp │ │ │ ├── CFileList.h │ │ │ ├── CFileSystem.cpp │ │ │ ├── CFileSystem.h │ │ │ ├── CGUIButton.cpp │ │ │ ├── CGUIButton.h │ │ │ ├── CGUICheckBox.cpp │ │ │ ├── CGUICheckBox.h │ │ │ ├── CGUIColorSelectDialog.cpp │ │ │ ├── CGUIColorSelectDialog.h │ │ │ ├── CGUIComboBox.cpp │ │ │ ├── CGUIComboBox.h │ │ │ ├── CGUIContextMenu.cpp │ │ │ ├── CGUIContextMenu.h │ │ │ ├── CGUIEditBox.cpp │ │ │ ├── CGUIEditBox.h │ │ │ ├── CGUIEnvironment.cpp │ │ │ ├── CGUIEnvironment.h │ │ │ ├── CGUIFileOpenDialog.cpp │ │ │ ├── CGUIFileOpenDialog.h │ │ │ ├── CGUIFont.cpp │ │ │ ├── CGUIFont.h │ │ │ ├── CGUIImage.cpp │ │ │ ├── CGUIImage.h │ │ │ ├── CGUIImageList.cpp │ │ │ ├── CGUIImageList.h │ │ │ ├── CGUIInOutFader.cpp │ │ │ ├── CGUIInOutFader.h │ │ │ ├── CGUIListBox.cpp │ │ │ ├── CGUIListBox.h │ │ │ ├── CGUIMenu.cpp │ │ │ ├── CGUIMenu.h │ │ │ ├── CGUIMeshViewer.cpp │ │ │ ├── CGUIMeshViewer.h │ │ │ ├── CGUIMessageBox.cpp │ │ │ ├── CGUIMessageBox.h │ │ │ ├── CGUIModalScreen.cpp │ │ │ ├── CGUIModalScreen.h │ │ │ ├── CGUIProfiler.cpp │ │ │ ├── CGUIProfiler.h │ │ │ ├── CGUIScrollBar.cpp │ │ │ ├── CGUIScrollBar.h │ │ │ ├── CGUISkin.cpp │ │ │ ├── CGUISkin.h │ │ │ ├── CGUISpinBox.cpp │ │ │ ├── CGUISpinBox.h │ │ │ ├── CGUISpriteBank.cpp │ │ │ ├── CGUISpriteBank.h │ │ │ ├── CGUIStaticText.cpp │ │ │ ├── CGUIStaticText.h │ │ │ ├── CGUITabControl.cpp │ │ │ ├── CGUITabControl.h │ │ │ ├── CGUITable.cpp │ │ │ ├── CGUITable.h │ │ │ ├── CGUIToolBar.cpp │ │ │ ├── CGUIToolBar.h │ │ │ ├── CGUITreeView.cpp │ │ │ ├── CGUITreeView.h │ │ │ ├── CGUIWindow.cpp │ │ │ ├── CGUIWindow.h │ │ │ ├── CGeometryCreator.cpp │ │ │ ├── CGeometryCreator.h │ │ │ ├── CImage.cpp │ │ │ ├── CImage.h │ │ │ ├── CImageLoaderBMP.cpp │ │ │ ├── CImageLoaderBMP.h │ │ │ ├── CImageLoaderDDS.cpp │ │ │ ├── CImageLoaderDDS.h │ │ │ ├── CImageLoaderJPG.cpp │ │ │ ├── CImageLoaderJPG.h │ │ │ ├── CImageLoaderPCX.cpp │ │ │ ├── CImageLoaderPCX.h │ │ │ ├── CImageLoaderPNG.cpp │ │ │ ├── CImageLoaderPNG.h │ │ │ ├── CImageLoaderPPM.cpp │ │ │ ├── CImageLoaderPPM.h │ │ │ ├── CImageLoaderPSD.cpp │ │ │ ├── CImageLoaderPSD.h │ │ │ ├── CImageLoaderRGB.cpp │ │ │ ├── CImageLoaderRGB.h │ │ │ ├── CImageLoaderTGA.cpp │ │ │ ├── CImageLoaderTGA.h │ │ │ ├── CImageLoaderWAL.cpp │ │ │ ├── CImageLoaderWAL.h │ │ │ ├── CImageWriterBMP.cpp │ │ │ ├── CImageWriterBMP.h │ │ │ ├── CImageWriterJPG.cpp │ │ │ ├── CImageWriterJPG.h │ │ │ ├── CImageWriterPCX.cpp │ │ │ ├── CImageWriterPCX.h │ │ │ ├── CImageWriterPNG.cpp │ │ │ ├── CImageWriterPNG.h │ │ │ ├── CImageWriterPPM.cpp │ │ │ ├── CImageWriterPPM.h │ │ │ ├── CImageWriterPSD.cpp │ │ │ ├── CImageWriterPSD.h │ │ │ ├── CImageWriterTGA.cpp │ │ │ ├── CImageWriterTGA.h │ │ │ ├── CIrrDeviceConsole.cpp │ │ │ ├── CIrrDeviceConsole.h │ │ │ ├── CIrrDeviceFB.cpp │ │ │ ├── CIrrDeviceFB.h │ │ │ ├── CIrrDeviceLinux.cpp │ │ │ ├── CIrrDeviceLinux.h │ │ │ ├── CIrrDeviceSDL.cpp │ │ │ ├── CIrrDeviceSDL.h │ │ │ ├── CIrrDeviceStub.cpp │ │ │ ├── CIrrDeviceStub.h │ │ │ ├── CIrrDeviceWin32.cpp │ │ │ ├── CIrrDeviceWin32.h │ │ │ ├── CIrrDeviceWinCE.cpp │ │ │ ├── CIrrDeviceWinCE.h │ │ │ ├── CIrrMeshFileLoader.cpp │ │ │ ├── CIrrMeshFileLoader.h │ │ │ ├── CIrrMeshWriter.cpp │ │ │ ├── CIrrMeshWriter.h │ │ │ ├── CLMTSMeshFileLoader.cpp │ │ │ ├── CLMTSMeshFileLoader.h │ │ │ ├── CLWOMeshFileLoader.cpp │ │ │ ├── CLWOMeshFileLoader.h │ │ │ ├── CLightSceneNode.cpp │ │ │ ├── CLightSceneNode.h │ │ │ ├── CLimitReadFile.cpp │ │ │ ├── CLimitReadFile.h │ │ │ ├── CLogger.cpp │ │ │ ├── CLogger.h │ │ │ ├── CMD2MeshFileLoader.cpp │ │ │ ├── CMD2MeshFileLoader.h │ │ │ ├── CMD3MeshFileLoader.cpp │ │ │ ├── CMD3MeshFileLoader.h │ │ │ ├── CMS3DMeshFileLoader.cpp │ │ │ ├── CMS3DMeshFileLoader.h │ │ │ ├── CMY3DHelper.h │ │ │ ├── CMY3DMeshFileLoader.cpp │ │ │ ├── CMY3DMeshFileLoader.h │ │ │ ├── CMemoryFile.cpp │ │ │ ├── CMemoryFile.h │ │ │ ├── CMeshCache.cpp │ │ │ ├── CMeshCache.h │ │ │ ├── CMeshManipulator.cpp │ │ │ ├── CMeshManipulator.h │ │ │ ├── CMeshSceneNode.cpp │ │ │ ├── CMeshSceneNode.h │ │ │ ├── CMeshTextureLoader.cpp │ │ │ ├── CMeshTextureLoader.h │ │ │ ├── CMetaTriangleSelector.cpp │ │ │ ├── CMetaTriangleSelector.h │ │ │ ├── CMountPointReader.cpp │ │ │ ├── CMountPointReader.h │ │ │ ├── CNPKReader.cpp │ │ │ ├── CNPKReader.h │ │ │ ├── CNullDriver.cpp │ │ │ ├── CNullDriver.h │ │ │ ├── COBJMeshFileLoader.cpp │ │ │ ├── COBJMeshFileLoader.h │ │ │ ├── COBJMeshWriter.cpp │ │ │ ├── COBJMeshWriter.h │ │ │ ├── COCTLoader.cpp │ │ │ ├── COCTLoader.h │ │ │ ├── COSOperator.cpp │ │ │ ├── COSOperator.h │ │ │ ├── COctreeSceneNode.cpp │ │ │ ├── COctreeSceneNode.h │ │ │ ├── COctreeTriangleSelector.cpp │ │ │ ├── COctreeTriangleSelector.h │ │ │ ├── COgreMeshFileLoader.cpp │ │ │ ├── COgreMeshFileLoader.h │ │ │ ├── COpenGLCgMaterialRenderer.cpp │ │ │ ├── COpenGLCgMaterialRenderer.h │ │ │ ├── COpenGLDriver.cpp │ │ │ ├── COpenGLDriver.h │ │ │ ├── COpenGLExtensionHandler.cpp │ │ │ ├── COpenGLExtensionHandler.h │ │ │ ├── COpenGLMaterialRenderer.h │ │ │ ├── COpenGLNormalMapRenderer.cpp │ │ │ ├── COpenGLNormalMapRenderer.h │ │ │ ├── COpenGLParallaxMapRenderer.cpp │ │ │ ├── COpenGLParallaxMapRenderer.h │ │ │ ├── COpenGLSLMaterialRenderer.cpp │ │ │ ├── COpenGLSLMaterialRenderer.h │ │ │ ├── COpenGLShaderMaterialRenderer.cpp │ │ │ ├── COpenGLShaderMaterialRenderer.h │ │ │ ├── COpenGLTexture.cpp │ │ │ ├── COpenGLTexture.h │ │ │ ├── CPLYMeshFileLoader.cpp │ │ │ ├── CPLYMeshFileLoader.h │ │ │ ├── CPLYMeshWriter.cpp │ │ │ ├── CPLYMeshWriter.h │ │ │ ├── CPakReader.cpp │ │ │ ├── CPakReader.h │ │ │ ├── CParticleAnimatedMeshSceneNodeEmitter.cpp │ │ │ ├── CParticleAnimatedMeshSceneNodeEmitter.h │ │ │ ├── CParticleAttractionAffector.cpp │ │ │ ├── CParticleAttractionAffector.h │ │ │ ├── CParticleBoxEmitter.cpp │ │ │ ├── CParticleBoxEmitter.h │ │ │ ├── CParticleCylinderEmitter.cpp │ │ │ ├── CParticleCylinderEmitter.h │ │ │ ├── CParticleFadeOutAffector.cpp │ │ │ ├── CParticleFadeOutAffector.h │ │ │ ├── CParticleGravityAffector.cpp │ │ │ ├── CParticleGravityAffector.h │ │ │ ├── CParticleMeshEmitter.cpp │ │ │ ├── CParticleMeshEmitter.h │ │ │ ├── CParticlePointEmitter.cpp │ │ │ ├── CParticlePointEmitter.h │ │ │ ├── CParticleRingEmitter.cpp │ │ │ ├── CParticleRingEmitter.h │ │ │ ├── CParticleRotationAffector.cpp │ │ │ ├── CParticleRotationAffector.h │ │ │ ├── CParticleScaleAffector.cpp │ │ │ ├── CParticleScaleAffector.h │ │ │ ├── CParticleSphereEmitter.cpp │ │ │ ├── CParticleSphereEmitter.h │ │ │ ├── CParticleSystemSceneNode.cpp │ │ │ ├── CParticleSystemSceneNode.h │ │ │ ├── CProfiler.cpp │ │ │ ├── CProfiler.h │ │ │ ├── CQ3LevelMesh.cpp │ │ │ ├── CQ3LevelMesh.h │ │ │ ├── CQuake3ShaderSceneNode.cpp │ │ │ ├── CQuake3ShaderSceneNode.h │ │ │ ├── CReadFile.cpp │ │ │ ├── CReadFile.h │ │ │ ├── CSMFMeshFileLoader.cpp │ │ │ ├── CSMFMeshFileLoader.h │ │ │ ├── CSTLMeshFileLoader.cpp │ │ │ ├── CSTLMeshFileLoader.h │ │ │ ├── CSTLMeshWriter.cpp │ │ │ ├── CSTLMeshWriter.h │ │ │ ├── CSceneCollisionManager.cpp │ │ │ ├── CSceneCollisionManager.h │ │ │ ├── CSceneLoaderIrr.cpp │ │ │ ├── CSceneLoaderIrr.h │ │ │ ├── CSceneManager.cpp │ │ │ ├── CSceneManager.h │ │ │ ├── CSceneNodeAnimatorCameraFPS.cpp │ │ │ ├── CSceneNodeAnimatorCameraFPS.h │ │ │ ├── CSceneNodeAnimatorCameraMaya.cpp │ │ │ ├── CSceneNodeAnimatorCameraMaya.h │ │ │ ├── CSceneNodeAnimatorCollisionResponse.cpp │ │ │ ├── CSceneNodeAnimatorCollisionResponse.h │ │ │ ├── CSceneNodeAnimatorDelete.cpp │ │ │ ├── CSceneNodeAnimatorDelete.h │ │ │ ├── CSceneNodeAnimatorFlyCircle.cpp │ │ │ ├── CSceneNodeAnimatorFlyCircle.h │ │ │ ├── CSceneNodeAnimatorFlyStraight.cpp │ │ │ ├── CSceneNodeAnimatorFlyStraight.h │ │ │ ├── CSceneNodeAnimatorFollowSpline.cpp │ │ │ ├── CSceneNodeAnimatorFollowSpline.h │ │ │ ├── CSceneNodeAnimatorRotation.cpp │ │ │ ├── CSceneNodeAnimatorRotation.h │ │ │ ├── CSceneNodeAnimatorTexture.cpp │ │ │ ├── CSceneNodeAnimatorTexture.h │ │ │ ├── CShadowVolumeSceneNode.cpp │ │ │ ├── CShadowVolumeSceneNode.h │ │ │ ├── CSkinnedMesh.cpp │ │ │ ├── CSkinnedMesh.h │ │ │ ├── CSkyBoxSceneNode.cpp │ │ │ ├── CSkyBoxSceneNode.h │ │ │ ├── CSkyDomeSceneNode.cpp │ │ │ ├── CSkyDomeSceneNode.h │ │ │ ├── CSoftware2MaterialRenderer.h │ │ │ ├── CSoftwareDriver.cpp │ │ │ ├── CSoftwareDriver.h │ │ │ ├── CSoftwareDriver2.cpp │ │ │ ├── CSoftwareDriver2.h │ │ │ ├── CSoftwareTexture.cpp │ │ │ ├── CSoftwareTexture.h │ │ │ ├── CSoftwareTexture2.cpp │ │ │ ├── CSoftwareTexture2.h │ │ │ ├── CSphereSceneNode.cpp │ │ │ ├── CSphereSceneNode.h │ │ │ ├── CTRFlat.cpp │ │ │ ├── CTRFlatWire.cpp │ │ │ ├── CTRGouraud.cpp │ │ │ ├── CTRGouraud2.cpp │ │ │ ├── CTRGouraudAlpha2.cpp │ │ │ ├── CTRGouraudAlphaNoZ2.cpp │ │ │ ├── CTRGouraudWire.cpp │ │ │ ├── CTRNormalMap.cpp │ │ │ ├── CTRStencilShadow.cpp │ │ │ ├── CTRTextureBlend.cpp │ │ │ ├── CTRTextureDetailMap2.cpp │ │ │ ├── CTRTextureFlat.cpp │ │ │ ├── CTRTextureFlatWire.cpp │ │ │ ├── CTRTextureGouraud.cpp │ │ │ ├── CTRTextureGouraud.h │ │ │ ├── CTRTextureGouraud2.cpp │ │ │ ├── CTRTextureGouraudAdd.cpp │ │ │ ├── CTRTextureGouraudAdd2.cpp │ │ │ ├── CTRTextureGouraudAddNoZ2.cpp │ │ │ ├── CTRTextureGouraudAlpha.cpp │ │ │ ├── CTRTextureGouraudAlphaNoZ.cpp │ │ │ ├── CTRTextureGouraudNoZ.cpp │ │ │ ├── CTRTextureGouraudNoZ2.cpp │ │ │ ├── CTRTextureGouraudVertexAlpha2.cpp │ │ │ ├── CTRTextureGouraudWire.cpp │ │ │ ├── CTRTextureLightMap2_Add.cpp │ │ │ ├── CTRTextureLightMap2_M1.cpp │ │ │ ├── CTRTextureLightMap2_M2.cpp │ │ │ ├── CTRTextureLightMap2_M4.cpp │ │ │ ├── CTRTextureLightMapGouraud2_M4.cpp │ │ │ ├── CTRTextureWire2.cpp │ │ │ ├── CTarReader.cpp │ │ │ ├── CTarReader.h │ │ │ ├── CTerrainSceneNode.cpp │ │ │ ├── CTerrainSceneNode.h │ │ │ ├── CTerrainTriangleSelector.cpp │ │ │ ├── CTerrainTriangleSelector.h │ │ │ ├── CTextSceneNode.cpp │ │ │ ├── CTextSceneNode.h │ │ │ ├── CTimer.h │ │ │ ├── CTriangleBBSelector.cpp │ │ │ ├── CTriangleBBSelector.h │ │ │ ├── CTriangleSelector.cpp │ │ │ ├── CTriangleSelector.h │ │ │ ├── CVideoModeList.cpp │ │ │ ├── CVideoModeList.h │ │ │ ├── CVolumeLightSceneNode.cpp │ │ │ ├── CVolumeLightSceneNode.h │ │ │ ├── CWADReader.cpp │ │ │ ├── CWADReader.h │ │ │ ├── CWaterSurfaceSceneNode.cpp │ │ │ ├── CWaterSurfaceSceneNode.h │ │ │ ├── CWriteFile.cpp │ │ │ ├── CWriteFile.h │ │ │ ├── CXMLReader.cpp │ │ │ ├── CXMLReader.h │ │ │ ├── CXMLReaderImpl.h │ │ │ ├── CXMLWriter.cpp │ │ │ ├── CXMLWriter.h │ │ │ ├── CXMeshFileLoader.cpp │ │ │ ├── CXMeshFileLoader.h │ │ │ ├── CZBuffer.cpp │ │ │ ├── CZBuffer.h │ │ │ ├── CZipReader.cpp │ │ │ ├── CZipReader.h │ │ │ ├── EProfileIDs.h │ │ │ ├── IAttribute.h │ │ │ ├── IBurningShader.cpp │ │ │ ├── IBurningShader.h │ │ │ ├── IDepthBuffer.h │ │ │ ├── IImagePresenter.h │ │ │ ├── ISceneNodeAnimatorFinishing.h │ │ │ ├── ITriangleRenderer.h │ │ │ ├── IZBuffer.h │ │ │ ├── Irrlicht-gcc.cbp │ │ │ ├── Irrlicht.aps │ │ │ ├── Irrlicht.cpp │ │ │ ├── Irrlicht.rc │ │ │ ├── Irrlicht10.0.sln │ │ │ ├── Irrlicht10.0.vcxproj │ │ │ ├── Irrlicht10.0.vcxproj.filters │ │ │ ├── Irrlicht11.0.sln │ │ │ ├── Irrlicht11.0.vcxproj │ │ │ ├── Irrlicht11.0.vcxproj.filters │ │ │ ├── Irrlicht12.0.vcxproj │ │ │ ├── Irrlicht12.0.vcxproj.filters │ │ │ ├── Irrlicht8.0.sln │ │ │ ├── Irrlicht8.0.vcproj │ │ │ ├── Irrlicht9.0.sln │ │ │ ├── Irrlicht9.0.vcproj │ │ │ ├── Irrlicht_mobile6.sln │ │ │ ├── Irrlicht_mobile6.vcproj │ │ │ ├── Irrlicht_xbox.sln │ │ │ ├── Irrlicht_xbox.vcproj │ │ │ ├── MacOSX │ │ │ │ ├── ._MainMenu.nib │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.mm │ │ │ │ ├── CIrrDeviceMacOSX.h │ │ │ │ ├── CIrrDeviceMacOSX.mm │ │ │ │ ├── DemoApp-Info.plist │ │ │ │ ├── Irrlicht-Info.plist │ │ │ │ ├── MacOSX.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── MacOSX_Prefix.pch │ │ │ │ ├── MainMenu.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── OSXClipboard.h │ │ │ │ ├── OSXClipboard.mm │ │ │ │ └── irrFramework-Info.plist │ │ │ ├── Makefile │ │ │ ├── Octree.h │ │ │ ├── S2DVertex.h │ │ │ ├── S4DVertex.h │ │ │ ├── SConstruct │ │ │ ├── SoftwareDriver2_compile_config.h │ │ │ ├── SoftwareDriver2_helper.h │ │ │ ├── aesGladman │ │ │ │ ├── Readme.txt │ │ │ │ ├── aes.h │ │ │ │ ├── aescrypt.cpp │ │ │ │ ├── aeskey.cpp │ │ │ │ ├── aesopt.h │ │ │ │ ├── aestab.cpp │ │ │ │ ├── fileenc.cpp │ │ │ │ ├── fileenc.h │ │ │ │ ├── hmac.cpp │ │ │ │ ├── hmac.h │ │ │ │ ├── prng.cpp │ │ │ │ ├── prng.h │ │ │ │ ├── pwd2key.cpp │ │ │ │ ├── pwd2key.h │ │ │ │ ├── sha1.cpp │ │ │ │ ├── sha1.h │ │ │ │ ├── sha2.cpp │ │ │ │ └── sha2.h │ │ │ ├── builtInFont.bmp │ │ │ ├── bzip2 │ │ │ │ ├── CHANGES │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile-libbz2_so │ │ │ │ ├── README │ │ │ │ ├── README.COMPILATION.PROBLEMS │ │ │ │ ├── README.XML.STUFF │ │ │ │ ├── blocksort.c │ │ │ │ ├── bz-common.xsl │ │ │ │ ├── bz-fo.xsl │ │ │ │ ├── bz-html.xsl │ │ │ │ ├── bzcompress.c │ │ │ │ ├── bzdiff │ │ │ │ ├── bzdiff.1 │ │ │ │ ├── bzgrep │ │ │ │ ├── bzgrep.1 │ │ │ │ ├── bzip.css │ │ │ │ ├── bzip2.1 │ │ │ │ ├── bzip2.1.preformatted │ │ │ │ ├── bzip2.c │ │ │ │ ├── bzip2.txt │ │ │ │ ├── bzip2recover.c │ │ │ │ ├── bzlib.c │ │ │ │ ├── bzlib.h │ │ │ │ ├── bzlib_private.h │ │ │ │ ├── bzmore │ │ │ │ ├── bzmore.1 │ │ │ │ ├── crctable.c │ │ │ │ ├── decompress.c │ │ │ │ ├── dlltest.c │ │ │ │ ├── dlltest.dsp │ │ │ │ ├── entities.xml │ │ │ │ ├── format.pl │ │ │ │ ├── huffman.c │ │ │ │ ├── libbz2.dsp │ │ │ │ ├── makefile.msc │ │ │ │ ├── mk251.c │ │ │ │ ├── randtable.c │ │ │ │ ├── spewG.c │ │ │ │ ├── unzcrash.c │ │ │ │ ├── words0 │ │ │ │ ├── words1 │ │ │ │ ├── words2 │ │ │ │ ├── words3 │ │ │ │ └── xmlproc.sh │ │ │ ├── dmfsupport.h │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ ├── irrXML.cpp │ │ │ ├── jpeglib │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── ar-lib │ │ │ │ ├── cderror.h │ │ │ │ ├── cdjpeg.c │ │ │ │ ├── cdjpeg.h │ │ │ │ ├── cjpeg.1 │ │ │ │ ├── cjpeg.c │ │ │ │ ├── ckconfig.c │ │ │ │ ├── coderules.txt │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── djpeg.1 │ │ │ │ ├── djpeg.c │ │ │ │ ├── example.c │ │ │ │ ├── filelist.txt │ │ │ │ ├── install-sh │ │ │ │ ├── install.txt │ │ │ │ ├── jaricom.c │ │ │ │ ├── jcapimin.c │ │ │ │ ├── jcapistd.c │ │ │ │ ├── jcarith.c │ │ │ │ ├── jccoefct.c │ │ │ │ ├── jccolor.c │ │ │ │ ├── jcdctmgr.c │ │ │ │ ├── jchuff.c │ │ │ │ ├── jcinit.c │ │ │ │ ├── jcmainct.c │ │ │ │ ├── jcmarker.c │ │ │ │ ├── jcmaster.c │ │ │ │ ├── jcomapi.c │ │ │ │ ├── jconfig.bcc │ │ │ │ ├── jconfig.cfg │ │ │ │ ├── jconfig.dj │ │ │ │ ├── jconfig.h │ │ │ │ ├── jconfig.mac │ │ │ │ ├── jconfig.manx │ │ │ │ ├── jconfig.mc6 │ │ │ │ ├── jconfig.sas │ │ │ │ ├── jconfig.st │ │ │ │ ├── jconfig.txt │ │ │ │ ├── jconfig.vc │ │ │ │ ├── jconfig.vms │ │ │ │ ├── jconfig.wat │ │ │ │ ├── jcparam.c │ │ │ │ ├── jcprepct.c │ │ │ │ ├── jcsample.c │ │ │ │ ├── jctrans.c │ │ │ │ ├── jdapimin.c │ │ │ │ ├── jdapistd.c │ │ │ │ ├── jdarith.c │ │ │ │ ├── jdatadst.c │ │ │ │ ├── jdatasrc.c │ │ │ │ ├── jdcoefct.c │ │ │ │ ├── jdcolor.c │ │ │ │ ├── jdct.h │ │ │ │ ├── jddctmgr.c │ │ │ │ ├── jdhuff.c │ │ │ │ ├── jdinput.c │ │ │ │ ├── jdmainct.c │ │ │ │ ├── jdmarker.c │ │ │ │ ├── jdmaster.c │ │ │ │ ├── jdmerge.c │ │ │ │ ├── jdosaobj.txt │ │ │ │ ├── jdpostct.c │ │ │ │ ├── jdsample.c │ │ │ │ ├── jdtrans.c │ │ │ │ ├── jerror.c │ │ │ │ ├── jerror.h │ │ │ │ ├── jfdctflt.c │ │ │ │ ├── jfdctfst.c │ │ │ │ ├── jfdctint.c │ │ │ │ ├── jidctflt.c │ │ │ │ ├── jidctfst.c │ │ │ │ ├── jidctint.c │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmemansi.c │ │ │ │ ├── jmemdos.c │ │ │ │ ├── jmemdosa.asm │ │ │ │ ├── jmemmac.c │ │ │ │ ├── jmemmgr.c │ │ │ │ ├── jmemname.c │ │ │ │ ├── jmemnobs.c │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpeglib.h │ │ │ │ ├── jpegtran.1 │ │ │ │ ├── jpegtran.c │ │ │ │ ├── jquant1.c │ │ │ │ ├── jquant2.c │ │ │ │ ├── jutils.c │ │ │ │ ├── jversion.h │ │ │ │ ├── libjpeg.map │ │ │ │ ├── libjpeg.txt │ │ │ │ ├── ltmain.sh │ │ │ │ ├── makcjpeg.st │ │ │ │ ├── makdjpeg.st │ │ │ │ ├── makeadsw.vc6 │ │ │ │ ├── makeasln.v10 │ │ │ │ ├── makecdep.vc6 │ │ │ │ ├── makecdsp.vc6 │ │ │ │ ├── makecfil.v10 │ │ │ │ ├── makecmak.vc6 │ │ │ │ ├── makecvcx.v10 │ │ │ │ ├── makeddep.vc6 │ │ │ │ ├── makeddsp.vc6 │ │ │ │ ├── makedfil.v10 │ │ │ │ ├── makedmak.vc6 │ │ │ │ ├── makedvcx.v10 │ │ │ │ ├── makefile.ansi │ │ │ │ ├── makefile.bcc │ │ │ │ ├── makefile.dj │ │ │ │ ├── makefile.manx │ │ │ │ ├── makefile.mc6 │ │ │ │ ├── makefile.mms │ │ │ │ ├── makefile.sas │ │ │ │ ├── makefile.unix │ │ │ │ ├── makefile.vc │ │ │ │ ├── makefile.vms │ │ │ │ ├── makefile.wat │ │ │ │ ├── makejdep.vc6 │ │ │ │ ├── makejdsp.vc6 │ │ │ │ ├── makejdsw.vc6 │ │ │ │ ├── makejfil.v10 │ │ │ │ ├── makejmak.vc6 │ │ │ │ ├── makejsln.v10 │ │ │ │ ├── makejvcx.v10 │ │ │ │ ├── makeproj.mac │ │ │ │ ├── makerdep.vc6 │ │ │ │ ├── makerdsp.vc6 │ │ │ │ ├── makerfil.v10 │ │ │ │ ├── makermak.vc6 │ │ │ │ ├── makervcx.v10 │ │ │ │ ├── maketdep.vc6 │ │ │ │ ├── maketdsp.vc6 │ │ │ │ ├── maketfil.v10 │ │ │ │ ├── maketmak.vc6 │ │ │ │ ├── maketvcx.v10 │ │ │ │ ├── makewdep.vc6 │ │ │ │ ├── makewdsp.vc6 │ │ │ │ ├── makewfil.v10 │ │ │ │ ├── makewmak.vc6 │ │ │ │ ├── makewvcx.v10 │ │ │ │ ├── makljpeg.st │ │ │ │ ├── maktjpeg.st │ │ │ │ ├── makvms.opt │ │ │ │ ├── missing │ │ │ │ ├── rdbmp.c │ │ │ │ ├── rdcolmap.c │ │ │ │ ├── rdgif.c │ │ │ │ ├── rdjpgcom.1 │ │ │ │ ├── rdjpgcom.c │ │ │ │ ├── rdppm.c │ │ │ │ ├── rdrle.c │ │ │ │ ├── rdswitch.c │ │ │ │ ├── rdtarga.c │ │ │ │ ├── readme.dos │ │ │ │ ├── structure.txt │ │ │ │ ├── testimg.bmp │ │ │ │ ├── testimg.jpg │ │ │ │ ├── testimg.ppm │ │ │ │ ├── testimgp.jpg │ │ │ │ ├── testorig.jpg │ │ │ │ ├── testprog.jpg │ │ │ │ ├── transupp.c │ │ │ │ ├── transupp.h │ │ │ │ ├── usage.txt │ │ │ │ ├── wizard.txt │ │ │ │ ├── wrbmp.c │ │ │ │ ├── wrgif.c │ │ │ │ ├── wrjpgcom.1 │ │ │ │ ├── wrjpgcom.c │ │ │ │ ├── wrppm.c │ │ │ │ ├── wrrle.c │ │ │ │ └── wrtarga.c │ │ │ ├── leakHunter.cpp │ │ │ ├── libpng │ │ │ │ ├── ANNOUNCE │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── configure │ │ │ │ ├── contrib │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm-neon │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── android-ndk.c │ │ │ │ │ │ ├── linux-auxv.c │ │ │ │ │ │ └── linux.c │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── iccfrompng.c │ │ │ │ │ │ ├── pngpixel.c │ │ │ │ │ │ └── pngtopng.c │ │ │ │ │ ├── gregbook │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile.mingw32 │ │ │ │ │ │ ├── Makefile.sgi │ │ │ │ │ │ ├── Makefile.unx │ │ │ │ │ │ ├── Makefile.w32 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── png2pnm.bat │ │ │ │ │ │ ├── png2pnm.c │ │ │ │ │ │ ├── png2pnm.sh │ │ │ │ │ │ ├── pngminus.bat │ │ │ │ │ │ ├── pngminus.sh │ │ │ │ │ │ ├── pnm2png.bat │ │ │ │ │ │ ├── pnm2png.c │ │ │ │ │ │ └── pnm2png.sh │ │ │ │ │ ├── pngsuite │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── fixitxt.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 │ │ │ │ ├── example.c │ │ │ │ ├── libpng-config.in │ │ │ │ ├── libpng-manual.txt │ │ │ │ ├── libpng.3 │ │ │ │ ├── libpng.pc.in │ │ │ │ ├── libpngpf.3 │ │ │ │ ├── png.5 │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngbar.jpg │ │ │ │ ├── pngbar.png │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.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 │ │ │ │ ├── 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 │ │ │ │ │ ├── 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.elf │ │ │ │ │ ├── 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 │ │ │ │ │ ├── options.awk │ │ │ │ │ ├── pnglibconf.dfa │ │ │ │ │ ├── pnglibconf.h.prebuilt │ │ │ │ │ ├── pnglibconf.mak │ │ │ │ │ ├── pngwin.rc │ │ │ │ │ ├── prefix.dfn │ │ │ │ │ ├── smakefile.ppc │ │ │ │ │ ├── sym.dfn │ │ │ │ │ ├── symbols.dfn │ │ │ │ │ └── vers.dfn │ │ │ ├── lzma │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ └── Types.h │ │ │ ├── os.cpp │ │ │ ├── os.h │ │ │ ├── resource.h │ │ │ ├── source.txt │ │ │ ├── utf8.cpp │ │ │ ├── wglext.h │ │ │ └── zlib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChangeLog │ │ │ │ ├── FAQ │ │ │ │ ├── INDEX │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── configure │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── treebuild.xml │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.cmakein │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.3 │ │ │ │ ├── zlib.3.pdf │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib.map │ │ │ │ ├── zlib.pc.cmakein │ │ │ │ ├── zlib.pc.in │ │ │ │ ├── zlib2ansi │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ └── source.txt │ └── tests │ │ ├── 2dmaterial.cpp │ │ ├── Makefile │ │ ├── anti-aliasing.cpp │ │ ├── archiveReader.cpp │ │ ├── b3dAnimation.cpp │ │ ├── billboards.cpp │ │ ├── burningsVideo.cpp │ │ ├── collisionResponseAnimator.cpp │ │ ├── color.cpp │ │ ├── coreutil.cpp │ │ ├── createImage.cpp │ │ ├── cursorSetVisible.cpp │ │ ├── disambiguateTextures.cpp │ │ ├── draw2DImage.cpp │ │ ├── drawPixel.cpp │ │ ├── drawRectOutline.cpp │ │ ├── drawVertexPrimitive.cpp │ │ ├── empty │ │ └── empty │ │ │ ├── Direct3D 9.0.png │ │ │ ├── Irrlicht Software Device 1.0.png │ │ │ ├── OpenGL 2.1.2.png │ │ │ └── burnings video 0.39b.png │ │ ├── enumerateImageManipulators.cpp │ │ ├── exports.cpp │ │ ├── fast_atof.cpp │ │ ├── filesystem.cpp │ │ ├── flyCircleAnimator.cpp │ │ ├── guiDisabledMenu.cpp │ │ ├── ioScene.cpp │ │ ├── irrArray.cpp │ │ ├── irrCoreEquals.cpp │ │ ├── irrList.cpp │ │ ├── irrMap.cpp │ │ ├── irrString.cpp │ │ ├── lightMaps.cpp │ │ ├── lights.cpp │ │ ├── loadTextures.cpp │ │ ├── main.cpp │ │ ├── makeColorKeyTexture.cpp │ │ ├── material.cpp │ │ ├── matrixOps.cpp │ │ ├── md2Animation.cpp │ │ ├── meshLoaders.cpp │ │ ├── meshTransform.cpp │ │ ├── mrt.cpp │ │ ├── orthoCam.cpp │ │ ├── planeMatrix.cpp │ │ ├── projectionMatrix.cpp │ │ ├── removeCustomAnimator.cpp │ │ ├── renderTargetTexture.cpp │ │ ├── sceneCollisionManager.cpp │ │ ├── sceneNodeAnimator.cpp │ │ ├── screenshot.cpp │ │ ├── serializeAttributes.cpp │ │ ├── skinnedMesh.cpp │ │ ├── softwareDevice.cpp │ │ ├── stencilshadow.cpp │ │ ├── terrainSceneNode.cpp │ │ ├── testDimension2d.cpp │ │ ├── testGeometryCreator.cpp │ │ ├── testLine2d.cpp │ │ ├── testQuaternion.cpp │ │ ├── testS3DVertex.cpp │ │ ├── testUtils.cpp │ │ ├── testUtils.h │ │ ├── testVector2d.cpp │ │ ├── testVector3d.cpp │ │ ├── testXML.cpp │ │ ├── testaabbox.cpp │ │ ├── tests-last-passed-at.txt │ │ ├── tests-readme.txt │ │ ├── tests.cbp │ │ ├── tests.workspace │ │ ├── tests_vc10.sln │ │ ├── tests_vc10.vcxproj │ │ ├── tests_vc11.sln │ │ ├── tests_vc11.vcxproj │ │ ├── tests_vc8.sln │ │ ├── tests_vc8.vcproj │ │ ├── tests_vc9.sln │ │ ├── tests_vc9.vcproj │ │ ├── textureFeatures.cpp │ │ ├── textureRenderStates.cpp │ │ ├── timer.cpp │ │ ├── transparentMaterials.cpp │ │ ├── triangle3d.cpp │ │ ├── triangleSelector.cpp │ │ ├── userClipPlane.cpp │ │ ├── vectorPositionDimension2d.cpp │ │ ├── videoDriver.cpp │ │ ├── viewPort.cpp │ │ └── writeImageToFile.cpp ├── irrlicht_ogl-es │ ├── bin │ │ ├── Win32-VisualStudio │ │ │ └── irrlicht.ico │ │ ├── Win32-gcc │ │ │ └── irrlicht.ico │ │ └── Win64-VisualStudio │ │ │ ├── irrlicht.ico │ │ │ └── readme.txt │ ├── changes.txt │ ├── doc │ │ ├── aesGladman.txt │ │ ├── bzip2-license.txt │ │ ├── irrlicht-license.txt │ │ ├── jpglib-license.txt │ │ ├── libpng-license.txt │ │ ├── readme.txt │ │ ├── release_checklist.txt │ │ └── upgrade-guide.txt │ ├── examples │ │ ├── 01.HelloWorld │ │ │ ├── HelloWorld.cbp │ │ │ ├── HelloWorld.dev │ │ │ ├── HelloWorld.vcproj │ │ │ ├── HelloWorld_vc10.vcxproj │ │ │ ├── HelloWorld_vc11.vcxproj │ │ │ ├── HelloWorld_vc8.vcproj │ │ │ ├── HelloWorld_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 02.Quake3Map │ │ │ ├── Makefile │ │ │ ├── Quake3Map.cbp │ │ │ ├── Quake3Map.dev │ │ │ ├── Quake3Map.vcproj │ │ │ ├── Quake3Map_vc10.vcxproj │ │ │ ├── Quake3Map_vc11.vcxproj │ │ │ ├── Quake3Map_vc8.vcproj │ │ │ ├── Quake3Map_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 03.CustomSceneNode │ │ │ ├── CustomSceneNode.cbp │ │ │ ├── CustomSceneNode.dev │ │ │ ├── CustomSceneNode.vcproj │ │ │ ├── CustomSceneNode_vc10.vcxproj │ │ │ ├── CustomSceneNode_vc11.vcxproj │ │ │ ├── CustomSceneNode_vc8.vcproj │ │ │ ├── CustomSceneNode_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 04.Movement │ │ │ ├── Makefile │ │ │ ├── Movement.cbp │ │ │ ├── Movement.dev │ │ │ ├── Movement.vcproj │ │ │ ├── Movement_vc10.vcxproj │ │ │ ├── Movement_vc11.vcxproj │ │ │ ├── Movement_vc8.vcproj │ │ │ ├── Movement_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 05.UserInterface │ │ │ ├── Makefile │ │ │ ├── UserInterface.cbp │ │ │ ├── UserInterface.dev │ │ │ ├── UserInterface.vcproj │ │ │ ├── UserInterface_vc10.vcxproj │ │ │ ├── UserInterface_vc11.vcxproj │ │ │ ├── UserInterface_vc8.vcproj │ │ │ ├── UserInterface_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 06.2DGraphics │ │ │ ├── 2DGraphics.cbp │ │ │ ├── 2DGraphics.dev │ │ │ ├── 2DGraphics.vcproj │ │ │ ├── 2DGraphics_vc10.vcxproj │ │ │ ├── 2DGraphics_vc11.vcxproj │ │ │ ├── 2DGraphics_vc8.vcproj │ │ │ ├── 2DGraphics_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 07.Collision │ │ │ ├── Collision.cbp │ │ │ ├── Collision.dev │ │ │ ├── Collision.vcproj │ │ │ ├── Collision_vc10.vcxproj │ │ │ ├── Collision_vc11.vcxproj │ │ │ ├── Collision_vc8.vcproj │ │ │ ├── Collision_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 08.SpecialFX │ │ │ ├── Makefile │ │ │ ├── SpecialFX.cbp │ │ │ ├── SpecialFX.dev │ │ │ ├── SpecialFX.vcproj │ │ │ ├── SpecialFX_vc10.vcxproj │ │ │ ├── SpecialFX_vc11.vcxproj │ │ │ ├── SpecialFX_vc8.vcproj │ │ │ ├── SpecialFX_vc9.vcproj │ │ │ ├── ant.properties │ │ │ ├── jni │ │ │ │ └── Application.mk │ │ │ ├── main.cpp │ │ │ ├── project.properties │ │ │ └── tutorial.html │ │ ├── 09.Meshviewer │ │ │ ├── 9.Meshviewer.rc │ │ │ ├── Makefile │ │ │ ├── MeshViewer.dev │ │ │ ├── Meshviewer.cbp │ │ │ ├── Meshviewer.vcproj │ │ │ ├── Meshviewer_vc10.vcxproj │ │ │ ├── Meshviewer_vc11.vcxproj │ │ │ ├── Meshviewer_vc8.vcproj │ │ │ ├── Meshviewer_vc9.vcproj │ │ │ ├── icon.ico │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ └── tutorial.html │ │ ├── 10.Shaders │ │ │ ├── Makefile │ │ │ ├── Shaders.cbp │ │ │ ├── Shaders.dev │ │ │ ├── Shaders.vcproj │ │ │ ├── Shaders_vc10.vcxproj │ │ │ ├── Shaders_vc11.vcxproj │ │ │ ├── Shaders_vc8.vcproj │ │ │ ├── Shaders_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 11.PerPixelLighting │ │ │ ├── Makefile │ │ │ ├── PerPixelLighting.cbp │ │ │ ├── PerPixelLighting.dev │ │ │ ├── PerPixelLighting.vcproj │ │ │ ├── PerPixelLighting_vc10.vcxproj │ │ │ ├── PerPixelLighting_vc11.vcxproj │ │ │ ├── PerPixelLighting_vc8.vcproj │ │ │ ├── PerPixelLighting_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 12.TerrainRendering │ │ │ ├── Makefile │ │ │ ├── TerrainRendering.cbp │ │ │ ├── TerrainRendering.dev │ │ │ ├── TerrainRendering.vcproj │ │ │ ├── TerrainRendering_vc10.vcxproj │ │ │ ├── TerrainRendering_vc11.vcxproj │ │ │ ├── TerrainRendering_vc8.vcproj │ │ │ ├── TerrainRendering_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 13.RenderToTexture │ │ │ ├── Makefile │ │ │ ├── RenderToTexture.cbp │ │ │ ├── RenderToTexture.dev │ │ │ ├── RenderToTexture.vcproj │ │ │ ├── RenderToTexture_vc10.vcxproj │ │ │ ├── RenderToTexture_vc11.vcxproj │ │ │ ├── RenderToTexture_vc8.vcproj │ │ │ ├── RenderToTexture_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 14.Win32Window │ │ │ ├── Makefile │ │ │ ├── Win32Window.cbp │ │ │ ├── Win32Window.dev │ │ │ ├── Win32Window.vcproj │ │ │ ├── Win32Window_vc10.vcxproj │ │ │ ├── Win32Window_vc11.vcxproj │ │ │ ├── Win32Window_vc8.vcproj │ │ │ ├── Win32Window_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 15.LoadIrrFile │ │ │ ├── LoadIrrFile.cbp │ │ │ ├── LoadIrrFile.dev │ │ │ ├── LoadIrrFile.vcproj │ │ │ ├── LoadIrrFile_vc10.vcxproj │ │ │ ├── LoadIrrFile_vc11.vcxproj │ │ │ ├── LoadIrrFile_vc8.vcproj │ │ │ ├── LoadIrrFile_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── tutorial.html │ │ ├── 16.Quake3MapShader │ │ │ ├── Makefile │ │ │ ├── Quake3MapShader.cbp │ │ │ ├── Quake3MapShader.dev │ │ │ ├── Quake3MapShader.vcproj │ │ │ ├── Quake3MapShader_vc10.vcxproj │ │ │ ├── Quake3MapShader_vc11.vcxproj │ │ │ ├── Quake3MapShader_vc8.vcproj │ │ │ ├── Quake3MapShader_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 17.HelloWorld_Mobile │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_v8.vcproj │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_v9.vcproj │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_vc10.vcxproj │ │ │ ├── 17. HelloWorld for Windows Mobile on PC_vc11.vcxproj │ │ │ ├── HelloWorld_mobile.sln │ │ │ ├── HelloWorld_mobile.vcproj │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ ├── 18.SplitScreen │ │ │ ├── Makefile │ │ │ ├── SplitScreen.cbp │ │ │ ├── SplitScreen.dev │ │ │ ├── SplitScreen.vcproj │ │ │ ├── SplitScreen_vc10.vcxproj │ │ │ ├── SplitScreen_vc11.vcxproj │ │ │ ├── SplitScreen_vc8.vcproj │ │ │ ├── SplitScreen_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 19.MouseAndJoystick │ │ │ ├── Makefile │ │ │ ├── MouseAndJoystick.cbp │ │ │ ├── MouseAndJoystick.dev │ │ │ ├── MouseAndJoystick.vcproj │ │ │ ├── MouseAndJoystick_vc10.vcxproj │ │ │ ├── MouseAndJoystick_vc11.vcxproj │ │ │ ├── MouseAndJoystick_vc8.vcproj │ │ │ ├── MouseAndJoystick_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 20.ManagedLights │ │ │ ├── Makefile │ │ │ ├── ManagedLights.cbp │ │ │ ├── ManagedLights.dev │ │ │ ├── ManagedLights.vcproj │ │ │ ├── ManagedLights_vc10.vcxproj │ │ │ ├── ManagedLights_vc11.vcxproj │ │ │ ├── ManagedLights_vc8.vcproj │ │ │ ├── ManagedLights_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 21.Quake3Explorer │ │ │ ├── Makefile │ │ │ ├── Quake3Explorer.cbp │ │ │ ├── Quake3Explorer.dev │ │ │ ├── Quake3Explorer.vcproj │ │ │ ├── Quake3Explorer_vc10.vcxproj │ │ │ ├── Quake3Explorer_vc11.vcxproj │ │ │ ├── Quake3Explorer_vc8.vcproj │ │ │ ├── Quake3Explorer_vc9.vcproj │ │ │ ├── main.cpp │ │ │ ├── q3factory.cpp │ │ │ ├── q3factory.h │ │ │ ├── sound.cpp │ │ │ └── sound.h │ │ ├── 22.MaterialViewer │ │ │ ├── Makefile │ │ │ ├── MaterialViewer.cbp │ │ │ ├── MaterialViewer.dev │ │ │ ├── MaterialViewer.vcproj │ │ │ ├── MaterialViewer_vc10.vcxproj │ │ │ ├── MaterialViewer_vc11.vcxproj │ │ │ ├── MaterialViewer_vc8.vcproj │ │ │ ├── MaterialViewer_vc9.vcproj │ │ │ ├── main.cpp │ │ │ └── main.h │ │ ├── 23.SMeshHandling │ │ │ ├── Makefile │ │ │ ├── SMeshHandling.cbp │ │ │ ├── SMeshHandling.dev │ │ │ ├── SMeshHandling.vcproj │ │ │ ├── SMeshHandling_vc10.vcxproj │ │ │ ├── SMeshHandling_vc11.vcxproj │ │ │ ├── SMeshHandling_vc8.vcproj │ │ │ ├── SMeshHandling_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 24.CursorControl │ │ │ ├── CursorControl.cbp │ │ │ ├── CursorControl.vcproj │ │ │ ├── CursorControl_vc10.vcxproj │ │ │ ├── CursorControl_vc11.vcxproj │ │ │ ├── CursorControl_vc8.vcproj │ │ │ ├── CursorControl_vc9.vcproj │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ ├── 25.XmlHandling │ │ │ ├── Makefile │ │ │ ├── XmlHandling.cbp │ │ │ ├── XmlHandling.vcproj │ │ │ ├── XmlHandling_vc10.vcxproj │ │ │ ├── XmlHandling_vc11.vcxproj │ │ │ ├── XmlHandling_vc8.vcproj │ │ │ ├── XmlHandling_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 26.OcclusionQuery │ │ │ ├── Makefile │ │ │ ├── OcclusionQuery.cbp │ │ │ ├── OcclusionQuery.dev │ │ │ ├── OcclusionQuery.vcproj │ │ │ ├── OcclusionQuery_vc10.vcxproj │ │ │ ├── OcclusionQuery_vc11.vcxproj │ │ │ ├── OcclusionQuery_vc8.vcproj │ │ │ ├── OcclusionQuery_vc9.vcproj │ │ │ └── main.cpp │ │ ├── 27.HelloWorld_Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── android_tools.cpp │ │ │ ├── android_tools.h │ │ │ ├── build.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── main.cpp │ │ │ ├── project.properties │ │ │ ├── readme.txt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── irr_icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ └── irr_icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── irr_icon.png │ │ │ │ └── drawable-xhdpi │ │ │ │ └── irr_icon.png │ │ ├── 28.HelloWorld_iPhone │ │ │ └── readme.txt │ │ ├── 29.HardwareSkinning │ │ │ └── where_is_it.txt │ │ ├── 30.Profiling │ │ │ ├── Makefile │ │ │ ├── Profiling.cbp │ │ │ ├── Profiling.vcproj │ │ │ ├── Profiling_vc10.vcxproj │ │ │ ├── Profiling_vc11.vcxproj │ │ │ ├── Profiling_vc8.vcproj │ │ │ ├── Profiling_vc9.vcproj │ │ │ └── main.cpp │ │ ├── BuildAllExamples.MacOSX │ │ │ └── DemoApp-Info.plist │ │ ├── BuildAllExamples.workspace │ │ ├── BuildAllExamples_v8.sln │ │ ├── BuildAllExamples_v9.sln │ │ ├── BuildAllExamples_vc10.sln │ │ ├── BuildAllExamples_vc11.sln │ │ ├── Demo │ │ │ ├── CDemo.cpp │ │ │ ├── CDemo.h │ │ │ ├── CMainMenu.cpp │ │ │ ├── CMainMenu.h │ │ │ ├── Demo.vcproj │ │ │ ├── Demo_vc10.vcxproj │ │ │ ├── Demo_vc11.vcxproj │ │ │ ├── Demo_vc8.vcproj │ │ │ ├── Demo_vc9.vcproj │ │ │ ├── Makefile │ │ │ ├── demo.cbp │ │ │ ├── demo.dev │ │ │ ├── icon.ico │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ └── resscript.rc │ │ ├── Makefile │ │ ├── buildAllExamples.sh │ │ └── whereAreTheBinaries.txt │ ├── include │ │ ├── CDynamicMeshBuffer.h │ │ ├── CIndexBuffer.h │ │ ├── CMeshBuffer.h │ │ ├── CVertexBuffer.h │ │ ├── EAttributes.h │ │ ├── ECullingTypes.h │ │ ├── EDebugSceneTypes.h │ │ ├── EDeviceTypes.h │ │ ├── EDriverFeatures.h │ │ ├── EDriverTypes.h │ │ ├── EFocusFlags.h │ │ ├── EGUIAlignment.h │ │ ├── EGUIElementTypes.h │ │ ├── EHardwareBufferFlags.h │ │ ├── EMaterialFlags.h │ │ ├── EMaterialTypes.h │ │ ├── EMeshWriterEnums.h │ │ ├── EMessageBoxFlags.h │ │ ├── EPrimitiveTypes.h │ │ ├── ESceneNodeAnimatorTypes.h │ │ ├── ESceneNodeTypes.h │ │ ├── EShaderTypes.h │ │ ├── ETerrainElements.h │ │ ├── EVertexAttributes.h │ │ ├── IAnimatedMesh.h │ │ ├── IAnimatedMeshMD2.h │ │ ├── IAnimatedMeshMD3.h │ │ ├── IAnimatedMeshSceneNode.h │ │ ├── IAttributeExchangingObject.h │ │ ├── IAttributes.h │ │ ├── IBillboardSceneNode.h │ │ ├── IBillboardTextSceneNode.h │ │ ├── IBoneSceneNode.h │ │ ├── ICameraSceneNode.h │ │ ├── IColladaMeshWriter.h │ │ ├── IContextManager.h │ │ ├── ICursorControl.h │ │ ├── IDummyTransformationSceneNode.h │ │ ├── IDynamicMeshBuffer.h │ │ ├── IEventReceiver.h │ │ ├── IFileArchive.h │ │ ├── IFileList.h │ │ ├── IFileSystem.h │ │ ├── IGPUProgrammingServices.h │ │ ├── IGUIButton.h │ │ ├── IGUICheckBox.h │ │ ├── IGUIColorSelectDialog.h │ │ ├── IGUIComboBox.h │ │ ├── IGUIContextMenu.h │ │ ├── IGUIEditBox.h │ │ ├── IGUIElement.h │ │ ├── IGUIElementFactory.h │ │ ├── IGUIEnvironment.h │ │ ├── IGUIFileOpenDialog.h │ │ ├── IGUIFont.h │ │ ├── IGUIFontBitmap.h │ │ ├── IGUIImage.h │ │ ├── IGUIImageList.h │ │ ├── IGUIInOutFader.h │ │ ├── IGUIListBox.h │ │ ├── IGUIMeshViewer.h │ │ ├── IGUIProfiler.h │ │ ├── IGUIScrollBar.h │ │ ├── IGUISkin.h │ │ ├── IGUISpinBox.h │ │ ├── IGUISpriteBank.h │ │ ├── IGUIStaticText.h │ │ ├── IGUITabControl.h │ │ ├── IGUITable.h │ │ ├── IGUIToolbar.h │ │ ├── IGUITreeView.h │ │ ├── IGUIWindow.h │ │ ├── IGeometryCreator.h │ │ ├── IImage.h │ │ ├── IImageLoader.h │ │ ├── IImageWriter.h │ │ ├── IIndexBuffer.h │ │ ├── ILightManager.h │ │ ├── ILightSceneNode.h │ │ ├── ILogger.h │ │ ├── IMaterialRenderer.h │ │ ├── IMaterialRendererServices.h │ │ ├── IMesh.h │ │ ├── IMeshBuffer.h │ │ ├── IMeshCache.h │ │ ├── IMeshLoader.h │ │ ├── IMeshManipulator.h │ │ ├── IMeshSceneNode.h │ │ ├── IMeshTextureLoader.h │ │ ├── IMeshWriter.h │ │ ├── IMetaTriangleSelector.h │ │ ├── IOSOperator.h │ │ ├── IParticleAffector.h │ │ ├── IParticleAnimatedMeshSceneNodeEmitter.h │ │ ├── IParticleAttractionAffector.h │ │ ├── IParticleBoxEmitter.h │ │ ├── IParticleCylinderEmitter.h │ │ ├── IParticleEmitter.h │ │ ├── IParticleFadeOutAffector.h │ │ ├── IParticleGravityAffector.h │ │ ├── IParticleMeshEmitter.h │ │ ├── IParticleRingEmitter.h │ │ ├── IParticleRotationAffector.h │ │ ├── IParticleSphereEmitter.h │ │ ├── IParticleSystemSceneNode.h │ │ ├── IProfiler.h │ │ ├── IQ3LevelMesh.h │ │ ├── IQ3Shader.h │ │ ├── IRandomizer.h │ │ ├── IReadFile.h │ │ ├── IReferenceCounted.h │ │ ├── IRenderTarget.h │ │ ├── ISceneCollisionManager.h │ │ ├── ISceneLoader.h │ │ ├── ISceneManager.h │ │ ├── ISceneNode.h │ │ ├── ISceneNodeAnimator.h │ │ ├── ISceneNodeAnimatorCameraFPS.h │ │ ├── ISceneNodeAnimatorCameraMaya.h │ │ ├── ISceneNodeAnimatorCollisionResponse.h │ │ ├── ISceneNodeAnimatorFactory.h │ │ ├── ISceneNodeFactory.h │ │ ├── ISceneUserDataSerializer.h │ │ ├── IShaderConstantSetCallBack.h │ │ ├── IShadowVolumeSceneNode.h │ │ ├── ISkinnedMesh.h │ │ ├── ITerrainSceneNode.h │ │ ├── ITextSceneNode.h │ │ ├── ITexture.h │ │ ├── ITimer.h │ │ ├── ITriangleSelector.h │ │ ├── IVertexBuffer.h │ │ ├── IVideoDriver.h │ │ ├── IVideoModeList.h │ │ ├── IVolumeLightSceneNode.h │ │ ├── IWriteFile.h │ │ ├── IXMLReader.h │ │ ├── IXMLWriter.h │ │ ├── IrrCompileConfig.h │ │ ├── IrrlichtDevice.h │ │ ├── Keycodes.h │ │ ├── S3DVertex.h │ │ ├── SAnimatedMesh.h │ │ ├── SColor.h │ │ ├── SExposedVideoData.h │ │ ├── SIrrCreationParameters.h │ │ ├── SKeyMap.h │ │ ├── SLight.h │ │ ├── SMaterial.h │ │ ├── SMaterialLayer.h │ │ ├── SMesh.h │ │ ├── SMeshBuffer.h │ │ ├── SMeshBufferLightMap.h │ │ ├── SMeshBufferTangents.h │ │ ├── SParticle.h │ │ ├── SSharedMeshBuffer.h │ │ ├── SSkinMeshBuffer.h │ │ ├── SVertexIndex.h │ │ ├── SVertexManipulator.h │ │ ├── SViewFrustum.h │ │ ├── SceneParameters.h │ │ ├── aabbox3d.h │ │ ├── coreutil.h │ │ ├── dimension2d.h │ │ ├── driverChoice.h │ │ ├── exampleHelper.h │ │ ├── fast_atof.h │ │ ├── heapsort.h │ │ ├── irrAllocator.h │ │ ├── irrArray.h │ │ ├── irrList.h │ │ ├── irrMap.h │ │ ├── irrMath.h │ │ ├── irrString.h │ │ ├── irrTypes.h │ │ ├── irrXML.h │ │ ├── irrlicht.h │ │ ├── irrpack.h │ │ ├── irrunpack.h │ │ ├── leakHunter.h │ │ ├── line2d.h │ │ ├── line3d.h │ │ ├── matrix4.h │ │ ├── path.h │ │ ├── plane3d.h │ │ ├── position2d.h │ │ ├── quaternion.h │ │ ├── rect.h │ │ ├── triangle3d.h │ │ ├── vector2d.h │ │ └── vector3d.h │ ├── lib │ │ ├── Android │ │ │ └── readme.txt │ │ └── Win64-visualStudio │ │ │ └── readme.txt │ ├── ogles-readme.txt │ ├── readme.txt │ ├── scripts │ │ ├── doc │ │ │ ├── irrlicht │ │ │ │ ├── doxygen-pdf.cfg │ │ │ │ ├── doxygen.cfg │ │ │ │ ├── footer.html │ │ │ │ ├── irrlicht.png │ │ │ │ ├── irrlichtlogo.png │ │ │ │ ├── logobig.png │ │ │ │ ├── makedocumentation.bat │ │ │ │ ├── makedocumentation.sh │ │ │ │ ├── maketut.sed │ │ │ │ ├── maketutorial.bat │ │ │ │ ├── maketutorial.sh │ │ │ │ ├── tut_end.html │ │ │ │ ├── tut_head.html │ │ │ │ └── tutorials.sed │ │ │ └── sed.txt │ │ ├── libIrrlicht1.spec │ │ └── packages │ │ │ └── OSX │ │ │ ├── Irrlicht.pmdoc │ │ │ ├── 01irrlicht-contents.xml │ │ │ ├── 01irrlicht.xml │ │ │ ├── 02html-contents.xml │ │ │ ├── 02html.xml │ │ │ ├── 03media-contents.xml │ │ │ ├── 03media.xml │ │ │ ├── 04examples-contents.xml │ │ │ ├── 04examples.xml │ │ │ ├── 05tools-contents.xml │ │ │ ├── 05tools.xml │ │ │ ├── 06source-contents.xml │ │ │ ├── 06source.xml │ │ │ ├── 07changes-contents.xml │ │ │ ├── 07changes.xml │ │ │ ├── 08readme-contents.xml │ │ │ ├── 08readme.xml │ │ │ └── index.xml │ │ │ ├── moveAll.sh │ │ │ └── readme.txt │ ├── source │ │ ├── Irrlicht │ │ │ ├── Android │ │ │ │ ├── CAndroidAssetFileArchive.cpp │ │ │ │ ├── CAndroidAssetFileArchive.h │ │ │ │ ├── CAndroidAssetReader.cpp │ │ │ │ ├── CAndroidAssetReader.h │ │ │ │ ├── CIrrDeviceAndroid.cpp │ │ │ │ ├── CIrrDeviceAndroid.h │ │ │ │ ├── CKeyEventWrapper.cpp │ │ │ │ ├── CKeyEventWrapper.h │ │ │ │ └── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ ├── BuiltInFont.h │ │ │ ├── C3DSMeshFileLoader.cpp │ │ │ ├── C3DSMeshFileLoader.h │ │ │ ├── CAnimatedMeshHalfLife.cpp │ │ │ ├── CAnimatedMeshHalfLife.h │ │ │ ├── CAnimatedMeshMD2.cpp │ │ │ ├── CAnimatedMeshMD2.h │ │ │ ├── CAnimatedMeshMD3.cpp │ │ │ ├── CAnimatedMeshMD3.h │ │ │ ├── CAnimatedMeshSceneNode.cpp │ │ │ ├── CAnimatedMeshSceneNode.h │ │ │ ├── CAttributeImpl.h │ │ │ ├── CAttributes.cpp │ │ │ ├── CAttributes.h │ │ │ ├── CB3DMeshFileLoader.cpp │ │ │ ├── CB3DMeshFileLoader.h │ │ │ ├── CB3DMeshWriter.cpp │ │ │ ├── CB3DMeshWriter.h │ │ │ ├── CBSPMeshFileLoader.cpp │ │ │ ├── CBSPMeshFileLoader.h │ │ │ ├── CBillboardSceneNode.cpp │ │ │ ├── CBillboardSceneNode.h │ │ │ ├── CBlit.h │ │ │ ├── CBoneSceneNode.cpp │ │ │ ├── CBoneSceneNode.h │ │ │ ├── CBurningShader_Raster_Reference.cpp │ │ │ ├── CCSMLoader.cpp │ │ │ ├── CCSMLoader.h │ │ │ ├── CCameraSceneNode.cpp │ │ │ ├── CCameraSceneNode.h │ │ │ ├── CColladaFileLoader.cpp │ │ │ ├── CColladaFileLoader.h │ │ │ ├── CColladaMeshWriter.cpp │ │ │ ├── CColladaMeshWriter.h │ │ │ ├── CColorConverter.cpp │ │ │ ├── CColorConverter.h │ │ │ ├── CCubeSceneNode.cpp │ │ │ ├── CCubeSceneNode.h │ │ │ ├── CD3D9Driver.cpp │ │ │ ├── CD3D9Driver.h │ │ │ ├── CD3D9HLSLMaterialRenderer.cpp │ │ │ ├── CD3D9HLSLMaterialRenderer.h │ │ │ ├── CD3D9MaterialRenderer.h │ │ │ ├── CD3D9NormalMapRenderer.cpp │ │ │ ├── CD3D9NormalMapRenderer.h │ │ │ ├── CD3D9ParallaxMapRenderer.cpp │ │ │ ├── CD3D9ParallaxMapRenderer.h │ │ │ ├── CD3D9RenderTarget.cpp │ │ │ ├── CD3D9RenderTarget.h │ │ │ ├── CD3D9ShaderMaterialRenderer.cpp │ │ │ ├── CD3D9ShaderMaterialRenderer.h │ │ │ ├── CD3D9Texture.cpp │ │ │ ├── CD3D9Texture.h │ │ │ ├── CDMFLoader.cpp │ │ │ ├── CDMFLoader.h │ │ │ ├── CDefaultGUIElementFactory.cpp │ │ │ ├── CDefaultGUIElementFactory.h │ │ │ ├── CDefaultSceneNodeAnimatorFactory.cpp │ │ │ ├── CDefaultSceneNodeAnimatorFactory.h │ │ │ ├── CDefaultSceneNodeFactory.cpp │ │ │ ├── CDefaultSceneNodeFactory.h │ │ │ ├── CDepthBuffer.cpp │ │ │ ├── CDepthBuffer.h │ │ │ ├── CDummyTransformationSceneNode.cpp │ │ │ ├── CDummyTransformationSceneNode.h │ │ │ ├── CEAGLManager.h │ │ │ ├── CEAGLManager.mm │ │ │ ├── CEGLManager.cpp │ │ │ ├── CEGLManager.h │ │ │ ├── CEmptySceneNode.cpp │ │ │ ├── CEmptySceneNode.h │ │ │ ├── CFPSCounter.cpp │ │ │ ├── CFPSCounter.h │ │ │ ├── CFileList.cpp │ │ │ ├── CFileList.h │ │ │ ├── CFileSystem.cpp │ │ │ ├── CFileSystem.h │ │ │ ├── CGLXManager.cpp │ │ │ ├── CGLXManager.h │ │ │ ├── CGUIButton.cpp │ │ │ ├── CGUIButton.h │ │ │ ├── CGUICheckBox.cpp │ │ │ ├── CGUICheckBox.h │ │ │ ├── CGUIColorSelectDialog.cpp │ │ │ ├── CGUIColorSelectDialog.h │ │ │ ├── CGUIComboBox.cpp │ │ │ ├── CGUIComboBox.h │ │ │ ├── CGUIContextMenu.cpp │ │ │ ├── CGUIContextMenu.h │ │ │ ├── CGUIEditBox.cpp │ │ │ ├── CGUIEditBox.h │ │ │ ├── CGUIEnvironment.cpp │ │ │ ├── CGUIEnvironment.h │ │ │ ├── CGUIFileOpenDialog.cpp │ │ │ ├── CGUIFileOpenDialog.h │ │ │ ├── CGUIFont.cpp │ │ │ ├── CGUIFont.h │ │ │ ├── CGUIImage.cpp │ │ │ ├── CGUIImage.h │ │ │ ├── CGUIImageList.cpp │ │ │ ├── CGUIImageList.h │ │ │ ├── CGUIInOutFader.cpp │ │ │ ├── CGUIInOutFader.h │ │ │ ├── CGUIListBox.cpp │ │ │ ├── CGUIListBox.h │ │ │ ├── CGUIMenu.cpp │ │ │ ├── CGUIMenu.h │ │ │ ├── CGUIMeshViewer.cpp │ │ │ ├── CGUIMeshViewer.h │ │ │ ├── CGUIMessageBox.cpp │ │ │ ├── CGUIMessageBox.h │ │ │ ├── CGUIModalScreen.cpp │ │ │ ├── CGUIModalScreen.h │ │ │ ├── CGUIProfiler.cpp │ │ │ ├── CGUIProfiler.h │ │ │ ├── CGUIScrollBar.cpp │ │ │ ├── CGUIScrollBar.h │ │ │ ├── CGUISkin.cpp │ │ │ ├── CGUISkin.h │ │ │ ├── CGUISpinBox.cpp │ │ │ ├── CGUISpinBox.h │ │ │ ├── CGUISpriteBank.cpp │ │ │ ├── CGUISpriteBank.h │ │ │ ├── CGUIStaticText.cpp │ │ │ ├── CGUIStaticText.h │ │ │ ├── CGUITabControl.cpp │ │ │ ├── CGUITabControl.h │ │ │ ├── CGUITable.cpp │ │ │ ├── CGUITable.h │ │ │ ├── CGUIToolBar.cpp │ │ │ ├── CGUIToolBar.h │ │ │ ├── CGUITreeView.cpp │ │ │ ├── CGUITreeView.h │ │ │ ├── CGUIWindow.cpp │ │ │ ├── CGUIWindow.h │ │ │ ├── CGeometryCreator.cpp │ │ │ ├── CGeometryCreator.h │ │ │ ├── CImage.cpp │ │ │ ├── CImage.h │ │ │ ├── CImageLoaderBMP.cpp │ │ │ ├── CImageLoaderBMP.h │ │ │ ├── CImageLoaderDDS.cpp │ │ │ ├── CImageLoaderDDS.h │ │ │ ├── CImageLoaderJPG.cpp │ │ │ ├── CImageLoaderJPG.h │ │ │ ├── CImageLoaderPCX.cpp │ │ │ ├── CImageLoaderPCX.h │ │ │ ├── CImageLoaderPNG.cpp │ │ │ ├── CImageLoaderPNG.h │ │ │ ├── CImageLoaderPPM.cpp │ │ │ ├── CImageLoaderPPM.h │ │ │ ├── CImageLoaderPSD.cpp │ │ │ ├── CImageLoaderPSD.h │ │ │ ├── CImageLoaderPVR.cpp │ │ │ ├── CImageLoaderPVR.h │ │ │ ├── CImageLoaderRGB.cpp │ │ │ ├── CImageLoaderRGB.h │ │ │ ├── CImageLoaderTGA.cpp │ │ │ ├── CImageLoaderTGA.h │ │ │ ├── CImageLoaderWAL.cpp │ │ │ ├── CImageLoaderWAL.h │ │ │ ├── CImageWriterBMP.cpp │ │ │ ├── CImageWriterBMP.h │ │ │ ├── CImageWriterJPG.cpp │ │ │ ├── CImageWriterJPG.h │ │ │ ├── CImageWriterPCX.cpp │ │ │ ├── CImageWriterPCX.h │ │ │ ├── CImageWriterPNG.cpp │ │ │ ├── CImageWriterPNG.h │ │ │ ├── CImageWriterPPM.cpp │ │ │ ├── CImageWriterPPM.h │ │ │ ├── CImageWriterPSD.cpp │ │ │ ├── CImageWriterPSD.h │ │ │ ├── CImageWriterTGA.cpp │ │ │ ├── CImageWriterTGA.h │ │ │ ├── CIrrDeviceConsole.cpp │ │ │ ├── CIrrDeviceConsole.h │ │ │ ├── CIrrDeviceFB.cpp │ │ │ ├── CIrrDeviceFB.h │ │ │ ├── CIrrDeviceLinux.cpp │ │ │ ├── CIrrDeviceLinux.h │ │ │ ├── CIrrDeviceOSX.h │ │ │ ├── CIrrDeviceOSX.mm │ │ │ ├── CIrrDeviceSDL.cpp │ │ │ ├── CIrrDeviceSDL.h │ │ │ ├── CIrrDeviceStub.cpp │ │ │ ├── CIrrDeviceStub.h │ │ │ ├── CIrrDeviceWin32.cpp │ │ │ ├── CIrrDeviceWin32.h │ │ │ ├── CIrrDeviceiOS.h │ │ │ ├── CIrrDeviceiOS.mm │ │ │ ├── CIrrMeshFileLoader.cpp │ │ │ ├── CIrrMeshFileLoader.h │ │ │ ├── CIrrMeshWriter.cpp │ │ │ ├── CIrrMeshWriter.h │ │ │ ├── CLMTSMeshFileLoader.cpp │ │ │ ├── CLMTSMeshFileLoader.h │ │ │ ├── CLWOMeshFileLoader.cpp │ │ │ ├── CLWOMeshFileLoader.h │ │ │ ├── CLightSceneNode.cpp │ │ │ ├── CLightSceneNode.h │ │ │ ├── CLimitReadFile.cpp │ │ │ ├── CLimitReadFile.h │ │ │ ├── CLogger.cpp │ │ │ ├── CLogger.h │ │ │ ├── CMD2MeshFileLoader.cpp │ │ │ ├── CMD2MeshFileLoader.h │ │ │ ├── CMD3MeshFileLoader.cpp │ │ │ ├── CMD3MeshFileLoader.h │ │ │ ├── CMS3DMeshFileLoader.cpp │ │ │ ├── CMS3DMeshFileLoader.h │ │ │ ├── CMY3DHelper.h │ │ │ ├── CMY3DMeshFileLoader.cpp │ │ │ ├── CMY3DMeshFileLoader.h │ │ │ ├── CMemoryFile.cpp │ │ │ ├── CMemoryFile.h │ │ │ ├── CMeshCache.cpp │ │ │ ├── CMeshCache.h │ │ │ ├── CMeshManipulator.cpp │ │ │ ├── CMeshManipulator.h │ │ │ ├── CMeshSceneNode.cpp │ │ │ ├── CMeshSceneNode.h │ │ │ ├── CMeshTextureLoader.cpp │ │ │ ├── CMeshTextureLoader.h │ │ │ ├── CMetaTriangleSelector.cpp │ │ │ ├── CMetaTriangleSelector.h │ │ │ ├── CMountPointReader.cpp │ │ │ ├── CMountPointReader.h │ │ │ ├── CNPKReader.cpp │ │ │ ├── CNPKReader.h │ │ │ ├── CNSOGLManager.h │ │ │ ├── CNSOGLManager.mm │ │ │ ├── CNullDriver.cpp │ │ │ ├── CNullDriver.h │ │ │ ├── COBJMeshFileLoader.cpp │ │ │ ├── COBJMeshFileLoader.h │ │ │ ├── COBJMeshWriter.cpp │ │ │ ├── COBJMeshWriter.h │ │ │ ├── COCTLoader.cpp │ │ │ ├── COCTLoader.h │ │ │ ├── COGLCoreCacheHandler.h │ │ │ ├── COGLCoreFeature.h │ │ │ ├── COGLCoreRenderTarget.h │ │ │ ├── COGLCoreTexture.h │ │ │ ├── COGLES2Common.h │ │ │ ├── COGLES2Driver.cpp │ │ │ ├── COGLES2Driver.h │ │ │ ├── COGLES2ExtensionHandler.cpp │ │ │ ├── COGLES2ExtensionHandler.h │ │ │ ├── COGLES2FixedPipelineRenderer.cpp │ │ │ ├── COGLES2FixedPipelineRenderer.h │ │ │ ├── COGLES2MaterialRenderer.cpp │ │ │ ├── COGLES2MaterialRenderer.h │ │ │ ├── COGLES2NormalMapRenderer.cpp │ │ │ ├── COGLES2NormalMapRenderer.h │ │ │ ├── COGLES2ParallaxMapRenderer.cpp │ │ │ ├── COGLES2ParallaxMapRenderer.h │ │ │ ├── COGLES2Renderer2D.cpp │ │ │ ├── COGLES2Renderer2D.h │ │ │ ├── COGLESCommon.h │ │ │ ├── COGLESDriver.cpp │ │ │ ├── COGLESDriver.h │ │ │ ├── COGLESExtensionHandler.cpp │ │ │ ├── COGLESExtensionHandler.h │ │ │ ├── COGLESMaterialRenderer.h │ │ │ ├── COSOperator.cpp │ │ │ ├── COSOperator.h │ │ │ ├── COctreeSceneNode.cpp │ │ │ ├── COctreeSceneNode.h │ │ │ ├── COctreeTriangleSelector.cpp │ │ │ ├── COctreeTriangleSelector.h │ │ │ ├── COgreMeshFileLoader.cpp │ │ │ ├── COgreMeshFileLoader.h │ │ │ ├── COpenGLCacheHandler.cpp │ │ │ ├── COpenGLCacheHandler.h │ │ │ ├── COpenGLCommon.h │ │ │ ├── COpenGLDriver.cpp │ │ │ ├── COpenGLDriver.h │ │ │ ├── COpenGLExtensionHandler.cpp │ │ │ ├── COpenGLExtensionHandler.h │ │ │ ├── COpenGLMaterialRenderer.h │ │ │ ├── COpenGLNormalMapRenderer.cpp │ │ │ ├── COpenGLNormalMapRenderer.h │ │ │ ├── COpenGLParallaxMapRenderer.cpp │ │ │ ├── COpenGLParallaxMapRenderer.h │ │ │ ├── COpenGLSLMaterialRenderer.cpp │ │ │ ├── COpenGLSLMaterialRenderer.h │ │ │ ├── COpenGLShaderMaterialRenderer.cpp │ │ │ ├── COpenGLShaderMaterialRenderer.h │ │ │ ├── CPLYMeshFileLoader.cpp │ │ │ ├── CPLYMeshFileLoader.h │ │ │ ├── CPLYMeshWriter.cpp │ │ │ ├── CPLYMeshWriter.h │ │ │ ├── CPakReader.cpp │ │ │ ├── CPakReader.h │ │ │ ├── CParticleAnimatedMeshSceneNodeEmitter.cpp │ │ │ ├── CParticleAnimatedMeshSceneNodeEmitter.h │ │ │ ├── CParticleAttractionAffector.cpp │ │ │ ├── CParticleAttractionAffector.h │ │ │ ├── CParticleBoxEmitter.cpp │ │ │ ├── CParticleBoxEmitter.h │ │ │ ├── CParticleCylinderEmitter.cpp │ │ │ ├── CParticleCylinderEmitter.h │ │ │ ├── CParticleFadeOutAffector.cpp │ │ │ ├── CParticleFadeOutAffector.h │ │ │ ├── CParticleGravityAffector.cpp │ │ │ ├── CParticleGravityAffector.h │ │ │ ├── CParticleMeshEmitter.cpp │ │ │ ├── CParticleMeshEmitter.h │ │ │ ├── CParticlePointEmitter.cpp │ │ │ ├── CParticlePointEmitter.h │ │ │ ├── CParticleRingEmitter.cpp │ │ │ ├── CParticleRingEmitter.h │ │ │ ├── CParticleRotationAffector.cpp │ │ │ ├── CParticleRotationAffector.h │ │ │ ├── CParticleScaleAffector.cpp │ │ │ ├── CParticleScaleAffector.h │ │ │ ├── CParticleSphereEmitter.cpp │ │ │ ├── CParticleSphereEmitter.h │ │ │ ├── CParticleSystemSceneNode.cpp │ │ │ ├── CParticleSystemSceneNode.h │ │ │ ├── CProfiler.cpp │ │ │ ├── CProfiler.h │ │ │ ├── CQ3LevelMesh.cpp │ │ │ ├── CQ3LevelMesh.h │ │ │ ├── CQuake3ShaderSceneNode.cpp │ │ │ ├── CQuake3ShaderSceneNode.h │ │ │ ├── CReadFile.cpp │ │ │ ├── CReadFile.h │ │ │ ├── CSMFMeshFileLoader.cpp │ │ │ ├── CSMFMeshFileLoader.h │ │ │ ├── CSTLMeshFileLoader.cpp │ │ │ ├── CSTLMeshFileLoader.h │ │ │ ├── CSTLMeshWriter.cpp │ │ │ ├── CSTLMeshWriter.h │ │ │ ├── CSceneCollisionManager.cpp │ │ │ ├── CSceneCollisionManager.h │ │ │ ├── CSceneLoaderIrr.cpp │ │ │ ├── CSceneLoaderIrr.h │ │ │ ├── CSceneManager.cpp │ │ │ ├── CSceneManager.h │ │ │ ├── CSceneNodeAnimatorCameraFPS.cpp │ │ │ ├── CSceneNodeAnimatorCameraFPS.h │ │ │ ├── CSceneNodeAnimatorCameraMaya.cpp │ │ │ ├── CSceneNodeAnimatorCameraMaya.h │ │ │ ├── CSceneNodeAnimatorCollisionResponse.cpp │ │ │ ├── CSceneNodeAnimatorCollisionResponse.h │ │ │ ├── CSceneNodeAnimatorDelete.cpp │ │ │ ├── CSceneNodeAnimatorDelete.h │ │ │ ├── CSceneNodeAnimatorFlyCircle.cpp │ │ │ ├── CSceneNodeAnimatorFlyCircle.h │ │ │ ├── CSceneNodeAnimatorFlyStraight.cpp │ │ │ ├── CSceneNodeAnimatorFlyStraight.h │ │ │ ├── CSceneNodeAnimatorFollowSpline.cpp │ │ │ ├── CSceneNodeAnimatorFollowSpline.h │ │ │ ├── CSceneNodeAnimatorRotation.cpp │ │ │ ├── CSceneNodeAnimatorRotation.h │ │ │ ├── CSceneNodeAnimatorTexture.cpp │ │ │ ├── CSceneNodeAnimatorTexture.h │ │ │ ├── CShadowVolumeSceneNode.cpp │ │ │ ├── CShadowVolumeSceneNode.h │ │ │ ├── CSkinnedMesh.cpp │ │ │ ├── CSkinnedMesh.h │ │ │ ├── CSkyBoxSceneNode.cpp │ │ │ ├── CSkyBoxSceneNode.h │ │ │ ├── CSkyDomeSceneNode.cpp │ │ │ ├── CSkyDomeSceneNode.h │ │ │ ├── CSoftware2MaterialRenderer.h │ │ │ ├── CSoftwareDriver.cpp │ │ │ ├── CSoftwareDriver.h │ │ │ ├── CSoftwareDriver2.cpp │ │ │ ├── CSoftwareDriver2.h │ │ │ ├── CSoftwareTexture.cpp │ │ │ ├── CSoftwareTexture.h │ │ │ ├── CSoftwareTexture2.cpp │ │ │ ├── CSoftwareTexture2.h │ │ │ ├── CSphereSceneNode.cpp │ │ │ ├── CSphereSceneNode.h │ │ │ ├── CTRFlat.cpp │ │ │ ├── CTRFlatWire.cpp │ │ │ ├── CTRGouraud.cpp │ │ │ ├── CTRGouraud2.cpp │ │ │ ├── CTRGouraudAlpha2.cpp │ │ │ ├── CTRGouraudAlphaNoZ2.cpp │ │ │ ├── CTRGouraudWire.cpp │ │ │ ├── CTRNormalMap.cpp │ │ │ ├── CTRStencilShadow.cpp │ │ │ ├── CTRTextureBlend.cpp │ │ │ ├── CTRTextureDetailMap2.cpp │ │ │ ├── CTRTextureFlat.cpp │ │ │ ├── CTRTextureFlatWire.cpp │ │ │ ├── CTRTextureGouraud.cpp │ │ │ ├── CTRTextureGouraud.h │ │ │ ├── CTRTextureGouraud2.cpp │ │ │ ├── CTRTextureGouraudAdd.cpp │ │ │ ├── CTRTextureGouraudAdd2.cpp │ │ │ ├── CTRTextureGouraudAddNoZ2.cpp │ │ │ ├── CTRTextureGouraudAlpha.cpp │ │ │ ├── CTRTextureGouraudAlphaNoZ.cpp │ │ │ ├── CTRTextureGouraudNoZ.cpp │ │ │ ├── CTRTextureGouraudNoZ2.cpp │ │ │ ├── CTRTextureGouraudVertexAlpha2.cpp │ │ │ ├── CTRTextureGouraudWire.cpp │ │ │ ├── CTRTextureLightMap2_Add.cpp │ │ │ ├── CTRTextureLightMap2_M1.cpp │ │ │ ├── CTRTextureLightMap2_M2.cpp │ │ │ ├── CTRTextureLightMap2_M4.cpp │ │ │ ├── CTRTextureLightMapGouraud2_M4.cpp │ │ │ ├── CTRTextureWire2.cpp │ │ │ ├── CTarReader.cpp │ │ │ ├── CTarReader.h │ │ │ ├── CTerrainSceneNode.cpp │ │ │ ├── CTerrainSceneNode.h │ │ │ ├── CTerrainTriangleSelector.cpp │ │ │ ├── CTerrainTriangleSelector.h │ │ │ ├── CTextSceneNode.cpp │ │ │ ├── CTextSceneNode.h │ │ │ ├── CTimer.h │ │ │ ├── CTriangleBBSelector.cpp │ │ │ ├── CTriangleBBSelector.h │ │ │ ├── CTriangleSelector.cpp │ │ │ ├── CTriangleSelector.h │ │ │ ├── CVideoModeList.cpp │ │ │ ├── CVideoModeList.h │ │ │ ├── CVolumeLightSceneNode.cpp │ │ │ ├── CVolumeLightSceneNode.h │ │ │ ├── CWADReader.cpp │ │ │ ├── CWADReader.h │ │ │ ├── CWGLManager.cpp │ │ │ ├── CWGLManager.h │ │ │ ├── CWaterSurfaceSceneNode.cpp │ │ │ ├── CWaterSurfaceSceneNode.h │ │ │ ├── CWriteFile.cpp │ │ │ ├── CWriteFile.h │ │ │ ├── CXMLReader.cpp │ │ │ ├── CXMLReader.h │ │ │ ├── CXMLReaderImpl.h │ │ │ ├── CXMLWriter.cpp │ │ │ ├── CXMLWriter.h │ │ │ ├── CXMeshFileLoader.cpp │ │ │ ├── CXMeshFileLoader.h │ │ │ ├── CZBuffer.cpp │ │ │ ├── CZBuffer.h │ │ │ ├── CZipReader.cpp │ │ │ ├── CZipReader.h │ │ │ ├── EProfileIDs.h │ │ │ ├── IAttribute.h │ │ │ ├── IBurningShader.cpp │ │ │ ├── IBurningShader.h │ │ │ ├── IDepthBuffer.h │ │ │ ├── IImagePresenter.h │ │ │ ├── ISceneNodeAnimatorFinishing.h │ │ │ ├── ITriangleRenderer.h │ │ │ ├── IZBuffer.h │ │ │ ├── Irrlicht-gcc.cbp │ │ │ ├── Irrlicht.aps │ │ │ ├── Irrlicht.cpp │ │ │ ├── Irrlicht.dev │ │ │ ├── Irrlicht.rc │ │ │ ├── Irrlicht.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Irrlicht_OSX.xcscheme │ │ │ │ │ └── Irrlicht_iOS.xcscheme │ │ │ ├── Irrlicht10.0.sln │ │ │ ├── Irrlicht10.0.vcxproj │ │ │ ├── Irrlicht10.0.vcxproj.filters │ │ │ ├── Irrlicht11.0.sln │ │ │ ├── Irrlicht11.0.vcxproj │ │ │ ├── Irrlicht11.0.vcxproj.filters │ │ │ ├── Irrlicht12.0.sln │ │ │ ├── Irrlicht12.0.vcxproj │ │ │ ├── Irrlicht12.0.vcxproj.filters │ │ │ ├── Irrlicht14.0.sln │ │ │ ├── Irrlicht14.0.vcxproj │ │ │ ├── Irrlicht14.0.vcxproj.filters │ │ │ ├── Makefile │ │ │ ├── Octree.h │ │ │ ├── S2DVertex.h │ │ │ ├── S4DVertex.h │ │ │ ├── SB3DStructs.h │ │ │ ├── SConstruct │ │ │ ├── SoftwareDriver2_compile_config.h │ │ │ ├── SoftwareDriver2_helper.h │ │ │ ├── aesGladman │ │ │ │ ├── Readme.txt │ │ │ │ ├── aes.h │ │ │ │ ├── aescrypt.cpp │ │ │ │ ├── aeskey.cpp │ │ │ │ ├── aesopt.h │ │ │ │ ├── aestab.cpp │ │ │ │ ├── fileenc.cpp │ │ │ │ ├── fileenc.h │ │ │ │ ├── hmac.cpp │ │ │ │ ├── hmac.h │ │ │ │ ├── prng.cpp │ │ │ │ ├── prng.h │ │ │ │ ├── pwd2key.cpp │ │ │ │ ├── pwd2key.h │ │ │ │ ├── sha1.cpp │ │ │ │ ├── sha1.h │ │ │ │ ├── sha2.cpp │ │ │ │ └── sha2.h │ │ │ ├── builtInFont.bmp │ │ │ ├── bzip2 │ │ │ │ ├── CHANGES │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile-libbz2_so │ │ │ │ ├── README │ │ │ │ ├── README.COMPILATION.PROBLEMS │ │ │ │ ├── README.XML.STUFF │ │ │ │ ├── blocksort.c │ │ │ │ ├── bz-common.xsl │ │ │ │ ├── bz-fo.xsl │ │ │ │ ├── bz-html.xsl │ │ │ │ ├── bzcompress.c │ │ │ │ ├── bzdiff │ │ │ │ ├── bzdiff.1 │ │ │ │ ├── bzgrep │ │ │ │ ├── bzgrep.1 │ │ │ │ ├── bzip.css │ │ │ │ ├── bzip2.1 │ │ │ │ ├── bzip2.1.preformatted │ │ │ │ ├── bzip2.c │ │ │ │ ├── bzip2.txt │ │ │ │ ├── bzip2recover.c │ │ │ │ ├── bzlib.c │ │ │ │ ├── bzlib.h │ │ │ │ ├── bzlib_private.h │ │ │ │ ├── bzmore │ │ │ │ ├── bzmore.1 │ │ │ │ ├── crctable.c │ │ │ │ ├── decompress.c │ │ │ │ ├── dlltest.c │ │ │ │ ├── dlltest.dsp │ │ │ │ ├── entities.xml │ │ │ │ ├── format.pl │ │ │ │ ├── huffman.c │ │ │ │ ├── libbz2.dsp │ │ │ │ ├── makefile.msc │ │ │ │ ├── mk251.c │ │ │ │ ├── randtable.c │ │ │ │ ├── spewG.c │ │ │ │ ├── unzcrash.c │ │ │ │ ├── words0 │ │ │ │ ├── words1 │ │ │ │ ├── words2 │ │ │ │ ├── words3 │ │ │ │ └── xmlproc.sh │ │ │ ├── dmfsupport.h │ │ │ ├── eglext.h │ │ │ ├── gles-ext.h │ │ │ ├── gles2-ext.h │ │ │ ├── gles3-ext.h │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ ├── irrXML.cpp │ │ │ ├── jpeglib │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── ansi2knr.1 │ │ │ │ ├── ansi2knr.c │ │ │ │ ├── cderror.h │ │ │ │ ├── cdjpeg.c │ │ │ │ ├── cdjpeg.h │ │ │ │ ├── cjpeg.1 │ │ │ │ ├── cjpeg.c │ │ │ │ ├── ckconfig.c │ │ │ │ ├── coderules.txt │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── djpeg.1 │ │ │ │ ├── djpeg.c │ │ │ │ ├── example.c │ │ │ │ ├── filelist.txt │ │ │ │ ├── install-sh │ │ │ │ ├── install.txt │ │ │ │ ├── jaricom.c │ │ │ │ ├── jcapimin.c │ │ │ │ ├── jcapistd.c │ │ │ │ ├── jcarith.c │ │ │ │ ├── jccoefct.c │ │ │ │ ├── jccolor.c │ │ │ │ ├── jcdctmgr.c │ │ │ │ ├── jchuff.c │ │ │ │ ├── jcinit.c │ │ │ │ ├── jcmainct.c │ │ │ │ ├── jcmarker.c │ │ │ │ ├── jcmaster.c │ │ │ │ ├── jcomapi.c │ │ │ │ ├── jconfig.bcc │ │ │ │ ├── jconfig.cfg │ │ │ │ ├── jconfig.dj │ │ │ │ ├── jconfig.h │ │ │ │ ├── jconfig.mac │ │ │ │ ├── jconfig.manx │ │ │ │ ├── jconfig.mc6 │ │ │ │ ├── jconfig.sas │ │ │ │ ├── jconfig.st │ │ │ │ ├── jconfig.txt │ │ │ │ ├── jconfig.vc │ │ │ │ ├── jconfig.vms │ │ │ │ ├── jconfig.wat │ │ │ │ ├── jcparam.c │ │ │ │ ├── jcprepct.c │ │ │ │ ├── jcsample.c │ │ │ │ ├── jctrans.c │ │ │ │ ├── jdapimin.c │ │ │ │ ├── jdapistd.c │ │ │ │ ├── jdarith.c │ │ │ │ ├── jdatadst.c │ │ │ │ ├── jdatasrc.c │ │ │ │ ├── jdcoefct.c │ │ │ │ ├── jdcolor.c │ │ │ │ ├── jdct.h │ │ │ │ ├── jddctmgr.c │ │ │ │ ├── jdhuff.c │ │ │ │ ├── jdinput.c │ │ │ │ ├── jdmainct.c │ │ │ │ ├── jdmarker.c │ │ │ │ ├── jdmaster.c │ │ │ │ ├── jdmerge.c │ │ │ │ ├── jdosaobj.txt │ │ │ │ ├── jdpostct.c │ │ │ │ ├── jdsample.c │ │ │ │ ├── jdtrans.c │ │ │ │ ├── jerror.c │ │ │ │ ├── jerror.h │ │ │ │ ├── jfdctflt.c │ │ │ │ ├── jfdctfst.c │ │ │ │ ├── jfdctint.c │ │ │ │ ├── jidctflt.c │ │ │ │ ├── jidctfst.c │ │ │ │ ├── jidctint.c │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmemansi.c │ │ │ │ ├── jmemdos.c │ │ │ │ ├── jmemdosa.asm │ │ │ │ ├── jmemmac.c │ │ │ │ ├── jmemmgr.c │ │ │ │ ├── jmemname.c │ │ │ │ ├── jmemnobs.c │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpeglib.h │ │ │ │ ├── jpegtran.1 │ │ │ │ ├── jpegtran.c │ │ │ │ ├── jquant1.c │ │ │ │ ├── jquant2.c │ │ │ │ ├── jutils.c │ │ │ │ ├── jversion.h │ │ │ │ ├── libjpeg.map │ │ │ │ ├── libjpeg.txt │ │ │ │ ├── ltmain.sh │ │ │ │ ├── makcjpeg.st │ │ │ │ ├── makdjpeg.st │ │ │ │ ├── makeadsw.vc6 │ │ │ │ ├── makeasln.v10 │ │ │ │ ├── makecdep.vc6 │ │ │ │ ├── makecdsp.vc6 │ │ │ │ ├── makecfil.v10 │ │ │ │ ├── makecmak.vc6 │ │ │ │ ├── makecvcx.v10 │ │ │ │ ├── makeddep.vc6 │ │ │ │ ├── makeddsp.vc6 │ │ │ │ ├── makedfil.v10 │ │ │ │ ├── makedmak.vc6 │ │ │ │ ├── makedvcx.v10 │ │ │ │ ├── makefile.ansi │ │ │ │ ├── makefile.bcc │ │ │ │ ├── makefile.dj │ │ │ │ ├── makefile.manx │ │ │ │ ├── makefile.mc6 │ │ │ │ ├── makefile.mms │ │ │ │ ├── makefile.sas │ │ │ │ ├── makefile.unix │ │ │ │ ├── makefile.vc │ │ │ │ ├── makefile.vms │ │ │ │ ├── makefile.wat │ │ │ │ ├── makejdep.vc6 │ │ │ │ ├── makejdsp.vc6 │ │ │ │ ├── makejdsw.vc6 │ │ │ │ ├── makejfil.v10 │ │ │ │ ├── makejmak.vc6 │ │ │ │ ├── makejsln.v10 │ │ │ │ ├── makejvcx.v10 │ │ │ │ ├── makeproj.mac │ │ │ │ ├── makerdep.vc6 │ │ │ │ ├── makerdsp.vc6 │ │ │ │ ├── makerfil.v10 │ │ │ │ ├── makermak.vc6 │ │ │ │ ├── makervcx.v10 │ │ │ │ ├── maketdep.vc6 │ │ │ │ ├── maketdsp.vc6 │ │ │ │ ├── maketfil.v10 │ │ │ │ ├── maketmak.vc6 │ │ │ │ ├── maketvcx.v10 │ │ │ │ ├── makewdep.vc6 │ │ │ │ ├── makewdsp.vc6 │ │ │ │ ├── makewfil.v10 │ │ │ │ ├── makewmak.vc6 │ │ │ │ ├── makewvcx.v10 │ │ │ │ ├── makljpeg.st │ │ │ │ ├── maktjpeg.st │ │ │ │ ├── makvms.opt │ │ │ │ ├── missing │ │ │ │ ├── rdbmp.c │ │ │ │ ├── rdcolmap.c │ │ │ │ ├── rdgif.c │ │ │ │ ├── rdjpgcom.1 │ │ │ │ ├── rdjpgcom.c │ │ │ │ ├── rdppm.c │ │ │ │ ├── rdrle.c │ │ │ │ ├── rdswitch.c │ │ │ │ ├── rdtarga.c │ │ │ │ ├── readme.dos │ │ │ │ ├── structure.txt │ │ │ │ ├── testimg.bmp │ │ │ │ ├── testimg.jpg │ │ │ │ ├── testimg.ppm │ │ │ │ ├── testimgp.jpg │ │ │ │ ├── testorig.jpg │ │ │ │ ├── testprog.jpg │ │ │ │ ├── transupp.c │ │ │ │ ├── transupp.h │ │ │ │ ├── usage.txt │ │ │ │ ├── wizard.txt │ │ │ │ ├── wrbmp.c │ │ │ │ ├── wrgif.c │ │ │ │ ├── wrjpgcom.1 │ │ │ │ ├── wrjpgcom.c │ │ │ │ ├── wrppm.c │ │ │ │ ├── wrrle.c │ │ │ │ └── wrtarga.c │ │ │ ├── leakHunter.cpp │ │ │ ├── libpng │ │ │ │ ├── ANNOUNCE │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── configure │ │ │ │ ├── contrib │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm-neon │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── android-ndk.c │ │ │ │ │ │ ├── linux-auxv.c │ │ │ │ │ │ └── linux.c │ │ │ │ │ ├── gregbook │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile.mingw32 │ │ │ │ │ │ ├── Makefile.sgi │ │ │ │ │ │ ├── Makefile.unx │ │ │ │ │ │ ├── Makefile.w32 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── pngimage.c │ │ │ │ │ │ └── pngvalid.c │ │ │ │ │ ├── pngminim │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── png2pnm.bat │ │ │ │ │ │ ├── png2pnm.c │ │ │ │ │ │ ├── png2pnm.sh │ │ │ │ │ │ ├── pngminus.bat │ │ │ │ │ │ ├── pngminus.sh │ │ │ │ │ │ ├── pnm2png.bat │ │ │ │ │ │ ├── pnm2png.c │ │ │ │ │ │ └── pnm2png.sh │ │ │ │ │ ├── pngsuite │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── ftbbn1g04.png │ │ │ │ │ │ ├── ftbbn2c16.png │ │ │ │ │ │ ├── ftbbn3p08.png │ │ │ │ │ │ ├── ftbgn2c16.png │ │ │ │ │ │ ├── ftbgn3p08.png │ │ │ │ │ │ ├── ftbrn2c08.png │ │ │ │ │ │ ├── ftbwn1g16.png │ │ │ │ │ │ ├── ftbwn3p08.png │ │ │ │ │ │ ├── ftbyn3p08.png │ │ │ │ │ │ ├── ftp0n1g08.png │ │ │ │ │ │ ├── ftp0n2c08.png │ │ │ │ │ │ ├── ftp0n3p08.png │ │ │ │ │ │ └── ftp1n3p08.png │ │ │ │ │ └── visupng │ │ │ │ │ │ ├── PngFile.c │ │ │ │ │ │ ├── PngFile.h │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── VisualPng.c │ │ │ │ │ │ ├── VisualPng.dsp │ │ │ │ │ │ ├── VisualPng.dsw │ │ │ │ │ │ ├── VisualPng.ico │ │ │ │ │ │ ├── VisualPng.png │ │ │ │ │ │ ├── VisualPng.rc │ │ │ │ │ │ ├── cexcept.h │ │ │ │ │ │ └── resource.h │ │ │ │ ├── example.c │ │ │ │ ├── libpng-config.in │ │ │ │ ├── libpng-manual.txt │ │ │ │ ├── libpng.3 │ │ │ │ ├── libpng.pc.in │ │ │ │ ├── libpngpf.3 │ │ │ │ ├── png.5 │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngbar.jpg │ │ │ │ ├── pngbar.png │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.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 │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ ├── pngwutil.c │ │ │ │ ├── projects │ │ │ │ │ ├── visualc71 │ │ │ │ │ │ ├── PRJ0041.mak │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── README_zlib.txt │ │ │ │ │ │ ├── libpng.sln │ │ │ │ │ │ ├── libpng.vcproj │ │ │ │ │ │ ├── pngtest.vcproj │ │ │ │ │ │ └── zlib.vcproj │ │ │ │ │ └── vstudio │ │ │ │ │ │ ├── libpng │ │ │ │ │ │ └── libpng.vcxproj │ │ │ │ │ │ ├── pnglibconf │ │ │ │ │ │ └── pnglibconf.vcxproj │ │ │ │ │ │ ├── pngtest │ │ │ │ │ │ └── pngtest.vcxproj │ │ │ │ │ │ ├── pngvalid │ │ │ │ │ │ └── pngvalid.vcxproj │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── vstudio.sln │ │ │ │ │ │ ├── zlib.props │ │ │ │ │ │ └── zlib │ │ │ │ │ │ └── zlib.vcxproj │ │ │ │ └── scripts │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── SCOPTIONS.ppc │ │ │ │ │ ├── checksym.awk │ │ │ │ │ ├── chkfmt │ │ │ │ │ ├── def.dfn │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── libpng-config-body.in │ │ │ │ │ ├── libpng-config-head.in │ │ │ │ │ ├── libpng.pc.in │ │ │ │ │ ├── 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.elf │ │ │ │ │ ├── makefile.freebsd │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ ├── makefile.hp64 │ │ │ │ │ ├── makefile.hpgcc │ │ │ │ │ ├── makefile.hpux │ │ │ │ │ ├── makefile.ibmc │ │ │ │ │ ├── makefile.intel │ │ │ │ │ ├── makefile.knr │ │ │ │ │ ├── makefile.linux │ │ │ │ │ ├── makefile.mips │ │ │ │ │ ├── makefile.msc │ │ │ │ │ ├── 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 │ │ │ │ │ ├── options.awk │ │ │ │ │ ├── pnglibconf.dfa │ │ │ │ │ ├── pnglibconf.h.prebuilt │ │ │ │ │ ├── pnglibconf.mak │ │ │ │ │ ├── pngwin.rc │ │ │ │ │ ├── smakefile.ppc │ │ │ │ │ ├── sym.dfn │ │ │ │ │ ├── symbols.dfn │ │ │ │ │ └── vers.dfn │ │ │ ├── lzma │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ └── Types.h │ │ │ ├── os.cpp │ │ │ ├── os.h │ │ │ ├── resource.h │ │ │ ├── source.txt │ │ │ ├── utf8.cpp │ │ │ ├── wglext.h │ │ │ └── zlib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChangeLog │ │ │ │ ├── FAQ │ │ │ │ ├── INDEX │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── configure │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── treebuild.xml │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.cmakein │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.3 │ │ │ │ ├── zlib.3.pdf │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib.map │ │ │ │ ├── zlib.pc.cmakein │ │ │ │ ├── zlib.pc.in │ │ │ │ ├── zlib2ansi │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ └── source.txt │ └── tests │ │ ├── 2dmaterial.cpp │ │ ├── Makefile │ │ ├── anti-aliasing.cpp │ │ ├── archiveReader.cpp │ │ ├── b3dAnimation.cpp │ │ ├── billboards.cpp │ │ ├── burningsVideo.cpp │ │ ├── collisionResponseAnimator.cpp │ │ ├── color.cpp │ │ ├── coreutil.cpp │ │ ├── createImage.cpp │ │ ├── cursorSetVisible.cpp │ │ ├── disambiguateTextures.cpp │ │ ├── draw2DImage.cpp │ │ ├── drawPixel.cpp │ │ ├── drawRectOutline.cpp │ │ ├── drawVertexPrimitive.cpp │ │ ├── empty │ │ └── empty │ │ │ ├── Direct3D 9.0.png │ │ │ ├── Irrlicht Software Device 1.0.png │ │ │ ├── OpenGL 2.1.2.png │ │ │ └── burnings video 0.39b.png │ │ ├── enumerateImageManipulators.cpp │ │ ├── exports.cpp │ │ ├── fast_atof.cpp │ │ ├── filesystem.cpp │ │ ├── flyCircleAnimator.cpp │ │ ├── guiDisabledMenu.cpp │ │ ├── ioScene.cpp │ │ ├── irrArray.cpp │ │ ├── irrCoreEquals.cpp │ │ ├── irrList.cpp │ │ ├── irrMap.cpp │ │ ├── irrString.cpp │ │ ├── lightMaps.cpp │ │ ├── lights.cpp │ │ ├── loadTextures.cpp │ │ ├── main.cpp │ │ ├── makeColorKeyTexture.cpp │ │ ├── material.cpp │ │ ├── matrixOps.cpp │ │ ├── md2Animation.cpp │ │ ├── meshLoaders.cpp │ │ ├── meshTransform.cpp │ │ ├── mrt.cpp │ │ ├── orthoCam.cpp │ │ ├── planeMatrix.cpp │ │ ├── projectionMatrix.cpp │ │ ├── removeCustomAnimator.cpp │ │ ├── renderTargetTexture.cpp │ │ ├── sceneCollisionManager.cpp │ │ ├── sceneNodeAnimator.cpp │ │ ├── screenshot.cpp │ │ ├── serializeAttributes.cpp │ │ ├── skinnedMesh.cpp │ │ ├── softwareDevice.cpp │ │ ├── stencilshadow.cpp │ │ ├── terrainSceneNode.cpp │ │ ├── testDimension2d.cpp │ │ ├── testGeometryCreator.cpp │ │ ├── testLine2d.cpp │ │ ├── testQuaternion.cpp │ │ ├── testS3DVertex.cpp │ │ ├── testUtils.cpp │ │ ├── testUtils.h │ │ ├── testVector2d.cpp │ │ ├── testVector3d.cpp │ │ ├── testXML.cpp │ │ ├── testaabbox.cpp │ │ ├── tests-last-passed-at.txt │ │ ├── tests-readme.txt │ │ ├── tests.cbp │ │ ├── tests.workspace │ │ ├── tests_vc10.sln │ │ ├── tests_vc10.vcxproj │ │ ├── tests_vc11.sln │ │ ├── tests_vc11.vcxproj │ │ ├── tests_vc8.sln │ │ ├── tests_vc8.vcproj │ │ ├── tests_vc9.sln │ │ ├── tests_vc9.vcproj │ │ ├── textureFeatures.cpp │ │ ├── textureRenderStates.cpp │ │ ├── timer.cpp │ │ ├── transparentMaterials.cpp │ │ ├── triangle3d.cpp │ │ ├── triangleSelector.cpp │ │ ├── userClipPlane.cpp │ │ ├── vectorPositionDimension2d.cpp │ │ ├── videoDriver.cpp │ │ ├── viewPort.cpp │ │ └── writeImageToFile.cpp ├── libfreetype │ ├── freetype-2.5.2 │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── ChangeLog.20 │ │ ├── ChangeLog.21 │ │ ├── ChangeLog.22 │ │ ├── ChangeLog.23 │ │ ├── Jamfile │ │ ├── Jamrules │ │ ├── Makefile │ │ ├── README │ │ ├── README.git │ │ ├── autogen.sh │ │ ├── builds │ │ │ ├── amiga │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ └── 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 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── configure.raw │ │ │ │ ├── detect.mk │ │ │ │ ├── freetype-config.in │ │ │ │ ├── freetype2.in │ │ │ │ ├── freetype2.m4 │ │ │ │ ├── ft-munmap.m4 │ │ │ │ ├── ftconfig.in │ │ │ │ ├── ftsystem.c │ │ │ │ ├── install-sh │ │ │ │ ├── install.mk │ │ │ │ ├── ltmain.sh │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── unix-cc.in │ │ │ │ ├── unix-def.in │ │ │ │ ├── unix-dev.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── unix.mk │ │ │ │ └── unixddef.mk │ │ │ ├── vms │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftsystem.c │ │ │ ├── wince │ │ │ │ ├── ftdebug.c │ │ │ │ ├── vc2005-ce │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ │ └── vc2008-ce │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ └── windows │ │ │ │ ├── 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 │ │ ├── configure │ │ ├── devel │ │ │ ├── ft2build.h │ │ │ └── ftoption.h │ │ ├── docs │ │ │ ├── CHANGES │ │ │ ├── CMAKE │ │ │ ├── CUSTOMIZE │ │ │ ├── DEBUG │ │ │ ├── FTL.TXT │ │ │ ├── GPLv2.TXT │ │ │ ├── INSTALL │ │ │ ├── INSTALL.ANY │ │ │ ├── INSTALL.CROSS │ │ │ ├── INSTALL.GNU │ │ │ ├── INSTALL.MAC │ │ │ ├── INSTALL.UNIX │ │ │ ├── INSTALL.VMS │ │ │ ├── LICENSE.TXT │ │ │ ├── MAKEPP │ │ │ ├── PROBLEMS │ │ │ ├── TODO │ │ │ ├── VERSION.DLL │ │ │ ├── formats.txt │ │ │ ├── raster.txt │ │ │ ├── reference │ │ │ │ ├── README │ │ │ │ ├── ft2-auto_hinter.html │ │ │ │ ├── ft2-base_interface.html │ │ │ │ ├── ft2-basic_types.html │ │ │ │ ├── ft2-bdf_fonts.html │ │ │ │ ├── ft2-bitmap_handling.html │ │ │ │ ├── ft2-bzip2.html │ │ │ │ ├── ft2-cache_subsystem.html │ │ │ │ ├── ft2-cff_driver.html │ │ │ │ ├── ft2-cid_fonts.html │ │ │ │ ├── ft2-computations.html │ │ │ │ ├── ft2-font_formats.html │ │ │ │ ├── ft2-gasp_table.html │ │ │ │ ├── ft2-glyph_management.html │ │ │ │ ├── ft2-glyph_stroker.html │ │ │ │ ├── ft2-glyph_variants.html │ │ │ │ ├── ft2-gx_validation.html │ │ │ │ ├── ft2-gzip.html │ │ │ │ ├── ft2-header_file_macros.html │ │ │ │ ├── ft2-incremental.html │ │ │ │ ├── ft2-index.html │ │ │ │ ├── ft2-lcd_filtering.html │ │ │ │ ├── ft2-list_processing.html │ │ │ │ ├── ft2-lzw.html │ │ │ │ ├── ft2-mac_specific.html │ │ │ │ ├── ft2-module_management.html │ │ │ │ ├── ft2-multiple_masters.html │ │ │ │ ├── ft2-ot_validation.html │ │ │ │ ├── ft2-outline_processing.html │ │ │ │ ├── ft2-pfr_fonts.html │ │ │ │ ├── ft2-quick_advance.html │ │ │ │ ├── ft2-raster.html │ │ │ │ ├── ft2-sfnt_names.html │ │ │ │ ├── ft2-sizes_management.html │ │ │ │ ├── ft2-system_interface.html │ │ │ │ ├── ft2-toc.html │ │ │ │ ├── ft2-truetype_engine.html │ │ │ │ ├── ft2-truetype_tables.html │ │ │ │ ├── ft2-tt_driver.html │ │ │ │ ├── ft2-type1_tables.html │ │ │ │ ├── ft2-user_allocation.html │ │ │ │ ├── ft2-version.html │ │ │ │ └── ft2-winfnt_fonts.html │ │ │ └── release │ │ ├── include │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ft2build.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftautoh.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftcffdrv.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 │ │ │ ├── ftttdrv.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 │ │ │ │ │ ├── svprop.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 │ │ ├── modules.cfg │ │ ├── objs │ │ │ └── README │ │ ├── src │ │ │ ├── Jamfile │ │ │ ├── autofit │ │ │ │ ├── Jamfile │ │ │ │ ├── afangles.c │ │ │ │ ├── afangles.h │ │ │ │ ├── afblue.c │ │ │ │ ├── afblue.cin │ │ │ │ ├── afblue.dat │ │ │ │ ├── afblue.h │ │ │ │ ├── afblue.hin │ │ │ │ ├── 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 │ │ │ │ ├── afscript.h │ │ │ │ ├── aftypes.h │ │ │ │ ├── afwarp.c │ │ │ │ ├── afwarp.h │ │ │ │ ├── afwrtsys.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 │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ └── 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 │ │ │ │ ├── cf2arrst.c │ │ │ │ ├── cf2arrst.h │ │ │ │ ├── cf2blues.c │ │ │ │ ├── cf2blues.h │ │ │ │ ├── cf2error.c │ │ │ │ ├── cf2error.h │ │ │ │ ├── cf2fixed.h │ │ │ │ ├── cf2font.c │ │ │ │ ├── cf2font.h │ │ │ │ ├── cf2ft.c │ │ │ │ ├── cf2ft.h │ │ │ │ ├── cf2glue.h │ │ │ │ ├── cf2hints.c │ │ │ │ ├── cf2hints.h │ │ │ │ ├── cf2intrp.c │ │ │ │ ├── cf2intrp.h │ │ │ │ ├── cf2read.c │ │ │ │ ├── cf2read.h │ │ │ │ ├── cf2stack.c │ │ │ │ ├── cf2stack.h │ │ │ │ ├── cf2types.h │ │ │ │ ├── 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 │ │ │ │ ├── pngshim.c │ │ │ │ ├── pngshim.h │ │ │ │ ├── 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 │ │ │ ├── smooth │ │ │ │ ├── Jamfile │ │ │ │ ├── ftgrays.c │ │ │ │ ├── ftgrays.h │ │ │ │ ├── ftsmerrs.h │ │ │ │ ├── ftsmooth.c │ │ │ │ ├── ftsmooth.h │ │ │ │ ├── ftspic.c │ │ │ │ ├── ftspic.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── smooth.c │ │ │ ├── tools │ │ │ │ ├── Jamfile │ │ │ │ ├── afblue.pl │ │ │ │ ├── apinames.c │ │ │ │ ├── chktrcmp.py │ │ │ │ ├── cordic.py │ │ │ │ ├── docmaker │ │ │ │ │ ├── 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 │ │ │ │ ├── ttsubpix.c │ │ │ │ └── ttsubpix.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 │ └── freetype-2.5.5 │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── ChangeLog.20 │ │ ├── ChangeLog.21 │ │ ├── ChangeLog.22 │ │ ├── ChangeLog.23 │ │ ├── ChangeLog.24 │ │ ├── Jamfile │ │ ├── Jamrules │ │ ├── Makefile │ │ ├── README │ │ ├── README.git │ │ ├── autogen.sh │ │ ├── builds │ │ ├── amiga │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── 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 │ │ ├── cmake │ │ │ └── iOS.cmake │ │ ├── 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 │ │ │ ├── freetype-Info.plist │ │ │ ├── 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 │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── configure.raw │ │ │ ├── detect.mk │ │ │ ├── freetype-config.in │ │ │ ├── freetype2.in │ │ │ ├── freetype2.m4 │ │ │ ├── ft-munmap.m4 │ │ │ ├── ftconfig.in │ │ │ ├── ftsystem.c │ │ │ ├── install-sh │ │ │ ├── install.mk │ │ │ ├── ltmain.sh │ │ │ ├── mkinstalldirs │ │ │ ├── pkg.m4 │ │ │ ├── unix-cc.in │ │ │ ├── unix-def.in │ │ │ ├── unix-dev.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── unix.mk │ │ │ └── unixddef.mk │ │ ├── vms │ │ │ ├── ftconfig.h │ │ │ └── ftsystem.c │ │ ├── wince │ │ │ ├── ftdebug.c │ │ │ ├── vc2005-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ └── vc2008-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ └── windows │ │ │ ├── detect.mk │ │ │ ├── ftdebug.c │ │ │ ├── vc2005 │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── vc2008 │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── vc2010 │ │ │ ├── freetype.sln │ │ │ ├── freetype.user.props │ │ │ ├── freetype.vcxproj │ │ │ ├── freetype.vcxproj.filters │ │ │ └── index.html │ │ │ ├── vc2013 │ │ │ ├── freetype.sln │ │ │ ├── freetype.user.props │ │ │ ├── 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 │ │ ├── configure │ │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ │ ├── docs │ │ ├── CHANGES │ │ ├── CMAKE │ │ ├── CUSTOMIZE │ │ ├── DEBUG │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ ├── INSTALL │ │ ├── INSTALL.ANY │ │ ├── INSTALL.CROSS │ │ ├── INSTALL.GNU │ │ ├── INSTALL.MAC │ │ ├── INSTALL.UNIX │ │ ├── INSTALL.VMS │ │ ├── LICENSE.TXT │ │ ├── MAKEPP │ │ ├── PROBLEMS │ │ ├── TODO │ │ ├── VERSION.DLL │ │ ├── formats.txt │ │ ├── freetype-config.1 │ │ ├── raster.txt │ │ ├── reference │ │ │ ├── README │ │ │ ├── ft2-auto_hinter.html │ │ │ ├── ft2-base_interface.html │ │ │ ├── ft2-basic_types.html │ │ │ ├── ft2-bdf_fonts.html │ │ │ ├── ft2-bitmap_handling.html │ │ │ ├── ft2-bzip2.html │ │ │ ├── ft2-cache_subsystem.html │ │ │ ├── ft2-cff_driver.html │ │ │ ├── ft2-cid_fonts.html │ │ │ ├── ft2-computations.html │ │ │ ├── ft2-font_formats.html │ │ │ ├── ft2-gasp_table.html │ │ │ ├── ft2-glyph_management.html │ │ │ ├── ft2-glyph_stroker.html │ │ │ ├── ft2-glyph_variants.html │ │ │ ├── ft2-gx_validation.html │ │ │ ├── ft2-gzip.html │ │ │ ├── ft2-header_file_macros.html │ │ │ ├── ft2-header_inclusion.html │ │ │ ├── ft2-incremental.html │ │ │ ├── ft2-index.html │ │ │ ├── ft2-lcd_filtering.html │ │ │ ├── ft2-list_processing.html │ │ │ ├── ft2-lzw.html │ │ │ ├── ft2-mac_specific.html │ │ │ ├── ft2-module_management.html │ │ │ ├── ft2-multiple_masters.html │ │ │ ├── ft2-ot_validation.html │ │ │ ├── ft2-outline_processing.html │ │ │ ├── ft2-pfr_fonts.html │ │ │ ├── ft2-quick_advance.html │ │ │ ├── ft2-raster.html │ │ │ ├── ft2-sfnt_names.html │ │ │ ├── ft2-sizes_management.html │ │ │ ├── ft2-system_interface.html │ │ │ ├── ft2-toc.html │ │ │ ├── ft2-truetype_engine.html │ │ │ ├── ft2-truetype_tables.html │ │ │ ├── ft2-tt_driver.html │ │ │ ├── ft2-type1_tables.html │ │ │ ├── ft2-user_allocation.html │ │ │ ├── ft2-version.html │ │ │ └── ft2-winfnt_fonts.html │ │ └── release │ │ ├── include │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ft2build.h │ │ ├── ftadvanc.h │ │ ├── ftautoh.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftcffdrv.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 │ │ ├── ftttdrv.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 │ │ │ │ ├── svprop.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 │ │ ├── modules.cfg │ │ ├── objs │ │ └── README │ │ ├── src │ │ ├── Jamfile │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.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 │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── afwrtsys.h │ │ │ ├── autofit.c │ │ │ ├── hbshim.c │ │ │ ├── hbshim.h │ │ │ ├── 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 │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── 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 │ │ │ ├── cf2arrst.c │ │ │ ├── cf2arrst.h │ │ │ ├── cf2blues.c │ │ │ ├── cf2blues.h │ │ │ ├── cf2error.c │ │ │ ├── cf2error.h │ │ │ ├── cf2fixed.h │ │ │ ├── cf2font.c │ │ │ ├── cf2font.h │ │ │ ├── cf2ft.c │ │ │ ├── cf2ft.h │ │ │ ├── cf2glue.h │ │ │ ├── cf2hints.c │ │ │ ├── cf2hints.h │ │ │ ├── cf2intrp.c │ │ │ ├── cf2intrp.h │ │ │ ├── cf2read.c │ │ │ ├── cf2read.h │ │ │ ├── cf2stack.c │ │ │ ├── cf2stack.h │ │ │ ├── cf2types.h │ │ │ ├── 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 │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── 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 │ │ ├── smooth │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── ftspic.c │ │ │ ├── ftspic.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── tools │ │ │ ├── Jamfile │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── docmaker │ │ │ │ ├── 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 │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.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 ├── libogg │ ├── libogg-1.3.1 │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fish_xiph_org.png │ │ │ ├── framing.html │ │ │ ├── index.html │ │ │ ├── libogg │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bitpacking.html │ │ │ │ ├── datastructures.html │ │ │ │ ├── decoding.html │ │ │ │ ├── encoding.html │ │ │ │ ├── general.html │ │ │ │ ├── index.html │ │ │ │ ├── ogg_iovec_t.html │ │ │ │ ├── ogg_packet.html │ │ │ │ ├── ogg_packet_clear.html │ │ │ │ ├── ogg_page.html │ │ │ │ ├── ogg_page_bos.html │ │ │ │ ├── ogg_page_checksum_set.html │ │ │ │ ├── ogg_page_continued.html │ │ │ │ ├── ogg_page_eos.html │ │ │ │ ├── ogg_page_granulepos.html │ │ │ │ ├── ogg_page_packets.html │ │ │ │ ├── ogg_page_pageno.html │ │ │ │ ├── ogg_page_serialno.html │ │ │ │ ├── ogg_page_version.html │ │ │ │ ├── ogg_stream_check.html │ │ │ │ ├── ogg_stream_clear.html │ │ │ │ ├── ogg_stream_destroy.html │ │ │ │ ├── ogg_stream_eos.html │ │ │ │ ├── ogg_stream_flush.html │ │ │ │ ├── ogg_stream_flush_fill.html │ │ │ │ ├── ogg_stream_init.html │ │ │ │ ├── ogg_stream_iovecin.html │ │ │ │ ├── ogg_stream_packetin.html │ │ │ │ ├── ogg_stream_packetout.html │ │ │ │ ├── ogg_stream_packetpeek.html │ │ │ │ ├── ogg_stream_pagein.html │ │ │ │ ├── ogg_stream_pageout.html │ │ │ │ ├── ogg_stream_pageout_fill.html │ │ │ │ ├── ogg_stream_reset.html │ │ │ │ ├── ogg_stream_reset_serialno.html │ │ │ │ ├── ogg_stream_state.html │ │ │ │ ├── ogg_sync_buffer.html │ │ │ │ ├── ogg_sync_check.html │ │ │ │ ├── ogg_sync_clear.html │ │ │ │ ├── ogg_sync_destroy.html │ │ │ │ ├── ogg_sync_init.html │ │ │ │ ├── ogg_sync_pageout.html │ │ │ │ ├── ogg_sync_pageseek.html │ │ │ │ ├── ogg_sync_reset.html │ │ │ │ ├── ogg_sync_state.html │ │ │ │ ├── ogg_sync_wrote.html │ │ │ │ ├── oggpack_adv.html │ │ │ │ ├── oggpack_adv1.html │ │ │ │ ├── oggpack_bits.html │ │ │ │ ├── oggpack_buffer.html │ │ │ │ ├── oggpack_bytes.html │ │ │ │ ├── oggpack_get_buffer.html │ │ │ │ ├── oggpack_look.html │ │ │ │ ├── oggpack_look1.html │ │ │ │ ├── oggpack_read.html │ │ │ │ ├── oggpack_read1.html │ │ │ │ ├── oggpack_readinit.html │ │ │ │ ├── oggpack_reset.html │ │ │ │ ├── oggpack_write.html │ │ │ │ ├── oggpack_writealign.html │ │ │ │ ├── oggpack_writecheck.html │ │ │ │ ├── oggpack_writeclear.html │ │ │ │ ├── oggpack_writecopy.html │ │ │ │ ├── oggpack_writeinit.html │ │ │ │ ├── oggpack_writetrunc.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ └── style.css │ │ │ ├── multiplex1.png │ │ │ ├── ogg-multiplex.html │ │ │ ├── oggstream.html │ │ │ ├── packets.png │ │ │ ├── pages.png │ │ │ ├── rfc3533.txt │ │ │ ├── rfc5334.txt │ │ │ ├── skeleton.html │ │ │ ├── stream.png │ │ │ ├── vorbisword2.png │ │ │ ├── white-ogg.png │ │ │ └── white-xifish.png │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── ogg │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── config_types.h.in │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ ├── install-sh │ │ ├── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ │ ├── 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 │ └── libogg-1.3.2 │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── depcomp │ │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── fish_xiph_org.png │ │ ├── framing.html │ │ ├── index.html │ │ ├── libogg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bitpacking.html │ │ │ ├── datastructures.html │ │ │ ├── decoding.html │ │ │ ├── encoding.html │ │ │ ├── general.html │ │ │ ├── index.html │ │ │ ├── ogg_iovec_t.html │ │ │ ├── ogg_packet.html │ │ │ ├── ogg_packet_clear.html │ │ │ ├── ogg_page.html │ │ │ ├── ogg_page_bos.html │ │ │ ├── ogg_page_checksum_set.html │ │ │ ├── ogg_page_continued.html │ │ │ ├── ogg_page_eos.html │ │ │ ├── ogg_page_granulepos.html │ │ │ ├── ogg_page_packets.html │ │ │ ├── ogg_page_pageno.html │ │ │ ├── ogg_page_serialno.html │ │ │ ├── ogg_page_version.html │ │ │ ├── ogg_stream_check.html │ │ │ ├── ogg_stream_clear.html │ │ │ ├── ogg_stream_destroy.html │ │ │ ├── ogg_stream_eos.html │ │ │ ├── ogg_stream_flush.html │ │ │ ├── ogg_stream_flush_fill.html │ │ │ ├── ogg_stream_init.html │ │ │ ├── ogg_stream_iovecin.html │ │ │ ├── ogg_stream_packetin.html │ │ │ ├── ogg_stream_packetout.html │ │ │ ├── ogg_stream_packetpeek.html │ │ │ ├── ogg_stream_pagein.html │ │ │ ├── ogg_stream_pageout.html │ │ │ ├── ogg_stream_pageout_fill.html │ │ │ ├── ogg_stream_reset.html │ │ │ ├── ogg_stream_reset_serialno.html │ │ │ ├── ogg_stream_state.html │ │ │ ├── ogg_sync_buffer.html │ │ │ ├── ogg_sync_check.html │ │ │ ├── ogg_sync_clear.html │ │ │ ├── ogg_sync_destroy.html │ │ │ ├── ogg_sync_init.html │ │ │ ├── ogg_sync_pageout.html │ │ │ ├── ogg_sync_pageseek.html │ │ │ ├── ogg_sync_reset.html │ │ │ ├── ogg_sync_state.html │ │ │ ├── ogg_sync_wrote.html │ │ │ ├── oggpack_adv.html │ │ │ ├── oggpack_adv1.html │ │ │ ├── oggpack_bits.html │ │ │ ├── oggpack_buffer.html │ │ │ ├── oggpack_bytes.html │ │ │ ├── oggpack_get_buffer.html │ │ │ ├── oggpack_look.html │ │ │ ├── oggpack_look1.html │ │ │ ├── oggpack_read.html │ │ │ ├── oggpack_read1.html │ │ │ ├── oggpack_readinit.html │ │ │ ├── oggpack_reset.html │ │ │ ├── oggpack_write.html │ │ │ ├── oggpack_writealign.html │ │ │ ├── oggpack_writecheck.html │ │ │ ├── oggpack_writeclear.html │ │ │ ├── oggpack_writecopy.html │ │ │ ├── oggpack_writeinit.html │ │ │ ├── oggpack_writetrunc.html │ │ │ ├── overview.html │ │ │ ├── reference.html │ │ │ └── style.css │ │ ├── multiplex1.png │ │ ├── ogg-multiplex.html │ │ ├── oggstream.html │ │ ├── packets.png │ │ ├── pages.png │ │ ├── rfc3533.txt │ │ ├── rfc5334.txt │ │ ├── skeleton.html │ │ ├── stream.png │ │ ├── vorbisword2.png │ │ ├── white-ogg.png │ │ └── white-xifish.png │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── ogg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── config_types.h.in │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ ├── install-sh │ │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ │ ├── 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 ├── libvorbis │ ├── libvorbis-1.3.4 │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── 01-introduction.tex │ │ │ ├── 02-bitpacking.tex │ │ │ ├── 03-codebook.tex │ │ │ ├── 04-codec.tex │ │ │ ├── 05-comment.tex │ │ │ ├── 06-floor0.tex │ │ │ ├── 07-floor1.tex │ │ │ ├── 08-residue.tex │ │ │ ├── 09-helper.tex │ │ │ ├── 10-tables.tex │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Vorbis_I_spec.cfg │ │ │ ├── Vorbis_I_spec.css │ │ │ ├── Vorbis_I_spec.html │ │ │ ├── Vorbis_I_spec.pdf │ │ │ ├── Vorbis_I_spec.tex │ │ │ ├── a1-encapsulation-ogg.tex │ │ │ ├── a2-encapsulation-rtp.tex │ │ │ ├── components.png │ │ │ ├── eightphase.png │ │ │ ├── evenlsp.png │ │ │ ├── fish_xiph_org.png │ │ │ ├── floor1-1.png │ │ │ ├── floor1-2.png │ │ │ ├── floor1-3.png │ │ │ ├── floor1-4.png │ │ │ ├── floor1_inverse_dB_table.html │ │ │ ├── floorval.png │ │ │ ├── footer.tex │ │ │ ├── fourphase.png │ │ │ ├── framing.html │ │ │ ├── helper.html │ │ │ ├── hufftree-under.png │ │ │ ├── hufftree.png │ │ │ ├── index.html │ │ │ ├── libvorbis │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── index.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ ├── return.html │ │ │ │ ├── style.css │ │ │ │ ├── vorbis_analysis.html │ │ │ │ ├── vorbis_analysis_blockout.html │ │ │ │ ├── vorbis_analysis_buffer.html │ │ │ │ ├── vorbis_analysis_headerout.html │ │ │ │ ├── vorbis_analysis_init.html │ │ │ │ ├── vorbis_analysis_wrote.html │ │ │ │ ├── vorbis_bitrate_addblock.html │ │ │ │ ├── vorbis_bitrate_flushpacket.html │ │ │ │ ├── vorbis_block.html │ │ │ │ ├── vorbis_block_clear.html │ │ │ │ ├── vorbis_block_init.html │ │ │ │ ├── vorbis_comment.html │ │ │ │ ├── vorbis_comment_add.html │ │ │ │ ├── vorbis_comment_add_tag.html │ │ │ │ ├── vorbis_comment_clear.html │ │ │ │ ├── vorbis_comment_init.html │ │ │ │ ├── vorbis_comment_query.html │ │ │ │ ├── vorbis_comment_query_count.html │ │ │ │ ├── vorbis_commentheader_out.html │ │ │ │ ├── vorbis_dsp_clear.html │ │ │ │ ├── vorbis_dsp_state.html │ │ │ │ ├── vorbis_granule_time.html │ │ │ │ ├── vorbis_info.html │ │ │ │ ├── vorbis_info_blocksize.html │ │ │ │ ├── vorbis_info_clear.html │ │ │ │ ├── vorbis_info_init.html │ │ │ │ ├── vorbis_packet_blocksize.html │ │ │ │ ├── vorbis_synthesis.html │ │ │ │ ├── vorbis_synthesis_blockin.html │ │ │ │ ├── vorbis_synthesis_halfrate.html │ │ │ │ ├── vorbis_synthesis_halfrate_p.html │ │ │ │ ├── vorbis_synthesis_headerin.html │ │ │ │ ├── vorbis_synthesis_idheader.html │ │ │ │ ├── vorbis_synthesis_init.html │ │ │ │ ├── vorbis_synthesis_lapout.html │ │ │ │ ├── vorbis_synthesis_pcmout.html │ │ │ │ ├── vorbis_synthesis_read.html │ │ │ │ ├── vorbis_synthesis_restart.html │ │ │ │ ├── vorbis_synthesis_trackonly.html │ │ │ │ └── vorbis_version_string.html │ │ │ ├── lspmap.png │ │ │ ├── oddlsp.png │ │ │ ├── oggstream.html │ │ │ ├── programming.html │ │ │ ├── residue-pack.png │ │ │ ├── residue2.png │ │ │ ├── rfc5215.txt │ │ │ ├── rfc5215.xml │ │ │ ├── squarepolar.png │ │ │ ├── stereo.html │ │ │ ├── stream.png │ │ │ ├── v-comment.html │ │ │ ├── vorbis-clip.txt │ │ │ ├── vorbis-errors.txt │ │ │ ├── vorbis-fidelity.html │ │ │ ├── vorbis.html │ │ │ ├── vorbisenc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── changes.html │ │ │ │ ├── examples.html │ │ │ │ ├── index.html │ │ │ │ ├── ovectl_ratemanage2_arg.html │ │ │ │ ├── ovectl_ratemanage_arg.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ ├── style.css │ │ │ │ ├── vorbis_encode_ctl.html │ │ │ │ ├── vorbis_encode_init.html │ │ │ │ ├── vorbis_encode_init_vbr.html │ │ │ │ ├── vorbis_encode_setup_init.html │ │ │ │ ├── vorbis_encode_setup_managed.html │ │ │ │ └── vorbis_encode_setup_vbr.html │ │ │ ├── vorbisfile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── OggVorbis_File.html │ │ │ │ ├── callbacks.html │ │ │ │ ├── chaining_example_c.html │ │ │ │ ├── chainingexample.html │ │ │ │ ├── crosslap.html │ │ │ │ ├── datastructures.html │ │ │ │ ├── decoding.html │ │ │ │ ├── example.html │ │ │ │ ├── exampleindex.html │ │ │ │ ├── fileinfo.html │ │ │ │ ├── index.html │ │ │ │ ├── initialization.html │ │ │ │ ├── ov_bitrate.html │ │ │ │ ├── ov_bitrate_instant.html │ │ │ │ ├── ov_callbacks.html │ │ │ │ ├── ov_clear.html │ │ │ │ ├── ov_comment.html │ │ │ │ ├── ov_crosslap.html │ │ │ │ ├── ov_fopen.html │ │ │ │ ├── ov_info.html │ │ │ │ ├── ov_open.html │ │ │ │ ├── ov_open_callbacks.html │ │ │ │ ├── ov_pcm_seek.html │ │ │ │ ├── ov_pcm_seek_lap.html │ │ │ │ ├── ov_pcm_seek_page.html │ │ │ │ ├── ov_pcm_seek_page_lap.html │ │ │ │ ├── ov_pcm_tell.html │ │ │ │ ├── ov_pcm_total.html │ │ │ │ ├── ov_raw_seek.html │ │ │ │ ├── ov_raw_seek_lap.html │ │ │ │ ├── ov_raw_tell.html │ │ │ │ ├── ov_raw_total.html │ │ │ │ ├── ov_read.html │ │ │ │ ├── ov_read_filter.html │ │ │ │ ├── ov_read_float.html │ │ │ │ ├── ov_seekable.html │ │ │ │ ├── ov_serialnumber.html │ │ │ │ ├── ov_streams.html │ │ │ │ ├── ov_test.html │ │ │ │ ├── ov_test_callbacks.html │ │ │ │ ├── ov_test_open.html │ │ │ │ ├── ov_time_seek.html │ │ │ │ ├── ov_time_seek_lap.html │ │ │ │ ├── ov_time_seek_page.html │ │ │ │ ├── ov_time_seek_page_lap.html │ │ │ │ ├── ov_time_tell.html │ │ │ │ ├── ov_time_total.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ ├── seekexample.html │ │ │ │ ├── seeking.html │ │ │ │ ├── seeking_example_c.html │ │ │ │ ├── seeking_test_c.html │ │ │ │ ├── seekingexample.html │ │ │ │ ├── style.css │ │ │ │ ├── threads.html │ │ │ │ └── vorbisfile_example_c.html │ │ │ ├── vorbisword2.png │ │ │ ├── wait.png │ │ │ ├── white-xifish.png │ │ │ ├── window1.png │ │ │ ├── window2.png │ │ │ └── xifish.pdf │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── chaining_example.c │ │ │ ├── decoder_example.c │ │ │ ├── encoder_example.c │ │ │ ├── frameview.pl │ │ │ ├── seeking_example.c │ │ │ └── vorbisfile_example.c │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── vorbis │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ ├── install-sh │ │ ├── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── analysis.c │ │ │ ├── backends.h │ │ │ ├── barkmel.c │ │ │ ├── bitrate.c │ │ │ ├── bitrate.h │ │ │ ├── block.c │ │ │ ├── books │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── coupled │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ └── res_books_stereo.h │ │ │ │ ├── floor │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── floor_books.h │ │ │ │ └── uncoupled │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── res_books_uncoupled.h │ │ │ ├── codebook.c │ │ │ ├── codebook.h │ │ │ ├── codec_internal.h │ │ │ ├── envelope.c │ │ │ ├── envelope.h │ │ │ ├── floor0.c │ │ │ ├── floor1.c │ │ │ ├── highlevel.h │ │ │ ├── info.c │ │ │ ├── lookup.c │ │ │ ├── lookup.h │ │ │ ├── lookup_data.h │ │ │ ├── lookups.pl │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── mapping0.c │ │ │ ├── masking.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── misc.h │ │ │ ├── modes │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── floor_all.h │ │ │ │ ├── psych_11.h │ │ │ │ ├── psych_16.h │ │ │ │ ├── psych_44.h │ │ │ │ ├── psych_8.h │ │ │ │ ├── residue_16.h │ │ │ │ ├── residue_44.h │ │ │ │ ├── residue_44p51.h │ │ │ │ ├── residue_44u.h │ │ │ │ ├── residue_8.h │ │ │ │ ├── setup_11.h │ │ │ │ ├── setup_16.h │ │ │ │ ├── setup_22.h │ │ │ │ ├── setup_32.h │ │ │ │ ├── setup_44.h │ │ │ │ ├── setup_44p51.h │ │ │ │ ├── setup_44u.h │ │ │ │ ├── setup_8.h │ │ │ │ └── setup_X.h │ │ │ ├── os.h │ │ │ ├── psy.c │ │ │ ├── psy.h │ │ │ ├── psytune.c │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── res0.c │ │ │ ├── scales.h │ │ │ ├── sharedbook.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── synthesis.c │ │ │ ├── tone.c │ │ │ ├── vorbisenc.c │ │ │ ├── vorbisfile.c │ │ │ ├── window.c │ │ │ └── window.h │ │ ├── libvorbis.spec │ │ ├── libvorbis.spec.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── add_cflags.m4 │ │ │ ├── ogg.m4 │ │ │ └── pkg.m4 │ │ ├── macos │ │ │ ├── compat │ │ │ │ ├── strdup.c │ │ │ │ └── sys │ │ │ │ │ └── types.h │ │ │ ├── decoder_example.mcp │ │ │ ├── encoder_example.mcp │ │ │ ├── libvorbis.mcp │ │ │ ├── libvorbis.mcp.exp │ │ │ ├── libvorbisenc.mcp │ │ │ ├── libvorbisenc.mcp.exp │ │ │ ├── libvorbisfile.mcp │ │ │ ├── libvorbisfile.mcp.exp │ │ │ └── vorbis.mcp │ │ ├── macosx │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ └── Vorbis.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── missing │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ ├── config.h │ │ │ └── vorbis.mmp │ │ ├── test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test.c │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── write_read.c │ │ │ └── write_read.h │ │ ├── todo.txt │ │ ├── vorbis-uninstalled.pc.in │ │ ├── vorbis.m4 │ │ ├── vorbis.pc.in │ │ ├── vorbisenc-uninstalled.pc.in │ │ ├── vorbisenc.pc.in │ │ ├── vorbisfile-uninstalled.pc.in │ │ ├── vorbisfile.pc.in │ │ ├── vq │ │ │ ├── 16.vqs │ │ │ ├── 16u.vqs │ │ │ ├── 44c-1.vqs │ │ │ ├── 44c0.vqs │ │ │ ├── 44c1.vqs │ │ │ ├── 44c2.vqs │ │ │ ├── 44c3.vqs │ │ │ ├── 44c4.vqs │ │ │ ├── 44c5.vqs │ │ │ ├── 44c6.vqs │ │ │ ├── 44c7.vqs │ │ │ ├── 44c8.vqs │ │ │ ├── 44c9.vqs │ │ │ ├── 44p-1.vqs │ │ │ ├── 44p0.vqs │ │ │ ├── 44p1.vqs │ │ │ ├── 44p2.vqs │ │ │ ├── 44p3.vqs │ │ │ ├── 44p4.vqs │ │ │ ├── 44p5.vqs │ │ │ ├── 44p6.vqs │ │ │ ├── 44p7.vqs │ │ │ ├── 44p8.vqs │ │ │ ├── 44p9.vqs │ │ │ ├── 44u0.vqs │ │ │ ├── 44u1.vqs │ │ │ ├── 44u2.vqs │ │ │ ├── 44u3.vqs │ │ │ ├── 44u4.vqs │ │ │ ├── 44u5.vqs │ │ │ ├── 44u6.vqs │ │ │ ├── 44u7.vqs │ │ │ ├── 44u8.vqs │ │ │ ├── 44u9.vqs │ │ │ ├── 8.vqs │ │ │ ├── 8u.vqs │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bookutil.c │ │ │ ├── bookutil.h │ │ │ ├── distribution.c │ │ │ ├── floor_11.vqs │ │ │ ├── floor_22.vqs │ │ │ ├── floor_44.vqs │ │ │ ├── huffbuild.c │ │ │ ├── latticebuild.c │ │ │ ├── latticetune.c │ │ │ ├── localcodebook.h │ │ │ ├── make_floor_books.pl │ │ │ ├── make_residue_books.pl │ │ │ ├── metrics.c │ │ │ ├── vqgen.c │ │ │ └── vqgen.h │ │ └── win32 │ │ │ ├── VS2005 │ │ │ ├── README │ │ │ ├── libogg.vsprops │ │ │ ├── libvorbis │ │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ │ └── libvorbis_static.vcproj │ │ │ ├── libvorbisfile │ │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ │ └── libvorbisfile_static.vcproj │ │ │ ├── vorbis_dynamic.sln │ │ │ ├── vorbis_static.sln │ │ │ ├── vorbisdec │ │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ │ └── vorbisdec_static.vcproj │ │ │ └── vorbisenc │ │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ │ └── vorbisenc_static.vcproj │ │ │ ├── VS2008 │ │ │ ├── README │ │ │ ├── libogg.vsprops │ │ │ ├── libvorbis │ │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ │ └── libvorbis_static.vcproj │ │ │ ├── libvorbisfile │ │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ │ └── libvorbisfile_static.vcproj │ │ │ ├── vorbis_dynamic.sln │ │ │ ├── vorbis_static.sln │ │ │ ├── vorbisdec │ │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ │ └── vorbisdec_static.vcproj │ │ │ └── vorbisenc │ │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ │ └── vorbisenc_static.vcproj │ │ │ └── VS2010 │ │ │ ├── README │ │ │ ├── libogg.props │ │ │ ├── libvorbis │ │ │ ├── libvorbis_dynamic.vcxproj │ │ │ └── libvorbis_static.vcxproj │ │ │ ├── libvorbisfile │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ └── libvorbisfile_static.vcxproj │ │ │ ├── vorbis_dynamic.sln │ │ │ ├── vorbis_static.sln │ │ │ ├── vorbisdec │ │ │ ├── vorbisdec_dynamic.vcxproj │ │ │ └── vorbisdec_static.vcxproj │ │ │ └── vorbisenc │ │ │ ├── vorbisenc_dynamic.vcxproj │ │ │ └── vorbisenc_static.vcxproj │ └── libvorbis-1.3.5 │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ ├── 01-introduction.tex │ │ ├── 02-bitpacking.tex │ │ ├── 03-codebook.tex │ │ ├── 04-codec.tex │ │ ├── 05-comment.tex │ │ ├── 06-floor0.tex │ │ ├── 07-floor1.tex │ │ ├── 08-residue.tex │ │ ├── 09-helper.tex │ │ ├── 10-tables.tex │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Vorbis_I_spec.cfg │ │ ├── Vorbis_I_spec.css │ │ ├── Vorbis_I_spec.html │ │ ├── Vorbis_I_spec.pdf │ │ ├── Vorbis_I_spec.tex │ │ ├── a1-encapsulation-ogg.tex │ │ ├── a2-encapsulation-rtp.tex │ │ ├── components.png │ │ ├── eightphase.png │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── window1.png │ │ └── window2.png │ │ ├── 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 ├── openal │ ├── openal-soft-1.12.854 │ │ ├── Alc │ │ │ ├── ALc.c │ │ │ ├── ALu.c │ │ │ ├── alcConfig.c │ │ │ ├── alcEcho.c │ │ │ ├── alcReverb.c │ │ │ ├── alcRing.c │ │ │ ├── alcThread.c │ │ │ ├── alsa.c │ │ │ ├── bs2b.c │ │ │ ├── dsound.c │ │ │ ├── oss.c │ │ │ ├── portaudio.c │ │ │ ├── pulseaudio.c │ │ │ ├── solaris.c │ │ │ ├── wave.c │ │ │ └── winmm.c │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── OpenAL32 │ │ │ ├── Include │ │ │ │ ├── alAuxEffectSlot.h │ │ │ │ ├── alBuffer.h │ │ │ │ ├── alDatabuffer.h │ │ │ │ ├── alEffect.h │ │ │ │ ├── alError.h │ │ │ │ ├── alFilter.h │ │ │ │ ├── alListener.h │ │ │ │ ├── alMain.h │ │ │ │ ├── alSource.h │ │ │ │ ├── alState.h │ │ │ │ ├── alThunk.h │ │ │ │ ├── alu.h │ │ │ │ └── bs2b.h │ │ │ ├── alAuxEffectSlot.c │ │ │ ├── alBuffer.c │ │ │ ├── alDatabuffer.c │ │ │ ├── alEffect.c │ │ │ ├── alError.c │ │ │ ├── alExtension.c │ │ │ ├── alFilter.c │ │ │ ├── alListener.c │ │ │ ├── alSource.c │ │ │ ├── alState.c │ │ │ └── alThunk.c │ │ ├── README │ │ ├── XCompile.txt │ │ ├── alsoftrc.sample │ │ ├── cmake │ │ │ ├── CheckCCompilerFlag.cmake │ │ │ ├── CheckSharedFunctionExists.c │ │ │ └── CheckSharedLibraryExists.cmake │ │ ├── config.h.in │ │ ├── examples │ │ │ └── openal-info.c │ │ ├── include │ │ │ └── AL │ │ │ │ ├── al.h │ │ │ │ ├── alc.h │ │ │ │ ├── alext.h │ │ │ │ └── efx.h │ │ └── openal.pc.in │ └── openal-soft-apportable │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── OpenAL │ │ │ ├── Alc │ │ │ │ ├── ALc.c │ │ │ │ ├── ALu.c │ │ │ │ ├── alcConfig.c │ │ │ │ ├── alcEcho.c │ │ │ │ ├── alcModulator.c │ │ │ │ ├── alcReverb.c │ │ │ │ ├── alcRing.c │ │ │ │ ├── alcThread.c │ │ │ │ ├── alsa.c │ │ │ │ ├── android.c │ │ │ │ ├── apportable_openal_funcs.h │ │ │ │ ├── audiotrack.c │ │ │ │ ├── audiotrack.m │ │ │ │ ├── bs2b.c │ │ │ │ ├── dsound.c │ │ │ │ ├── mixer.c │ │ │ │ ├── null.c │ │ │ │ ├── opensles.c │ │ │ │ ├── oss.c │ │ │ │ ├── panning.c │ │ │ │ ├── portaudio.c │ │ │ │ ├── pulseaudio.c │ │ │ │ ├── solaris.c │ │ │ │ ├── wave.c │ │ │ │ └── winmm.c │ │ │ ├── Makefile │ │ │ ├── OpenAL32 │ │ │ │ ├── Include │ │ │ │ │ ├── alAuxEffectSlot.h │ │ │ │ │ ├── alBuffer.h │ │ │ │ │ ├── alDatabuffer.h │ │ │ │ │ ├── alEffect.h │ │ │ │ │ ├── alError.h │ │ │ │ │ ├── alFilter.h │ │ │ │ │ ├── alListener.h │ │ │ │ │ ├── alMain.h │ │ │ │ │ ├── alSource.h │ │ │ │ │ ├── alState.h │ │ │ │ │ ├── alThunk.h │ │ │ │ │ ├── alu.h │ │ │ │ │ └── bs2b.h │ │ │ │ ├── alAuxEffectSlot.c │ │ │ │ ├── alBuffer.c │ │ │ │ ├── alDatabuffer.c │ │ │ │ ├── alEffect.c │ │ │ │ ├── alError.c │ │ │ │ ├── alExtension.c │ │ │ │ ├── alFilter.c │ │ │ │ ├── alListener.c │ │ │ │ ├── alSource.c │ │ │ │ ├── alState.c │ │ │ │ └── alThunk.c │ │ │ ├── al.h │ │ │ ├── alc.h │ │ │ ├── build.mk │ │ │ ├── include │ │ │ │ ├── AL │ │ │ │ │ ├── al.h │ │ │ │ │ ├── alc.h │ │ │ │ │ ├── alext.h │ │ │ │ │ ├── efx-creative.h │ │ │ │ │ ├── efx.h │ │ │ │ │ ├── oalMacOSX_OALExtensions.h │ │ │ │ │ └── oalStaticBufferExtension.h │ │ │ │ └── config.h │ │ │ └── oalStaticBufferExtension.h │ │ └── fixup_assembly.pl │ │ ├── lib_origin.txt │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ │ └── src │ │ └── com │ │ └── apportable │ │ └── openal_soft │ │ └── openal_soft.java ├── patches_irrlicht │ └── Patches_v1_2 │ │ ├── arg_unused.patch │ │ ├── bmp_writer.patch │ │ ├── bugfix_d3d_texturestage.patch │ │ ├── bugfix_node_triangleselector.patch │ │ ├── bugfix_ogl_stencilrenderbuffer.patch │ │ ├── bugfix_sceneuserdataserializer.patch │ │ ├── button_images.patch │ │ ├── clearpendingevents.patch │ │ ├── compileflags.patch │ │ ├── constification.patch │ │ ├── dds_and_compressed.patch │ │ ├── devicelinux_initdisplay.patch │ │ ├── devicelinux_mode.patch │ │ ├── devicelinux_nowindow.patch │ │ ├── devicelinux_resizable.patch │ │ ├── devicestub_dropvideolater.patch │ │ ├── devicestub_init.patch │ │ ├── devicewindows_consumequit.patch │ │ ├── devicewindows_initmode.patch │ │ ├── editbox_charfilter.patch │ │ ├── elementfrompoint.patch │ │ ├── filesystem.patch │ │ ├── focus.patch │ │ ├── gl_drawimage2d.patch │ │ ├── gl_speed_lessflush.patch │ │ ├── gl_speed_nocolor.patch │ │ ├── gl_texturestage.patch │ │ ├── gltex_16bit.patch │ │ ├── guimenu_fontpointercheck.patch │ │ ├── hack_dropimagedataimmediatly.patch │ │ ├── image_hideright.patch │ │ ├── list_copyinit.patch │ │ ├── listbox.patch │ │ ├── logmessages.patch │ │ ├── matrix_fastcopy.patch │ │ ├── meshmanipulator.patch │ │ ├── node_translate.patch │ │ ├── node_updateabspos.patch │ │ ├── octreescenenode.patch │ │ ├── octreescenenodetriangleselector.patch │ │ ├── particles.patch │ │ ├── patches.txt │ │ ├── poly_sorting.patch │ │ ├── profile_blocks.patch │ │ ├── profiler.patch │ │ ├── quaternion_wrecking.patch │ │ ├── remove_event.patch │ │ ├── resident_textures.patch │ │ ├── sceneman_dropdriverlater.patch │ │ ├── sceneman_noambient.patch │ │ ├── sceneman_sortbycamdist.patch │ │ ├── screensaver.patch │ │ ├── skybox.patch │ │ ├── slider_spinbox.patch │ │ ├── statictext_hcenter.patch │ │ ├── unicode_keys.patch │ │ ├── unknown_probably_ignore.patch │ │ ├── vbo.patch │ │ ├── vsync_frequency.patch │ │ ├── xanimation.patch │ │ ├── xmaterial.patch │ │ └── xpath.patch ├── sdl │ └── SDL-1.2.15 │ │ ├── BUGS │ │ ├── Borland.html │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── CWprojects.sea.bin │ │ ├── INSTALL │ │ ├── MPWmake.sea.bin │ │ ├── Makefile.dc │ │ ├── Makefile.in │ │ ├── Makefile.minimal │ │ ├── README │ │ ├── README-SDL.txt │ │ ├── README.AmigaOS │ │ ├── README.BeOS │ │ ├── README.DC │ │ ├── README.HG │ │ ├── README.MacOS │ │ ├── README.MacOSX │ │ ├── README.MiNT │ │ ├── README.NDS │ │ ├── README.NanoX │ │ ├── README.OS2 │ │ ├── README.PS3 │ │ ├── README.PicoGUI │ │ ├── README.Porting │ │ ├── README.QNX │ │ ├── README.Qtopia │ │ ├── README.RISCOS │ │ ├── README.Symbian │ │ ├── README.Watcom │ │ ├── README.WinCE │ │ ├── README.wscons │ │ ├── SDL.qpg.in │ │ ├── SDL.spec │ │ ├── SDL.spec.in │ │ ├── TODO │ │ ├── VisualC.html │ │ ├── WhatsNew │ │ ├── acinclude │ │ ├── alsa.m4 │ │ ├── esd.m4 │ │ ├── libtool.m4 │ │ ├── ltdl.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ │ ├── autogen.sh │ │ ├── build-scripts │ │ ├── config.guess │ │ ├── config.sub │ │ ├── fatbuild.sh │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── makedep.sh │ │ ├── mkinstalldirs │ │ └── strip_fPIC.sh │ │ ├── configure │ │ ├── configure.in │ │ ├── docs.html │ │ ├── include │ │ ├── SDL.h │ │ ├── SDL_active.h │ │ ├── SDL_audio.h │ │ ├── SDL_byteorder.h │ │ ├── SDL_cdrom.h │ │ ├── SDL_config.h.default │ │ ├── SDL_config.h.in │ │ ├── SDL_config_dreamcast.h │ │ ├── SDL_config_macos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_nds.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_symbian.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_getenv.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_platform.h │ │ ├── SDL_quit.h │ │ ├── SDL_rwops.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ ├── close_code.h │ │ └── doxyfile │ │ ├── sdl-config.in │ │ ├── sdl.m4 │ │ ├── sdl.pc.in │ │ └── src │ │ ├── SDL.c │ │ ├── SDL_error.c │ │ ├── SDL_error_c.h │ │ ├── SDL_fatal.c │ │ ├── SDL_fatal.h │ │ ├── audio │ │ ├── SDL_audio.c │ │ ├── SDL_audio_c.h │ │ ├── SDL_audiocvt.c │ │ ├── SDL_audiodev.c │ │ ├── SDL_audiodev_c.h │ │ ├── SDL_audiomem.h │ │ ├── SDL_mixer.c │ │ ├── SDL_mixer_MMX.c │ │ ├── SDL_mixer_MMX.h │ │ ├── SDL_mixer_MMX_VC.c │ │ ├── SDL_mixer_MMX_VC.h │ │ ├── SDL_mixer_m68k.c │ │ ├── SDL_mixer_m68k.h │ │ ├── SDL_sysaudio.h │ │ ├── SDL_wave.c │ │ ├── SDL_wave.h │ │ ├── alsa │ │ │ ├── SDL_alsa_audio.c │ │ │ └── SDL_alsa_audio.h │ │ ├── arts │ │ │ ├── SDL_artsaudio.c │ │ │ └── SDL_artsaudio.h │ │ ├── baudio │ │ │ ├── SDL_beaudio.cc │ │ │ └── SDL_beaudio.h │ │ ├── bsd │ │ │ ├── SDL_bsdaudio.c │ │ │ └── SDL_bsdaudio.h │ │ ├── dart │ │ │ ├── SDL_dart.c │ │ │ └── SDL_dart.h │ │ ├── dc │ │ │ ├── SDL_dcaudio.c │ │ │ ├── SDL_dcaudio.h │ │ │ ├── aica.c │ │ │ └── aica.h │ │ ├── disk │ │ │ ├── SDL_diskaudio.c │ │ │ └── SDL_diskaudio.h │ │ ├── dma │ │ │ ├── SDL_dmaaudio.c │ │ │ └── SDL_dmaaudio.h │ │ ├── dmedia │ │ │ ├── SDL_irixaudio.c │ │ │ └── SDL_irixaudio.h │ │ ├── dsp │ │ │ ├── SDL_dspaudio.c │ │ │ └── SDL_dspaudio.h │ │ ├── dummy │ │ │ ├── SDL_dummyaudio.c │ │ │ └── SDL_dummyaudio.h │ │ ├── esd │ │ │ ├── SDL_esdaudio.c │ │ │ └── SDL_esdaudio.h │ │ ├── macosx │ │ │ ├── SDL_coreaudio.c │ │ │ └── SDL_coreaudio.h │ │ ├── macrom │ │ │ ├── SDL_romaudio.c │ │ │ └── SDL_romaudio.h │ │ ├── mint │ │ │ ├── SDL_mintaudio.c │ │ │ ├── SDL_mintaudio.h │ │ │ ├── SDL_mintaudio_dma8.c │ │ │ ├── SDL_mintaudio_dma8.h │ │ │ ├── SDL_mintaudio_gsxb.c │ │ │ ├── SDL_mintaudio_gsxb.h │ │ │ ├── SDL_mintaudio_it.S │ │ │ ├── SDL_mintaudio_mcsn.c │ │ │ ├── SDL_mintaudio_mcsn.h │ │ │ ├── SDL_mintaudio_stfa.c │ │ │ ├── SDL_mintaudio_stfa.h │ │ │ └── SDL_mintaudio_xbios.c │ │ ├── mme │ │ │ ├── SDL_mmeaudio.c │ │ │ └── SDL_mmeaudio.h │ │ ├── nas │ │ │ ├── SDL_nasaudio.c │ │ │ └── SDL_nasaudio.h │ │ ├── nds │ │ │ ├── SDL_ndsaudio.c │ │ │ ├── SDL_ndsaudio.h │ │ │ ├── sound9.c │ │ │ └── soundcommon.h │ │ ├── nto │ │ │ ├── SDL_nto_audio.c │ │ │ └── SDL_nto_audio.h │ │ ├── paudio │ │ │ ├── SDL_paudio.c │ │ │ └── SDL_paudio.h │ │ ├── pulse │ │ │ ├── SDL_pulseaudio.c │ │ │ └── SDL_pulseaudio.h │ │ ├── sun │ │ │ ├── SDL_sunaudio.c │ │ │ └── SDL_sunaudio.h │ │ ├── symbian │ │ │ ├── SDL_epocaudio.cpp │ │ │ ├── SDL_epocaudio.h │ │ │ ├── streamplayer.cpp │ │ │ └── streamplayer.h │ │ ├── ums │ │ │ ├── SDL_umsaudio.c │ │ │ └── SDL_umsaudio.h │ │ ├── windib │ │ │ ├── SDL_dibaudio.c │ │ │ └── SDL_dibaudio.h │ │ └── windx5 │ │ │ ├── SDL_dx5audio.c │ │ │ ├── SDL_dx5audio.h │ │ │ └── directx.h │ │ ├── cdrom │ │ ├── SDL_cdrom.c │ │ ├── SDL_syscdrom.h │ │ ├── aix │ │ │ └── SDL_syscdrom.c │ │ ├── beos │ │ │ └── SDL_syscdrom.cc │ │ ├── bsdi │ │ │ └── SDL_syscdrom.c │ │ ├── dc │ │ │ └── SDL_syscdrom.c │ │ ├── dummy │ │ │ └── SDL_syscdrom.c │ │ ├── freebsd │ │ │ └── SDL_syscdrom.c │ │ ├── linux │ │ │ └── SDL_syscdrom.c │ │ ├── macos │ │ │ ├── SDL_syscdrom.c │ │ │ └── SDL_syscdrom_c.h │ │ ├── macosx │ │ │ ├── AudioFilePlayer.c │ │ │ ├── AudioFilePlayer.h │ │ │ ├── AudioFileReaderThread.c │ │ │ ├── CDPlayer.c │ │ │ ├── CDPlayer.h │ │ │ ├── SDLOSXCAGuard.c │ │ │ ├── SDLOSXCAGuard.h │ │ │ ├── SDL_syscdrom.c │ │ │ └── SDL_syscdrom_c.h │ │ ├── mint │ │ │ └── SDL_syscdrom.c │ │ ├── openbsd │ │ │ └── SDL_syscdrom.c │ │ ├── os2 │ │ │ └── SDL_syscdrom.c │ │ ├── osf │ │ │ └── SDL_syscdrom.c │ │ ├── qnx │ │ │ └── SDL_syscdrom.c │ │ └── win32 │ │ │ └── SDL_syscdrom.c │ │ ├── cpuinfo │ │ └── SDL_cpuinfo.c │ │ ├── events │ │ ├── SDL_active.c │ │ ├── SDL_events.c │ │ ├── SDL_events_c.h │ │ ├── SDL_expose.c │ │ ├── SDL_keyboard.c │ │ ├── SDL_mouse.c │ │ ├── SDL_quit.c │ │ ├── SDL_resize.c │ │ └── SDL_sysevents.h │ │ ├── file │ │ └── SDL_rwops.c │ │ ├── hermes │ │ ├── COPYING.LIB │ │ ├── HeadMMX.h │ │ ├── HeadX86.h │ │ ├── README │ │ ├── common.inc │ │ ├── mmx_main.asm │ │ ├── mmxp2_32.asm │ │ ├── x86_main.asm │ │ ├── x86p_16.asm │ │ └── x86p_32.asm │ │ ├── joystick │ │ ├── SDL_joystick.c │ │ ├── SDL_joystick_c.h │ │ ├── SDL_sysjoystick.h │ │ ├── beos │ │ │ └── SDL_bejoystick.cc │ │ ├── bsd │ │ │ └── SDL_sysjoystick.c │ │ ├── darwin │ │ │ └── SDL_sysjoystick.c │ │ ├── dc │ │ │ └── SDL_sysjoystick.c │ │ ├── dummy │ │ │ └── SDL_sysjoystick.c │ │ ├── linux │ │ │ └── SDL_sysjoystick.c │ │ ├── macos │ │ │ └── SDL_sysjoystick.c │ │ ├── mint │ │ │ └── SDL_sysjoystick.c │ │ ├── nds │ │ │ └── SDL_sysjoystick.c │ │ ├── riscos │ │ │ └── SDL_sysjoystick.c │ │ └── win32 │ │ │ └── SDL_mmjoystick.c │ │ ├── loadso │ │ ├── beos │ │ │ └── SDL_sysloadso.c │ │ ├── dlopen │ │ │ └── SDL_sysloadso.c │ │ ├── dummy │ │ │ └── SDL_sysloadso.c │ │ ├── macos │ │ │ └── SDL_sysloadso.c │ │ ├── macosx │ │ │ └── SDL_dlcompat.c │ │ ├── mint │ │ │ └── SDL_sysloadso.c │ │ ├── os2 │ │ │ └── SDL_sysloadso.c │ │ └── win32 │ │ │ └── SDL_sysloadso.c │ │ ├── main │ │ ├── beos │ │ │ ├── SDL_BeApp.cc │ │ │ └── SDL_BeApp.h │ │ ├── dummy │ │ │ └── SDL_dummy_main.c │ │ ├── macos │ │ │ ├── SDL.r │ │ │ ├── SDL.shlib.r │ │ │ ├── SDL_main.c │ │ │ ├── SIZE.r │ │ │ └── exports │ │ │ │ ├── Makefile │ │ │ │ ├── SDL.x │ │ │ │ └── gendef.pl │ │ ├── macosx │ │ │ ├── Info.plist.in │ │ │ ├── SDLMain.h │ │ │ ├── SDLMain.m │ │ │ ├── SDLMain.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ └── info.nib │ │ ├── qtopia │ │ │ └── SDL_qtopia_main.cc │ │ ├── symbian │ │ │ ├── EKA1 │ │ │ │ └── SDL_main.cpp │ │ │ └── EKA2 │ │ │ │ ├── SDL_main.cpp │ │ │ │ ├── sdlexe.cpp │ │ │ │ ├── sdllib.cpp │ │ │ │ ├── vectorbuffer.cpp │ │ │ │ └── vectorbuffer.h │ │ └── win32 │ │ │ ├── SDL_win32_main.c │ │ │ └── version.rc │ │ ├── stdlib │ │ ├── SDL_getenv.c │ │ ├── SDL_iconv.c │ │ ├── SDL_malloc.c │ │ ├── SDL_qsort.c │ │ ├── SDL_stdlib.c │ │ └── SDL_string.c │ │ ├── thread │ │ ├── SDL_systhread.h │ │ ├── SDL_thread.c │ │ ├── SDL_thread_c.h │ │ ├── beos │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── dc │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_syscond_c.h │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_syssem_c.h │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── generic │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── irix │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── os2 │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_syscond_c.h │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── pth │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── pthread │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── riscos │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── symbian │ │ │ ├── SDL_sysmutex.cpp │ │ │ ├── SDL_syssem.cpp │ │ │ ├── SDL_systhread.cpp │ │ │ └── SDL_systhread_c.h │ │ └── win32 │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ ├── win_ce_semaphore.c │ │ │ └── win_ce_semaphore.h │ │ ├── timer │ │ ├── SDL_systimer.h │ │ ├── SDL_timer.c │ │ ├── SDL_timer_c.h │ │ ├── beos │ │ │ └── SDL_systimer.c │ │ ├── dc │ │ │ └── SDL_systimer.c │ │ ├── dummy │ │ │ └── SDL_systimer.c │ │ ├── macos │ │ │ ├── FastTimes.c │ │ │ ├── FastTimes.h │ │ │ ├── SDL_MPWtimer.c │ │ │ └── SDL_systimer.c │ │ ├── mint │ │ │ ├── SDL_systimer.c │ │ │ ├── SDL_vbltimer.S │ │ │ └── SDL_vbltimer_s.h │ │ ├── nds │ │ │ └── SDL_systimer.c │ │ ├── os2 │ │ │ └── SDL_systimer.c │ │ ├── riscos │ │ │ └── SDL_systimer.c │ │ ├── symbian │ │ │ └── SDL_systimer.cpp │ │ ├── unix │ │ │ └── SDL_systimer.c │ │ ├── win32 │ │ │ └── SDL_systimer.c │ │ └── wince │ │ │ └── SDL_systimer.c │ │ └── video │ │ ├── SDL_RLEaccel.c │ │ ├── SDL_RLEaccel_c.h │ │ ├── SDL_blit.c │ │ ├── SDL_blit.h │ │ ├── SDL_blit_0.c │ │ ├── SDL_blit_1.c │ │ ├── SDL_blit_A.c │ │ ├── SDL_blit_N.c │ │ ├── SDL_bmp.c │ │ ├── SDL_cursor.c │ │ ├── SDL_cursor_c.h │ │ ├── SDL_gamma.c │ │ ├── SDL_glfuncs.h │ │ ├── SDL_leaks.h │ │ ├── SDL_pixels.c │ │ ├── SDL_pixels_c.h │ │ ├── SDL_stretch.c │ │ ├── SDL_stretch_c.h │ │ ├── SDL_surface.c │ │ ├── SDL_sysvideo.h │ │ ├── SDL_video.c │ │ ├── SDL_yuv.c │ │ ├── SDL_yuv_mmx.c │ │ ├── SDL_yuv_sw.c │ │ ├── SDL_yuv_sw_c.h │ │ ├── SDL_yuvfuncs.h │ │ ├── Xext │ │ ├── README │ │ ├── XME │ │ │ └── xme.c │ │ ├── Xinerama │ │ │ └── Xinerama.c │ │ ├── Xv │ │ │ ├── Xv.c │ │ │ └── Xvlibint.h │ │ ├── Xxf86dga │ │ │ ├── XF86DGA.c │ │ │ └── XF86DGA2.c │ │ ├── Xxf86vm │ │ │ └── XF86VMode.c │ │ └── extensions │ │ │ ├── Xext.h │ │ │ ├── Xinerama.h │ │ │ ├── Xv.h │ │ │ ├── Xvlib.h │ │ │ ├── Xvproto.h │ │ │ ├── extutil.h │ │ │ ├── panoramiXext.h │ │ │ ├── panoramiXproto.h │ │ │ ├── xf86dga.h │ │ │ ├── xf86dga1.h │ │ │ ├── xf86dga1str.h │ │ │ ├── xf86dgastr.h │ │ │ ├── xf86vmode.h │ │ │ ├── xf86vmstr.h │ │ │ └── xme.h │ │ ├── aalib │ │ ├── SDL_aaevents.c │ │ ├── SDL_aaevents_c.h │ │ ├── SDL_aamouse.c │ │ ├── SDL_aamouse_c.h │ │ ├── SDL_aavideo.c │ │ └── SDL_aavideo.h │ │ ├── ataricommon │ │ ├── SDL_ataric2p.S │ │ ├── SDL_ataric2p_s.h │ │ ├── SDL_ataridevmouse.c │ │ ├── SDL_ataridevmouse_c.h │ │ ├── SDL_atarieddi.S │ │ ├── SDL_atarieddi_s.h │ │ ├── SDL_atarievents.c │ │ ├── SDL_atarievents_c.h │ │ ├── SDL_atarigl.c │ │ ├── SDL_atarigl_c.h │ │ ├── SDL_atarikeys.h │ │ ├── SDL_atarimxalloc.c │ │ ├── SDL_atarimxalloc_c.h │ │ ├── SDL_atarisuper.h │ │ ├── SDL_biosevents.c │ │ ├── SDL_biosevents_c.h │ │ ├── SDL_gemdosevents.c │ │ ├── SDL_gemdosevents_c.h │ │ ├── SDL_ikbdevents.c │ │ ├── SDL_ikbdevents_c.h │ │ ├── SDL_ikbdinterrupt.S │ │ ├── SDL_ikbdinterrupt_s.h │ │ ├── SDL_xbiosevents.c │ │ ├── SDL_xbiosevents_c.h │ │ ├── SDL_xbiosinterrupt.S │ │ └── SDL_xbiosinterrupt_s.h │ │ ├── blank_cursor.h │ │ ├── bwindow │ │ ├── SDL_BView.h │ │ ├── SDL_BWin.h │ │ ├── SDL_lowvideo.h │ │ ├── SDL_sysevents.cc │ │ ├── SDL_sysevents_c.h │ │ ├── SDL_sysmouse.cc │ │ ├── SDL_sysmouse_c.h │ │ ├── SDL_sysvideo.cc │ │ ├── SDL_syswm.cc │ │ ├── SDL_syswm_c.h │ │ ├── SDL_sysyuv.cc │ │ └── SDL_sysyuv.h │ │ ├── caca │ │ ├── SDL_cacaevents.c │ │ ├── SDL_cacaevents_c.h │ │ ├── SDL_cacavideo.c │ │ └── SDL_cacavideo.h │ │ ├── dc │ │ ├── SDL_dcevents.c │ │ ├── SDL_dcevents_c.h │ │ ├── SDL_dcmouse.c │ │ ├── SDL_dcmouse_c.h │ │ ├── SDL_dcvideo.c │ │ └── SDL_dcvideo.h │ │ ├── default_cursor.h │ │ ├── dga │ │ ├── SDL_dgaevents.c │ │ ├── SDL_dgaevents_c.h │ │ ├── SDL_dgamouse.c │ │ ├── SDL_dgamouse_c.h │ │ ├── SDL_dgavideo.c │ │ └── SDL_dgavideo.h │ │ ├── directfb │ │ ├── SDL_DirectFB_events.c │ │ ├── SDL_DirectFB_events.h │ │ ├── SDL_DirectFB_keys.h │ │ ├── SDL_DirectFB_video.c │ │ ├── SDL_DirectFB_video.h │ │ ├── SDL_DirectFB_yuv.c │ │ └── SDL_DirectFB_yuv.h │ │ ├── dummy │ │ ├── SDL_nullevents.c │ │ ├── SDL_nullevents_c.h │ │ ├── SDL_nullmouse.c │ │ ├── SDL_nullmouse_c.h │ │ ├── SDL_nullvideo.c │ │ └── SDL_nullvideo.h │ │ ├── e_log.h │ │ ├── e_pow.h │ │ ├── e_sqrt.h │ │ ├── fbcon │ │ ├── 3dfx_mmio.h │ │ ├── 3dfx_regs.h │ │ ├── SDL_fb3dfx.c │ │ ├── SDL_fb3dfx.h │ │ ├── SDL_fbelo.c │ │ ├── SDL_fbelo.h │ │ ├── SDL_fbevents.c │ │ ├── SDL_fbevents_c.h │ │ ├── SDL_fbkeys.h │ │ ├── SDL_fbmatrox.c │ │ ├── SDL_fbmatrox.h │ │ ├── SDL_fbmouse.c │ │ ├── SDL_fbmouse_c.h │ │ ├── SDL_fbriva.c │ │ ├── SDL_fbriva.h │ │ ├── SDL_fbvideo.c │ │ ├── SDL_fbvideo.h │ │ ├── matrox_mmio.h │ │ ├── matrox_regs.h │ │ ├── riva_mmio.h │ │ └── riva_regs.h │ │ ├── gapi │ │ ├── SDL_gapivideo.c │ │ └── SDL_gapivideo.h │ │ ├── gem │ │ ├── SDL_gemevents.c │ │ ├── SDL_gemevents_c.h │ │ ├── SDL_gemmouse.c │ │ ├── SDL_gemmouse_c.h │ │ ├── SDL_gemvideo.c │ │ ├── SDL_gemvideo.h │ │ ├── SDL_gemwm.c │ │ └── SDL_gemwm_c.h │ │ ├── ggi │ │ ├── SDL_ggievents.c │ │ ├── SDL_ggievents_c.h │ │ ├── SDL_ggikeys.h │ │ ├── SDL_ggimouse.c │ │ ├── SDL_ggimouse_c.h │ │ ├── SDL_ggivideo.c │ │ └── SDL_ggivideo.h │ │ ├── ipod │ │ ├── SDL_ipodvideo.c │ │ └── SDL_ipodvideo.h │ │ ├── maccommon │ │ ├── SDL_lowvideo.h │ │ ├── SDL_macevents.c │ │ ├── SDL_macevents_c.h │ │ ├── SDL_macgl.c │ │ ├── SDL_macgl_c.h │ │ ├── SDL_mackeys.h │ │ ├── SDL_macmouse.c │ │ ├── SDL_macmouse_c.h │ │ ├── SDL_macwm.c │ │ └── SDL_macwm_c.h │ │ ├── macdsp │ │ ├── SDL_dspvideo.c │ │ └── SDL_dspvideo.h │ │ ├── macrom │ │ ├── SDL_romvideo.c │ │ └── SDL_romvideo.h │ │ ├── math_private.h │ │ ├── mmx.h │ │ ├── nanox │ │ ├── SDL_nxevents.c │ │ ├── SDL_nxevents_c.h │ │ ├── SDL_nximage.c │ │ ├── SDL_nximage_c.h │ │ ├── SDL_nxmodes.c │ │ ├── SDL_nxmodes_c.h │ │ ├── SDL_nxmouse.c │ │ ├── SDL_nxmouse_c.h │ │ ├── SDL_nxvideo.c │ │ ├── SDL_nxvideo.h │ │ ├── SDL_nxwm.c │ │ └── SDL_nxwm_c.h │ │ ├── nds │ │ ├── SDL_ndsevents.c │ │ ├── SDL_ndsevents_c.h │ │ ├── SDL_ndsmouse.c │ │ ├── SDL_ndsmouse_c.h │ │ ├── SDL_ndsvideo.c │ │ └── SDL_ndsvideo.h │ │ ├── os2fslib │ │ ├── SDL_os2fslib.c │ │ ├── SDL_os2fslib.h │ │ └── SDL_vkeys.h │ │ ├── photon │ │ ├── SDL_ph_events.c │ │ ├── SDL_ph_events_c.h │ │ ├── SDL_ph_gl.c │ │ ├── SDL_ph_gl.h │ │ ├── SDL_ph_image.c │ │ ├── SDL_ph_image_c.h │ │ ├── SDL_ph_modes.c │ │ ├── SDL_ph_modes_c.h │ │ ├── SDL_ph_mouse.c │ │ ├── SDL_ph_mouse_c.h │ │ ├── SDL_ph_video.c │ │ ├── SDL_ph_video.h │ │ ├── SDL_ph_wm.c │ │ ├── SDL_ph_wm_c.h │ │ ├── SDL_phyuv.c │ │ └── SDL_phyuv_c.h │ │ ├── picogui │ │ ├── SDL_pgevents.c │ │ ├── SDL_pgevents_c.h │ │ ├── SDL_pgvideo.c │ │ └── SDL_pgvideo.h │ │ ├── ps2gs │ │ ├── SDL_gsevents.c │ │ ├── SDL_gsevents_c.h │ │ ├── SDL_gskeys.h │ │ ├── SDL_gsmouse.c │ │ ├── SDL_gsmouse_c.h │ │ ├── SDL_gsvideo.c │ │ ├── SDL_gsvideo.h │ │ ├── SDL_gsyuv.c │ │ └── SDL_gsyuv_c.h │ │ ├── ps3 │ │ ├── SDL_ps3events.c │ │ ├── SDL_ps3events_c.h │ │ ├── SDL_ps3video.c │ │ ├── SDL_ps3video.h │ │ ├── SDL_ps3yuv.c │ │ ├── SDL_ps3yuv_c.h │ │ └── spulibs │ │ │ ├── Makefile │ │ │ ├── bilin_scaler.c │ │ │ ├── fb_writer.c │ │ │ ├── spu_common.h │ │ │ └── yuv2rgb_converter.c │ │ ├── qtopia │ │ ├── SDL_QPEApp.cc │ │ ├── SDL_QPEApp.h │ │ ├── SDL_QWin.cc │ │ ├── SDL_QWin.h │ │ ├── SDL_lowvideo.h │ │ ├── SDL_sysevents.cc │ │ ├── SDL_sysevents_c.h │ │ ├── SDL_sysmouse.cc │ │ ├── SDL_sysmouse_c.h │ │ ├── SDL_sysvideo.cc │ │ ├── SDL_syswm.cc │ │ └── SDL_syswm_c.h │ │ ├── quartz │ │ ├── CGS.h │ │ ├── SDL_QuartzEvents.m │ │ ├── SDL_QuartzGL.m │ │ ├── SDL_QuartzKeys.h │ │ ├── SDL_QuartzVideo.h │ │ ├── SDL_QuartzVideo.m │ │ ├── SDL_QuartzWM.h │ │ ├── SDL_QuartzWM.m │ │ ├── SDL_QuartzWindow.h │ │ └── SDL_QuartzWindow.m │ │ ├── riscos │ │ ├── SDL_riscosASM.S │ │ ├── SDL_riscosFullScreenVideo.c │ │ ├── SDL_riscosevents.c │ │ ├── SDL_riscosevents_c.h │ │ ├── SDL_riscosmouse.c │ │ ├── SDL_riscosmouse_c.h │ │ ├── SDL_riscossprite.c │ │ ├── SDL_riscostask.c │ │ ├── SDL_riscostask.h │ │ ├── SDL_riscosvideo.c │ │ ├── SDL_riscosvideo.h │ │ ├── SDL_wimppoll.c │ │ └── SDL_wimpvideo.c │ │ ├── svga │ │ ├── SDL_svgaevents.c │ │ ├── SDL_svgaevents_c.h │ │ ├── SDL_svgamouse.c │ │ ├── SDL_svgamouse_c.h │ │ ├── SDL_svgavideo.c │ │ └── SDL_svgavideo.h │ │ ├── symbian │ │ ├── EKA1 │ │ │ ├── SDL_epocevents.cpp │ │ │ ├── SDL_epocvideo.cpp │ │ │ └── SDL_epocvideo.h │ │ ├── EKA2 │ │ │ ├── SDL_epocevents.cpp │ │ │ ├── SDL_epocvideo.cpp │ │ │ ├── SDL_epocvideo.h │ │ │ ├── dsa.cpp │ │ │ ├── dsa_new.cpp │ │ │ └── dsa_old.cpp │ │ └── SDL_epocevents_c.h │ │ ├── vgl │ │ ├── SDL_vglevents.c │ │ ├── SDL_vglevents_c.h │ │ ├── SDL_vglmouse.c │ │ ├── SDL_vglmouse_c.h │ │ ├── SDL_vglvideo.c │ │ └── SDL_vglvideo.h │ │ ├── wincommon │ │ ├── SDL_lowvideo.h │ │ ├── SDL_sysevents.c │ │ ├── SDL_sysmouse.c │ │ ├── SDL_sysmouse_c.h │ │ ├── SDL_syswm.c │ │ ├── SDL_syswm_c.h │ │ ├── SDL_wingl.c │ │ ├── SDL_wingl_c.h │ │ └── wmmsg.h │ │ ├── windib │ │ ├── SDL_dibevents.c │ │ ├── SDL_dibevents_c.h │ │ ├── SDL_dibvideo.c │ │ ├── SDL_dibvideo.h │ │ ├── SDL_gapidibvideo.h │ │ └── SDL_vkeys.h │ │ ├── windx5 │ │ ├── SDL_dx5events.c │ │ ├── SDL_dx5events_c.h │ │ ├── SDL_dx5video.c │ │ ├── SDL_dx5video.h │ │ ├── SDL_dx5yuv.c │ │ ├── SDL_dx5yuv_c.h │ │ └── directx.h │ │ ├── wscons │ │ ├── SDL_wsconsevents.c │ │ ├── SDL_wsconsevents_c.h │ │ ├── SDL_wsconsmouse.c │ │ ├── SDL_wsconsmouse_c.h │ │ ├── SDL_wsconsvideo.c │ │ └── SDL_wsconsvideo.h │ │ ├── x11 │ │ ├── SDL_x11dga.c │ │ ├── SDL_x11dga_c.h │ │ ├── SDL_x11dyn.c │ │ ├── SDL_x11dyn.h │ │ ├── SDL_x11events.c │ │ ├── SDL_x11events_c.h │ │ ├── SDL_x11gamma.c │ │ ├── SDL_x11gamma_c.h │ │ ├── SDL_x11gl.c │ │ ├── SDL_x11gl_c.h │ │ ├── SDL_x11image.c │ │ ├── SDL_x11image_c.h │ │ ├── SDL_x11modes.c │ │ ├── SDL_x11modes_c.h │ │ ├── SDL_x11mouse.c │ │ ├── SDL_x11mouse_c.h │ │ ├── SDL_x11sym.h │ │ ├── SDL_x11video.c │ │ ├── SDL_x11video.h │ │ ├── SDL_x11wm.c │ │ ├── SDL_x11wm_c.h │ │ ├── SDL_x11yuv.c │ │ └── SDL_x11yuv_c.h │ │ └── xbios │ │ ├── SDL_xbios.c │ │ ├── SDL_xbios.h │ │ ├── SDL_xbios_blowup.c │ │ ├── SDL_xbios_blowup.h │ │ ├── SDL_xbios_centscreen.c │ │ ├── SDL_xbios_centscreen.h │ │ ├── SDL_xbios_milan.c │ │ ├── SDL_xbios_milan.h │ │ ├── SDL_xbios_sb3.c │ │ ├── SDL_xbios_sb3.h │ │ ├── SDL_xbios_tveille.c │ │ └── SDL_xbios_tveille.h └── tremor │ └── tremor-1.0.2 │ ├── CHANGELOG │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── Version_script.in │ ├── asm_arm.h │ ├── autogen.sh │ ├── backends.h │ ├── block.c │ ├── block.h │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── config_types.h │ ├── configure.in │ ├── debian │ ├── Makefile.am │ ├── changelog │ ├── control │ ├── copyright │ ├── libvorbisidec-dev.install │ ├── libvorbisidec1.install │ └── rules │ ├── doc │ ├── OggVorbis_File.html │ ├── build.html │ ├── callbacks.html │ ├── datastructures.html │ ├── decoding.html │ ├── diff.html │ ├── example.html │ ├── fileinfo.html │ ├── index.html │ ├── initialization.html │ ├── ov_bitrate.html │ ├── ov_bitrate_instant.html │ ├── ov_callbacks.html │ ├── ov_clear.html │ ├── ov_comment.html │ ├── ov_info.html │ ├── ov_open.html │ ├── ov_open_callbacks.html │ ├── ov_pcm_seek.html │ ├── ov_pcm_seek_page.html │ ├── ov_pcm_tell.html │ ├── ov_pcm_total.html │ ├── ov_raw_seek.html │ ├── ov_raw_tell.html │ ├── ov_raw_total.html │ ├── ov_read.html │ ├── ov_seekable.html │ ├── ov_serialnumber.html │ ├── ov_streams.html │ ├── ov_test.html │ ├── ov_test_callbacks.html │ ├── ov_test_open.html │ ├── ov_time_seek.html │ ├── ov_time_seek_page.html │ ├── ov_time_tell.html │ ├── ov_time_total.html │ ├── overview.html │ ├── reference.html │ ├── return.html │ ├── seeking.html │ ├── style.css │ ├── threads.html │ ├── vorbis_comment.html │ └── vorbis_info.html │ ├── floor0.c │ ├── floor1.c │ ├── info.c │ ├── iseeking_example.c │ ├── ivorbiscodec.h │ ├── ivorbisfile.h │ ├── ivorbisfile_example.c │ ├── jni │ ├── Android.mk │ └── Application.mk │ ├── lsp_lookup.h │ ├── mapping0.c │ ├── mdct.c │ ├── mdct.h │ ├── mdct_lookup.h │ ├── misc.h │ ├── os.h │ ├── registry.c │ ├── registry.h │ ├── res012.c │ ├── sharedbook.c │ ├── synthesis.c │ ├── vorbisfile.c │ ├── vorbisidec.pc.in │ ├── win32 │ ├── VS2005 │ │ ├── libogg.vsprops │ │ └── libtremor │ │ │ └── libtremor.vcproj │ └── VS2008 │ │ ├── libogg.vsprops │ │ └── libtremor │ │ └── libtremor.vcproj │ ├── window.c │ ├── window.h │ └── window_lookup.h ├── libstdc++-6.dll ├── open_browser.sh ├── shaders ├── COGLES2DetailMap.fsh ├── COGLES2LightmapAdd.fsh ├── COGLES2LightmapModulate.fsh ├── COGLES2NormalMap.fsh ├── COGLES2NormalMap.vsh ├── COGLES2OneTextureBlend.fsh ├── COGLES2ParallaxMap.fsh ├── COGLES2ParallaxMap.vsh ├── COGLES2Reflection2Layer.fsh ├── COGLES2Reflection2Layer.vsh ├── COGLES2Renderer2D.fsh ├── COGLES2Renderer2D.vsh ├── COGLES2Solid.fsh ├── COGLES2Solid.vsh ├── COGLES2Solid2.vsh ├── COGLES2Solid2Layer.fsh ├── COGLES2SphereMap.fsh ├── COGLES2SphereMap.vsh ├── COGLES2TransparentAddColor.fsh ├── COGLES2TransparentAlphaChannel.fsh ├── COGLES2TransparentAlphaChannelRef.fsh ├── COGLES2TransparentVertexAlpha.fsh ├── ES2LightmapModulate.fsh ├── ES2Solid.fsh ├── ES2Solid.vsh ├── ES2Solid2.vsh ├── ES2SolidTransparent.vsh ├── ES2TransparentAddColor.fsh ├── ES2TransparentAlphaChannel.fsh └── ES2TransparentVertexAlpha.fsh ├── src ├── CGUIDialogRoot.h ├── CGUITTFont.cpp ├── CGUITTFont.h ├── CGUITextSlider.cpp ├── CGUITextSlider.h ├── CLMOMeshFileLoader.cpp ├── CLMOMeshFileLoader.h ├── EGUIElementTypesHC.h ├── EGUIEventTypesHC.h ├── IGUITextSlider.h ├── ai_track.cpp ├── ai_track.h ├── app_tester.cpp ├── app_tester.h ├── camera.cpp ├── camera.h ├── championship.cpp ├── championship.h ├── compile_config.h ├── config.cpp ├── config.h ├── config_enums.h ├── controller.cpp ├── controller.h ├── convert_utf.c ├── convert_utf.h ├── device_joystick.cpp ├── device_joystick.h ├── device_joystick_settings.cpp ├── device_joystick_settings.h ├── device_keyboard.cpp ├── device_keyboard.h ├── device_mouse.cpp ├── device_mouse.h ├── device_touch.cpp ├── device_touch.h ├── device_touch_settings.cpp ├── device_touch_settings.h ├── editor.cpp ├── editor.h ├── event_receiver_base.cpp ├── event_receiver_base.h ├── font_manager.cpp ├── font_manager.h ├── game.cpp ├── game.h ├── game_enums.h ├── globals.h ├── grid_triangle_selector.cpp ├── grid_triangle_selector.h ├── gui.cpp ├── gui.h ├── gui_dialog.cpp ├── gui_dialog.h ├── gui_dialogs │ ├── gui_ai.cpp │ ├── gui_ai.h │ ├── gui_controller_display.cpp │ ├── gui_controller_display.h │ ├── gui_developer_settings.cpp │ ├── gui_developer_settings.h │ ├── gui_dlg_okcancel.cpp │ ├── gui_dlg_okcancel.h │ ├── gui_editor.cpp │ ├── gui_editor.h │ ├── gui_game.cpp │ ├── gui_game.h │ ├── gui_helper.cpp │ ├── gui_helper.h │ ├── gui_hud.cpp │ ├── gui_hud.h │ ├── gui_intro.cpp │ ├── gui_intro.h │ ├── gui_levelmanager.cpp │ ├── gui_levelmanager.h │ ├── gui_menu_analog.cpp │ ├── gui_menu_analog.h │ ├── gui_menu_arcade.cpp │ ├── gui_menu_arcade.h │ ├── gui_menu_championship.cpp │ ├── gui_menu_championship.h │ ├── gui_menu_championship_progress.cpp │ ├── gui_menu_championship_progress.h │ ├── gui_menu_championship_winner.cpp │ ├── gui_menu_championship_winner.h │ ├── gui_menu_controls.cpp │ ├── gui_menu_controls.h │ ├── gui_menu_credits.cpp │ ├── gui_menu_credits.h │ ├── gui_menu_gameend.cpp │ ├── gui_menu_gameend.h │ ├── gui_menu_gameend_champ.cpp │ ├── gui_menu_gameend_champ.h │ ├── gui_menu_gameend_rivals.cpp │ ├── gui_menu_gameend_rivals.h │ ├── gui_menu_graphics.cpp │ ├── gui_menu_graphics.h │ ├── gui_menu_highscores.cpp │ ├── gui_menu_highscores.h │ ├── gui_menu_hover_unlocked.cpp │ ├── gui_menu_hover_unlocked.h │ ├── gui_menu_keyboard.cpp │ ├── gui_menu_keyboard.h │ ├── gui_menu_licenses.cpp │ ├── gui_menu_licenses.h │ ├── gui_menu_loadingscreen.cpp │ ├── gui_menu_loadingscreen.h │ ├── gui_menu_main.cpp │ ├── gui_menu_main.h │ ├── gui_menu_nagscreen.cpp │ ├── gui_menu_nagscreen.h │ ├── gui_menu_newprofile.cpp │ ├── gui_menu_newprofile.h │ ├── gui_menu_options.cpp │ ├── gui_menu_options.h │ ├── gui_menu_pause.cpp │ ├── gui_menu_pause.h │ ├── gui_menu_profiles.cpp │ ├── gui_menu_profiles.h │ ├── gui_menu_replaytheatre.cpp │ ├── gui_menu_replaytheatre.h │ ├── gui_menu_rivals.cpp │ ├── gui_menu_rivals.h │ ├── gui_menu_rivals_score.cpp │ ├── gui_menu_rivals_score.h │ ├── gui_menu_selecthover.cpp │ ├── gui_menu_selecthover.h │ ├── gui_menu_timeattack.cpp │ ├── gui_menu_timeattack.h │ ├── gui_menu_tutorial3.cpp │ ├── gui_menu_tutorial3.h │ ├── gui_modellist.cpp │ ├── gui_modellist.h │ ├── gui_nodemanager.cpp │ ├── gui_nodemanager.h │ ├── gui_touch.cpp │ ├── gui_touch.h │ ├── gui_user_controls.cpp │ └── gui_user_controls.h ├── gui_freetype_font.cpp ├── gui_freetype_font.h ├── gui_ids.h ├── hc5.ico ├── helper_file.cpp ├── helper_file.h ├── helper_irr.cpp ├── helper_irr.h ├── helper_math.cpp ├── helper_math.h ├── helper_str.cpp ├── helper_str.h ├── helper_xml.cpp ├── helper_xml.h ├── highscores.cpp ├── highscores.h ├── hover.cbp ├── hover.cpp ├── hover.h ├── input_device.cpp ├── input_device.h ├── input_device_manager.cpp ├── input_device_manager.h ├── irrlicht_manager.cpp ├── irrlicht_manager.h ├── keycode_strings.cpp ├── keycode_strings.h ├── level.cpp ├── level.h ├── level_manager.cpp ├── level_manager.h ├── licenseHCraft.txt ├── logging.cpp ├── logging.h ├── logging_priorities.h ├── main.cpp ├── main.h ├── mesh_texture_loader.cpp ├── mesh_texture_loader.h ├── mobile │ ├── advert.h │ ├── advert_admob.cpp │ ├── advert_admob.h │ ├── android_tools.cpp │ ├── android_tools.h │ ├── app_restrictions.cpp │ ├── app_restrictions.h │ ├── billing.h │ ├── billing_googleplay.cpp │ └── billing_googleplay.h ├── music_manager.cpp ├── music_manager.h ├── nn.cpp ├── nn.h ├── node_manager.cpp ├── node_manager.h ├── ogg_stream.cpp ├── ogg_stream.h ├── ogles2_materials.cpp ├── ogles2_materials.h ├── ov_callbacks.cpp ├── ov_callbacks.h ├── physics.cpp ├── physics.h ├── player.cpp ├── player.h ├── profiles.cpp ├── profiles.h ├── random.cpp ├── random.h ├── recorder.cpp ├── recorder.h ├── resources.rc ├── rivalsmode.cpp ├── rivalsmode.h ├── sound.h ├── sound_openal.cpp ├── sound_openal.h ├── sound_settings.cpp ├── sound_settings.h ├── start_browser.cpp ├── start_browser.h ├── streaming.cpp ├── streaming.h ├── string_table.cpp ├── string_table.h ├── timer.cpp ├── timer.h ├── tinyxml │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp ├── track_marker.cpp └── track_marker.h ├── swapsoundlibs.sh └── tests ├── gui_only.xml ├── levels.xml ├── long_level.xml ├── long_level_gprof.xml └── one_level.xml /.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/.hg_archival.txt -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/.hgignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/README.md -------------------------------------------------------------------------------- /doc/HCraft_Manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/HCraft_Manual.odt -------------------------------------------------------------------------------- /doc/HCraft_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/HCraft_Manual.pdf -------------------------------------------------------------------------------- /doc/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/build.txt -------------------------------------------------------------------------------- /doc/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/changes.txt -------------------------------------------------------------------------------- /doc/coding_guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/coding_guidelines.txt -------------------------------------------------------------------------------- /doc/editor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/editor.txt -------------------------------------------------------------------------------- /doc/folders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/folders.txt -------------------------------------------------------------------------------- /doc/levels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/levels.txt -------------------------------------------------------------------------------- /doc/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/licenses.txt -------------------------------------------------------------------------------- /doc/models_xml.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/doc/models_xml.odt -------------------------------------------------------------------------------- /ghosts/ghosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/ghosts/ghosts.txt -------------------------------------------------------------------------------- /hcraft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/hcraft.sh -------------------------------------------------------------------------------- /libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /libs/directx/include/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/directx/include/sal.h -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/AUTHORS -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/ChangeLog -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/Makefile.am -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/NEWS -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/README -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/admin/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = pkgconfig 2 | 3 | -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/autogen.sh -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/configure.ac -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/doc/alut.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/doc/alut.css -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/include/Makefile.am: -------------------------------------------------------------------------------- 1 | nobase_include_HEADERS = AL/alut.h 2 | -------------------------------------------------------------------------------- /libs/freealut/freealut-1.1.0/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/freealut/freealut-1.1.0/src/README -------------------------------------------------------------------------------- /libs/irrlicht/bin/Win32-gcc/irrlicht.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/bin/Win32-gcc/irrlicht.ico -------------------------------------------------------------------------------- /libs/irrlicht/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/changes.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/aesGladman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/aesGladman.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/bzip2-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/bzip2-license.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/irrlicht-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/irrlicht-license.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/jpglib-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/jpglib-license.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/libpng-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/libpng-license.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/readme.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/release_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/release_checklist.txt -------------------------------------------------------------------------------- /libs/irrlicht/doc/upgrade-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/doc/upgrade-guide.txt -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/CDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/CDemo.cpp -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/CDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/CDemo.h -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/CMainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/CMainMenu.cpp -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/CMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/CMainMenu.h -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/Demo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/Demo.vcproj -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/Makefile -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/demo.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/demo.cbp -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/demo.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/demo.dev -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/icon.ico -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/main.cpp -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/resource.h -------------------------------------------------------------------------------- /libs/irrlicht/examples/Demo/resscript.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Demo/resscript.rc -------------------------------------------------------------------------------- /libs/irrlicht/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/examples/Makefile -------------------------------------------------------------------------------- /libs/irrlicht/include/CIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/CIndexBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/CMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/CMeshBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/CVertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/CVertexBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EAttributes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ECullingTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ECullingTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EDebugSceneTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EDebugSceneTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EDeviceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EDeviceTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EDriverFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EDriverFeatures.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EDriverTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EDriverTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EFocusFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EFocusFlags.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EGUIAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EGUIAlignment.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EGUIElementTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EGUIElementTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EMaterialFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EMaterialFlags.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EMaterialTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EMaterialTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EMeshWriterEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EMeshWriterEnums.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EMessageBoxFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EMessageBoxFlags.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EPrimitiveTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EPrimitiveTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ESceneNodeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ESceneNodeTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/EShaderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/EShaderTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ETerrainElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ETerrainElements.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IAnimatedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IAnimatedMesh.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IAnimatedMeshMD2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IAnimatedMeshMD2.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IAnimatedMeshMD3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IAnimatedMeshMD3.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IAttributes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IBoneSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IBoneSceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ICameraSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ICameraSceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ICursorControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ICursorControl.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IEventReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IEventReceiver.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IFileArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IFileArchive.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IFileList.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IFileSystem.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIButton.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUICheckBox.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIComboBox.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIContextMenu.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIEditBox.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIElement.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIEnvironment.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIFont.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIFontBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIFontBitmap.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIImage.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIImageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIImageList.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIInOutFader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIInOutFader.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIListBox.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIMeshViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIMeshViewer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIProfiler.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIScrollBar.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUISkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUISkin.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUISpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUISpinBox.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUISpriteBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUISpriteBank.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIStaticText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIStaticText.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUITabControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUITabControl.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUITable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUITable.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIToolbar.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUITreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUITreeView.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGUIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGUIWindow.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IGeometryCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IGeometryCreator.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IImage.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IImageLoader.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IImageWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IImageWriter.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IIndexBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ILightManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ILightManager.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ILightSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ILightSceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ILogger.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMaterialRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMaterialRenderer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMesh.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMeshBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMeshCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMeshCache.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMeshLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMeshLoader.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMeshManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMeshManipulator.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMeshSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMeshSceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IMeshWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IMeshWriter.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IOSOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IOSOperator.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IParticleAffector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IParticleAffector.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IParticleEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IParticleEmitter.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IProfiler.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IQ3LevelMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IQ3LevelMesh.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IQ3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IQ3Shader.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IRandomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IRandomizer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IReadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IReadFile.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IReferenceCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IReferenceCounted.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ISceneLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ISceneLoader.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ISceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ISceneManager.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ISceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ISceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ISceneNodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ISceneNodeFactory.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ISkinnedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ISkinnedMesh.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ITerrainSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ITerrainSceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ITextSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ITextSceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ITexture.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ITimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ITimer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/ITriangleSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/ITriangleSelector.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IVertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IVertexBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IVideoDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IVideoDriver.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IVideoModeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IVideoModeList.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IWriteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IWriteFile.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IXMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IXMLReader.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IXMLWriter.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IrrCompileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IrrCompileConfig.h -------------------------------------------------------------------------------- /libs/irrlicht/include/IrrlichtDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/IrrlichtDevice.h -------------------------------------------------------------------------------- /libs/irrlicht/include/Keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/Keycodes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/S3DVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/S3DVertex.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SAnimatedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SAnimatedMesh.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SColor.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SExposedVideoData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SExposedVideoData.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SKeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SKeyMap.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SLight.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SMaterial.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SMaterialLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SMaterialLayer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SMesh.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SMeshBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SParticle.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SSharedMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SSharedMeshBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SSkinMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SSkinMeshBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SVertexIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SVertexIndex.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SViewFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SViewFrustum.h -------------------------------------------------------------------------------- /libs/irrlicht/include/SceneParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/SceneParameters.h -------------------------------------------------------------------------------- /libs/irrlicht/include/aabbox3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/aabbox3d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/coreutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/coreutil.h -------------------------------------------------------------------------------- /libs/irrlicht/include/dimension2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/dimension2d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/driverChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/driverChoice.h -------------------------------------------------------------------------------- /libs/irrlicht/include/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/fast_atof.h -------------------------------------------------------------------------------- /libs/irrlicht/include/heapsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/heapsort.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrAllocator.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrArray.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrList.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrMap.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrMath.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrString.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrTypes.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrXML.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrlicht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrlicht.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrpack.h -------------------------------------------------------------------------------- /libs/irrlicht/include/irrunpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/irrunpack.h -------------------------------------------------------------------------------- /libs/irrlicht/include/leakHunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/leakHunter.h -------------------------------------------------------------------------------- /libs/irrlicht/include/line2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/line2d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/line3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/line3d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/matrix4.h -------------------------------------------------------------------------------- /libs/irrlicht/include/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/path.h -------------------------------------------------------------------------------- /libs/irrlicht/include/plane3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/plane3d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/position2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/position2d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/quaternion.h -------------------------------------------------------------------------------- /libs/irrlicht/include/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/rect.h -------------------------------------------------------------------------------- /libs/irrlicht/include/triangle3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/triangle3d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/vector2d.h -------------------------------------------------------------------------------- /libs/irrlicht/include/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/include/vector3d.h -------------------------------------------------------------------------------- /libs/irrlicht/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/readme.txt -------------------------------------------------------------------------------- /libs/irrlicht/scripts/doc/sed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/scripts/doc/sed.txt -------------------------------------------------------------------------------- /libs/irrlicht/scripts/libIrrlicht1.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/scripts/libIrrlicht1.spec -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CBlit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CBlit.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CFileList.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CGUIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CGUIFont.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CGUIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CGUIImage.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CGUIMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CGUIMenu.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CGUISkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CGUISkin.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CGUITable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CGUITable.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CImage.cpp -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CImage.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CLogger.cpp -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CLogger.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CProfiler.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CReadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CReadFile.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CTRFlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CTRFlat.cpp -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CTimer.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/CZBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/CZBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/IZBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/IZBuffer.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/Irrlicht.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/Irrlicht.rc -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/Makefile -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/Octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/Octree.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/S2DVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/S2DVertex.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/S4DVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/S4DVertex.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/SConstruct -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/glext.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/glxext.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/irrXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/irrXML.cpp -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/jpeglib/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_9.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/libpng/TODO -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/os.cpp -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/os.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/resource.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/source.txt -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/utf8.cpp -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/wglext.h -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/zlib/FAQ -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/zlib/INDEX -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/zlib/README -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/zlib/zlib.3 -------------------------------------------------------------------------------- /libs/irrlicht/source/Irrlicht/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/Irrlicht/zlib/zlib.h -------------------------------------------------------------------------------- /libs/irrlicht/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/source/source.txt -------------------------------------------------------------------------------- /libs/irrlicht/tests/2dmaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/2dmaterial.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/Makefile -------------------------------------------------------------------------------- /libs/irrlicht/tests/anti-aliasing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/anti-aliasing.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/archiveReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/archiveReader.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/b3dAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/b3dAnimation.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/billboards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/billboards.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/burningsVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/burningsVideo.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/color.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/coreutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/coreutil.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/createImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/createImage.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/cursorSetVisible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/cursorSetVisible.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/draw2DImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/draw2DImage.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/drawPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/drawPixel.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/drawRectOutline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/drawRectOutline.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/exports.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/fast_atof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/fast_atof.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/filesystem.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/flyCircleAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/flyCircleAnimator.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/guiDisabledMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/guiDisabledMenu.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/ioScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/ioScene.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/irrArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/irrArray.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/irrCoreEquals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/irrCoreEquals.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/irrList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/irrList.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/irrMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/irrMap.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/irrString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/irrString.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/lightMaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/lightMaps.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/lights.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/loadTextures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/loadTextures.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/main.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/material.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/matrixOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/matrixOps.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/md2Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/md2Animation.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/meshLoaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/meshLoaders.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/meshTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/meshTransform.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/mrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/mrt.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/orthoCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/orthoCam.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/planeMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/planeMatrix.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/projectionMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/projectionMatrix.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/sceneNodeAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/sceneNodeAnimator.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/screenshot.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/skinnedMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/skinnedMesh.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/softwareDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/softwareDevice.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/stencilshadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/stencilshadow.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/terrainSceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/terrainSceneNode.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testDimension2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testDimension2d.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testLine2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testLine2d.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testQuaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testQuaternion.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testS3DVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testS3DVertex.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testUtils.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testUtils.h -------------------------------------------------------------------------------- /libs/irrlicht/tests/testVector2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testVector2d.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testVector3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testVector3d.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testXML.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/testaabbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/testaabbox.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests-readme.txt -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests.cbp -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests.workspace -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc10.sln -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc10.vcxproj -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc11.sln -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc11.vcxproj -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc8.sln -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc8.vcproj -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc9.sln -------------------------------------------------------------------------------- /libs/irrlicht/tests/tests_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/tests_vc9.vcproj -------------------------------------------------------------------------------- /libs/irrlicht/tests/textureFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/textureFeatures.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/timer.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/triangle3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/triangle3d.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/triangleSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/triangleSelector.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/userClipPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/userClipPlane.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/videoDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/videoDriver.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/viewPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/viewPort.cpp -------------------------------------------------------------------------------- /libs/irrlicht/tests/writeImageToFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht/tests/writeImageToFile.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/changes.txt -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/doc/aesGladman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/doc/aesGladman.txt -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/doc/readme.txt -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/examples/27.HelloWorld_Android/project.properties: -------------------------------------------------------------------------------- 1 | target = android-10 2 | -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/examples/Makefile -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IFileList.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IGUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IGUIButton.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IGUIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IGUIFont.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IGUIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IGUIImage.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IGUISkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IGUISkin.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IGUITable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IGUITable.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IGUIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IGUIWindow.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IImage.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/ILogger.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IMesh.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IMeshCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IMeshCache.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IProfiler.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IQ3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IQ3Shader.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IReadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IReadFile.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/ISceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/ISceneNode.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/ITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/ITexture.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/ITimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/ITimer.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IWriteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IWriteFile.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IXMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IXMLReader.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/IXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/IXMLWriter.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/Keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/Keycodes.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/S3DVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/S3DVertex.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/SColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/SColor.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/SKeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/SKeyMap.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/SLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/SLight.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/SMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/SMaterial.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/SMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/SMesh.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/SParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/SParticle.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/aabbox3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/aabbox3d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/coreutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/coreutil.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/fast_atof.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/heapsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/heapsort.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrArray.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrList.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrMap.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrMath.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrString.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrTypes.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrXML.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrlicht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrlicht.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrpack.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/irrunpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/irrunpack.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/leakHunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/leakHunter.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/line2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/line2d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/line3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/line3d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/matrix4.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/path.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/plane3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/plane3d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/position2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/position2d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/quaternion.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/rect.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/triangle3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/triangle3d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/vector2d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/include/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/include/vector3d.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/ogles-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/ogles-readme.txt -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/readme.txt -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/scripts/doc/sed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/scripts/doc/sed.txt -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/source/Irrlicht/Irrlicht.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/source/Irrlicht/jpeglib/ansi2knr.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/source/Irrlicht/jpeglib/ansi2knr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/source/Irrlicht/jpeglib/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_9.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/source/Irrlicht/libpng/scripts/chkfmt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/source/Irrlicht/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/source/Irrlicht/os.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/source/source.txt -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/2dmaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/2dmaterial.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/Makefile -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/billboards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/billboards.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/color.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/coreutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/coreutil.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/drawPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/drawPixel.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/exports.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/fast_atof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/fast_atof.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/filesystem.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/ioScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/ioScene.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/irrArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/irrArray.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/irrList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/irrList.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/irrMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/irrMap.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/irrString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/irrString.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/lightMaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/lightMaps.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/lights.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/main.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/material.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/matrixOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/matrixOps.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/mrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/mrt.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/orthoCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/orthoCam.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/screenshot.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/testLine2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/testLine2d.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/testUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/testUtils.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/testUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/testUtils.h -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/testXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/testXML.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/testaabbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/testaabbox.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/tests.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/tests.cbp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/tests_vc10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/tests_vc10.sln -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/tests_vc11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/tests_vc11.sln -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/tests_vc8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/tests_vc8.sln -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/tests_vc9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/tests_vc9.sln -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/timer.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/triangle3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/triangle3d.cpp -------------------------------------------------------------------------------- /libs/irrlicht_ogl-es/tests/viewPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/irrlicht_ogl-es/tests/viewPort.cpp -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.2/ChangeLog -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.2/Jamfile -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.2/Jamrules -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.2/Makefile -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.2/README -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/builds/newline: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.2/configure -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.2/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.2/docs/TODO -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.5/ChangeLog -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.5/Jamfile -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.5/Jamrules -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.5/Makefile -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.5/README -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/builds/newline: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.5/configure -------------------------------------------------------------------------------- /libs/libfreetype/freetype-2.5.5/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libfreetype/freetype-2.5.5/docs/TODO -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/AUTHORS -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/CHANGES -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/COPYING -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/Makefile.am -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/Makefile.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/README -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/aclocal.m4 -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/compile -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/config.guess -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/config.h.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/config.sub -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/configure -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/configure.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/depcomp -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/Makefile.am -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/Makefile.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/framing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/framing.html -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/index.html -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/packets.png -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/pages.png -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/rfc3533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/rfc3533.txt -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/rfc5334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/rfc5334.txt -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/doc/stream.png -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/install-sh -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/jni/Android.mk -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/libogg.spec -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/libogg.spec.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/ltmain.sh -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/missing -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/ogg.m4 -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/ogg.pc.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/src/Makefile.am -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/src/Makefile.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/src/bitwise.c -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.1/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.1/src/framing.c -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/AUTHORS -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/CHANGES -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/COPYING -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/Makefile.am -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/Makefile.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/README -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/aclocal.m4 -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/compile -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/config.guess -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/config.h.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/config.sub -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/configure -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/configure.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/depcomp -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/Makefile.am -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/Makefile.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/framing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/framing.html -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/index.html -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/packets.png -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/pages.png -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/rfc3533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/rfc3533.txt -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/rfc5334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/rfc5334.txt -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/doc/stream.png -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/install-sh -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/jni/Android.mk -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/libogg.spec -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/libogg.spec.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/ltmain.sh -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/missing -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/ogg.m4 -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/ogg.pc.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/src/Makefile.am -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/src/Makefile.in -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/src/bitwise.c -------------------------------------------------------------------------------- /libs/libogg/libogg-1.3.2/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libogg/libogg-1.3.2/src/framing.c -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/AUTHORS -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/CHANGES -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/COPYING -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/README -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/aclocal.m4 -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/autogen.sh -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/compile -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/config.sub -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/configure -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/depcomp -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/install-sh -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/lib/info.c -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.4/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.4/missing -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.5/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.5/AUTHORS -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.5/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.5/CHANGES -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.5/COPYING -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.5/README -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.5/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.5/compile -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.5/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.5/depcomp -------------------------------------------------------------------------------- /libs/libvorbis/libvorbis-1.3.5/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/libvorbis/libvorbis-1.3.5/missing -------------------------------------------------------------------------------- /libs/openal/openal-soft-apportable/jni/OpenAL/include/AL/oalStaticBufferExtension.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openal/openal-soft-apportable/jni/OpenAL/oalStaticBufferExtension.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/BUGS -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/Borland.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/Borland.html -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/COPYING -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/CREDITS -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/CWprojects.sea.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/CWprojects.sea.bin -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/INSTALL -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/MPWmake.sea.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/MPWmake.sea.bin -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/Makefile.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/Makefile.dc -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/Makefile.in -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/Makefile.minimal -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README-SDL.txt -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.AmigaOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.AmigaOS -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.BeOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.BeOS -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.DC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.DC -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.HG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.HG -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.MacOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.MacOS -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.MacOSX -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.MiNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.MiNT -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.NDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.NDS -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.NanoX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.NanoX -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.OS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.OS2 -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.PS3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.PS3 -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.PicoGUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.PicoGUI -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.Porting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.Porting -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.QNX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.QNX -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.Qtopia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.Qtopia -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.RISCOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.RISCOS -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.Symbian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.Symbian -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.Watcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.Watcom -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.WinCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.WinCE -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/README.wscons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/README.wscons -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/SDL.qpg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/SDL.qpg.in -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/SDL.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/SDL.spec -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/SDL.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/SDL.spec.in -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/TODO -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/VisualC.html -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/WhatsNew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/WhatsNew -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/acinclude/alsa.m4 -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/acinclude/esd.m4 -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/acinclude/ltdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/acinclude/ltdl.m4 -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/autogen.sh -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/configure -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/configure.in -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/docs.html -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/include/SDL.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/include/SDL_main.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/include/SDL_name.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/include/SDL_quit.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/include/doxyfile -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/sdl-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/sdl-config.in -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/sdl.m4 -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/sdl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/sdl.pc.in -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/SDL.c -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/SDL_error.c -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/SDL_error_c.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/SDL_fatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/SDL_fatal.c -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/SDL_fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/SDL_fatal.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/hermes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/hermes/README -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/video/e_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/video/e_log.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/video/e_pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/video/e_pow.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/video/e_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/video/e_sqrt.h -------------------------------------------------------------------------------- /libs/sdl/SDL-1.2.15/src/video/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/sdl/SDL-1.2.15/src/video/mmx.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/CHANGELOG -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/COPYING -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/Makefile.am -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/README -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/asm_arm.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/autogen.sh -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/backends.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/block.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/block.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/codebook.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/codebook.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/configure.in -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/debian/rules -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/doc/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/doc/diff.html -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/doc/style.css -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/floor0.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/floor1.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/info.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/ivorbisfile.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/lsp_lookup.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/mapping0.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/mdct.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/mdct.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/mdct_lookup.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/misc.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/os.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/registry.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/registry.h -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/res012.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/sharedbook.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/synthesis.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/vorbisfile.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/window.c -------------------------------------------------------------------------------- /libs/tremor/tremor-1.0.2/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libs/tremor/tremor-1.0.2/window.h -------------------------------------------------------------------------------- /libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/libstdc++-6.dll -------------------------------------------------------------------------------- /open_browser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/open_browser.sh -------------------------------------------------------------------------------- /shaders/COGLES2DetailMap.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2DetailMap.fsh -------------------------------------------------------------------------------- /shaders/COGLES2LightmapAdd.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2LightmapAdd.fsh -------------------------------------------------------------------------------- /shaders/COGLES2LightmapModulate.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2LightmapModulate.fsh -------------------------------------------------------------------------------- /shaders/COGLES2NormalMap.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2NormalMap.fsh -------------------------------------------------------------------------------- /shaders/COGLES2NormalMap.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2NormalMap.vsh -------------------------------------------------------------------------------- /shaders/COGLES2OneTextureBlend.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2OneTextureBlend.fsh -------------------------------------------------------------------------------- /shaders/COGLES2ParallaxMap.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2ParallaxMap.fsh -------------------------------------------------------------------------------- /shaders/COGLES2ParallaxMap.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2ParallaxMap.vsh -------------------------------------------------------------------------------- /shaders/COGLES2Reflection2Layer.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Reflection2Layer.fsh -------------------------------------------------------------------------------- /shaders/COGLES2Reflection2Layer.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Reflection2Layer.vsh -------------------------------------------------------------------------------- /shaders/COGLES2Renderer2D.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Renderer2D.fsh -------------------------------------------------------------------------------- /shaders/COGLES2Renderer2D.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Renderer2D.vsh -------------------------------------------------------------------------------- /shaders/COGLES2Solid.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Solid.fsh -------------------------------------------------------------------------------- /shaders/COGLES2Solid.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Solid.vsh -------------------------------------------------------------------------------- /shaders/COGLES2Solid2.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Solid2.vsh -------------------------------------------------------------------------------- /shaders/COGLES2Solid2Layer.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2Solid2Layer.fsh -------------------------------------------------------------------------------- /shaders/COGLES2SphereMap.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2SphereMap.fsh -------------------------------------------------------------------------------- /shaders/COGLES2SphereMap.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2SphereMap.vsh -------------------------------------------------------------------------------- /shaders/COGLES2TransparentAddColor.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/COGLES2TransparentAddColor.fsh -------------------------------------------------------------------------------- /shaders/ES2LightmapModulate.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2LightmapModulate.fsh -------------------------------------------------------------------------------- /shaders/ES2Solid.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2Solid.fsh -------------------------------------------------------------------------------- /shaders/ES2Solid.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2Solid.vsh -------------------------------------------------------------------------------- /shaders/ES2Solid2.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2Solid2.vsh -------------------------------------------------------------------------------- /shaders/ES2SolidTransparent.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2SolidTransparent.vsh -------------------------------------------------------------------------------- /shaders/ES2TransparentAddColor.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2TransparentAddColor.fsh -------------------------------------------------------------------------------- /shaders/ES2TransparentAlphaChannel.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2TransparentAlphaChannel.fsh -------------------------------------------------------------------------------- /shaders/ES2TransparentVertexAlpha.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/shaders/ES2TransparentVertexAlpha.fsh -------------------------------------------------------------------------------- /src/CGUIDialogRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/CGUIDialogRoot.h -------------------------------------------------------------------------------- /src/CGUITTFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/CGUITTFont.cpp -------------------------------------------------------------------------------- /src/CGUITTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/CGUITTFont.h -------------------------------------------------------------------------------- /src/CGUITextSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/CGUITextSlider.cpp -------------------------------------------------------------------------------- /src/CGUITextSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/CGUITextSlider.h -------------------------------------------------------------------------------- /src/CLMOMeshFileLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/CLMOMeshFileLoader.cpp -------------------------------------------------------------------------------- /src/CLMOMeshFileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/CLMOMeshFileLoader.h -------------------------------------------------------------------------------- /src/EGUIElementTypesHC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/EGUIElementTypesHC.h -------------------------------------------------------------------------------- /src/EGUIEventTypesHC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/EGUIEventTypesHC.h -------------------------------------------------------------------------------- /src/IGUITextSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/IGUITextSlider.h -------------------------------------------------------------------------------- /src/ai_track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ai_track.cpp -------------------------------------------------------------------------------- /src/ai_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ai_track.h -------------------------------------------------------------------------------- /src/app_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/app_tester.cpp -------------------------------------------------------------------------------- /src/app_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/app_tester.h -------------------------------------------------------------------------------- /src/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/camera.cpp -------------------------------------------------------------------------------- /src/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/camera.h -------------------------------------------------------------------------------- /src/championship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/championship.cpp -------------------------------------------------------------------------------- /src/championship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/championship.h -------------------------------------------------------------------------------- /src/compile_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/compile_config.h -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/config.h -------------------------------------------------------------------------------- /src/config_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/config_enums.h -------------------------------------------------------------------------------- /src/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/controller.cpp -------------------------------------------------------------------------------- /src/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/controller.h -------------------------------------------------------------------------------- /src/convert_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/convert_utf.c -------------------------------------------------------------------------------- /src/convert_utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/convert_utf.h -------------------------------------------------------------------------------- /src/device_joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_joystick.cpp -------------------------------------------------------------------------------- /src/device_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_joystick.h -------------------------------------------------------------------------------- /src/device_joystick_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_joystick_settings.cpp -------------------------------------------------------------------------------- /src/device_joystick_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_joystick_settings.h -------------------------------------------------------------------------------- /src/device_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_keyboard.cpp -------------------------------------------------------------------------------- /src/device_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_keyboard.h -------------------------------------------------------------------------------- /src/device_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_mouse.cpp -------------------------------------------------------------------------------- /src/device_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_mouse.h -------------------------------------------------------------------------------- /src/device_touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_touch.cpp -------------------------------------------------------------------------------- /src/device_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_touch.h -------------------------------------------------------------------------------- /src/device_touch_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_touch_settings.cpp -------------------------------------------------------------------------------- /src/device_touch_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/device_touch_settings.h -------------------------------------------------------------------------------- /src/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/editor.cpp -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/event_receiver_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/event_receiver_base.cpp -------------------------------------------------------------------------------- /src/event_receiver_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/event_receiver_base.h -------------------------------------------------------------------------------- /src/font_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/font_manager.cpp -------------------------------------------------------------------------------- /src/font_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/font_manager.h -------------------------------------------------------------------------------- /src/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/game.cpp -------------------------------------------------------------------------------- /src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/game.h -------------------------------------------------------------------------------- /src/game_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/game_enums.h -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/grid_triangle_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/grid_triangle_selector.cpp -------------------------------------------------------------------------------- /src/grid_triangle_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/grid_triangle_selector.h -------------------------------------------------------------------------------- /src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui.cpp -------------------------------------------------------------------------------- /src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui.h -------------------------------------------------------------------------------- /src/gui_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialog.cpp -------------------------------------------------------------------------------- /src/gui_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialog.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_ai.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_ai.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_dlg_okcancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_dlg_okcancel.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_dlg_okcancel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_dlg_okcancel.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_editor.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_editor.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_game.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_game.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_helper.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_helper.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_hud.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_hud.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_intro.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_intro.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_levelmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_levelmanager.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_levelmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_levelmanager.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_analog.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_analog.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_arcade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_arcade.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_arcade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_arcade.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_controls.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_controls.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_credits.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_credits.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_gameend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_gameend.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_gameend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_gameend.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_graphics.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_graphics.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_highscores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_highscores.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_keyboard.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_keyboard.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_licenses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_licenses.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_licenses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_licenses.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_main.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_main.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_nagscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_nagscreen.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_nagscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_nagscreen.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_newprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_newprofile.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_options.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_options.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_pause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_pause.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_pause.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_profiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_profiles.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_profiles.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_rivals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_rivals.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_rivals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_rivals.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_selecthover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_selecthover.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_timeattack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_timeattack.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_tutorial3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_tutorial3.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_menu_tutorial3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_menu_tutorial3.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_modellist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_modellist.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_modellist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_modellist.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_nodemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_nodemanager.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_nodemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_nodemanager.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_touch.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_touch.h -------------------------------------------------------------------------------- /src/gui_dialogs/gui_user_controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_user_controls.cpp -------------------------------------------------------------------------------- /src/gui_dialogs/gui_user_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_dialogs/gui_user_controls.h -------------------------------------------------------------------------------- /src/gui_freetype_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_freetype_font.cpp -------------------------------------------------------------------------------- /src/gui_freetype_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_freetype_font.h -------------------------------------------------------------------------------- /src/gui_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/gui_ids.h -------------------------------------------------------------------------------- /src/hc5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/hc5.ico -------------------------------------------------------------------------------- /src/helper_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_file.cpp -------------------------------------------------------------------------------- /src/helper_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_file.h -------------------------------------------------------------------------------- /src/helper_irr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_irr.cpp -------------------------------------------------------------------------------- /src/helper_irr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_irr.h -------------------------------------------------------------------------------- /src/helper_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_math.cpp -------------------------------------------------------------------------------- /src/helper_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_math.h -------------------------------------------------------------------------------- /src/helper_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_str.cpp -------------------------------------------------------------------------------- /src/helper_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_str.h -------------------------------------------------------------------------------- /src/helper_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_xml.cpp -------------------------------------------------------------------------------- /src/helper_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/helper_xml.h -------------------------------------------------------------------------------- /src/highscores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/highscores.cpp -------------------------------------------------------------------------------- /src/highscores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/highscores.h -------------------------------------------------------------------------------- /src/hover.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/hover.cbp -------------------------------------------------------------------------------- /src/hover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/hover.cpp -------------------------------------------------------------------------------- /src/hover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/hover.h -------------------------------------------------------------------------------- /src/input_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/input_device.cpp -------------------------------------------------------------------------------- /src/input_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/input_device.h -------------------------------------------------------------------------------- /src/input_device_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/input_device_manager.cpp -------------------------------------------------------------------------------- /src/input_device_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/input_device_manager.h -------------------------------------------------------------------------------- /src/irrlicht_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/irrlicht_manager.cpp -------------------------------------------------------------------------------- /src/irrlicht_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/irrlicht_manager.h -------------------------------------------------------------------------------- /src/keycode_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/keycode_strings.cpp -------------------------------------------------------------------------------- /src/keycode_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/keycode_strings.h -------------------------------------------------------------------------------- /src/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/level.cpp -------------------------------------------------------------------------------- /src/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/level.h -------------------------------------------------------------------------------- /src/level_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/level_manager.cpp -------------------------------------------------------------------------------- /src/level_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/level_manager.h -------------------------------------------------------------------------------- /src/licenseHCraft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/licenseHCraft.txt -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/logging_priorities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/logging_priorities.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/main.h -------------------------------------------------------------------------------- /src/mesh_texture_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mesh_texture_loader.cpp -------------------------------------------------------------------------------- /src/mesh_texture_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mesh_texture_loader.h -------------------------------------------------------------------------------- /src/mobile/advert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/advert.h -------------------------------------------------------------------------------- /src/mobile/advert_admob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/advert_admob.cpp -------------------------------------------------------------------------------- /src/mobile/advert_admob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/advert_admob.h -------------------------------------------------------------------------------- /src/mobile/android_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/android_tools.cpp -------------------------------------------------------------------------------- /src/mobile/android_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/android_tools.h -------------------------------------------------------------------------------- /src/mobile/app_restrictions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/app_restrictions.cpp -------------------------------------------------------------------------------- /src/mobile/app_restrictions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/app_restrictions.h -------------------------------------------------------------------------------- /src/mobile/billing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/billing.h -------------------------------------------------------------------------------- /src/mobile/billing_googleplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/billing_googleplay.cpp -------------------------------------------------------------------------------- /src/mobile/billing_googleplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/mobile/billing_googleplay.h -------------------------------------------------------------------------------- /src/music_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/music_manager.cpp -------------------------------------------------------------------------------- /src/music_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/music_manager.h -------------------------------------------------------------------------------- /src/nn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/nn.cpp -------------------------------------------------------------------------------- /src/nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/nn.h -------------------------------------------------------------------------------- /src/node_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/node_manager.cpp -------------------------------------------------------------------------------- /src/node_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/node_manager.h -------------------------------------------------------------------------------- /src/ogg_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ogg_stream.cpp -------------------------------------------------------------------------------- /src/ogg_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ogg_stream.h -------------------------------------------------------------------------------- /src/ogles2_materials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ogles2_materials.cpp -------------------------------------------------------------------------------- /src/ogles2_materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ogles2_materials.h -------------------------------------------------------------------------------- /src/ov_callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ov_callbacks.cpp -------------------------------------------------------------------------------- /src/ov_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/ov_callbacks.h -------------------------------------------------------------------------------- /src/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/physics.cpp -------------------------------------------------------------------------------- /src/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/physics.h -------------------------------------------------------------------------------- /src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/player.cpp -------------------------------------------------------------------------------- /src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/player.h -------------------------------------------------------------------------------- /src/profiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/profiles.cpp -------------------------------------------------------------------------------- /src/profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/profiles.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/random.h -------------------------------------------------------------------------------- /src/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/recorder.cpp -------------------------------------------------------------------------------- /src/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/recorder.h -------------------------------------------------------------------------------- /src/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/resources.rc -------------------------------------------------------------------------------- /src/rivalsmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/rivalsmode.cpp -------------------------------------------------------------------------------- /src/rivalsmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/rivalsmode.h -------------------------------------------------------------------------------- /src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/sound.h -------------------------------------------------------------------------------- /src/sound_openal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/sound_openal.cpp -------------------------------------------------------------------------------- /src/sound_openal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/sound_openal.h -------------------------------------------------------------------------------- /src/sound_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/sound_settings.cpp -------------------------------------------------------------------------------- /src/sound_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/sound_settings.h -------------------------------------------------------------------------------- /src/start_browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/start_browser.cpp -------------------------------------------------------------------------------- /src/start_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/start_browser.h -------------------------------------------------------------------------------- /src/streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/streaming.cpp -------------------------------------------------------------------------------- /src/streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/streaming.h -------------------------------------------------------------------------------- /src/string_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/string_table.cpp -------------------------------------------------------------------------------- /src/string_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/string_table.h -------------------------------------------------------------------------------- /src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/timer.cpp -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/timer.h -------------------------------------------------------------------------------- /src/tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/Makefile -------------------------------------------------------------------------------- /src/tinyxml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/Makefile.am -------------------------------------------------------------------------------- /src/tinyxml/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/Makefile.in -------------------------------------------------------------------------------- /src/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /src/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/tinystr.h -------------------------------------------------------------------------------- /src/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /src/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /src/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /src/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /src/track_marker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/track_marker.cpp -------------------------------------------------------------------------------- /src/track_marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/src/track_marker.h -------------------------------------------------------------------------------- /swapsoundlibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/swapsoundlibs.sh -------------------------------------------------------------------------------- /tests/gui_only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/tests/gui_only.xml -------------------------------------------------------------------------------- /tests/levels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/tests/levels.xml -------------------------------------------------------------------------------- /tests/long_level.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/tests/long_level.xml -------------------------------------------------------------------------------- /tests/long_level_gprof.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/tests/long_level_gprof.xml -------------------------------------------------------------------------------- /tests/one_level.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzeilfelder/hc1/HEAD/tests/one_level.xml --------------------------------------------------------------------------------