├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── Assets ├── Fonts │ ├── Montserrat-Regular.otf │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ └── Roboto-ThinItalic.ttf ├── Icons │ ├── icons8-file-64.png │ └── icons8-folder-64.png ├── NewAsset.zeeffect ├── NewAsset.zeeffectmeta ├── chien_chauve.png ├── chien_chauve.zetexture ├── chien_chauve.zetexturemeta └── sphere.obj ├── BUILDING.md ├── CMake └── Clang.cmake ├── CMakeLists.txt ├── Config ├── Backends │ ├── D3D12.toml │ └── Vulkan.toml └── Platforms │ └── Windows.toml ├── LICENSE ├── README.md ├── Shaders ├── ClusteredForward │ ├── BasePass.hlsl │ ├── BasePassFS.hlsl │ └── BasePassVS.hlsl ├── Tests │ ├── TriangleFS.hlsl │ └── TriangleVS.hlsl ├── UI │ └── ImGui.hlsl └── ZE.hlsl ├── Sources ├── CMakeLists.txt ├── editor │ ├── CMakeLists.txt │ ├── assetdatacache │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── assetdatacache │ │ │ │ └── AssetDatacache.cpp │ │ └── public │ │ │ └── assetdatacache │ │ │ └── AssetDatacache.h │ ├── assetutils │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── editor │ │ │ │ └── assetutils │ │ │ │ └── AssetUtils.cpp │ │ └── public │ │ │ └── editor │ │ │ └── assetutils │ │ │ └── AssetUtils.h │ ├── editor │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── editor │ │ │ │ ├── IconManager.cpp │ │ │ │ ├── LargeTask.cpp │ │ │ │ ├── PropertiesEditor.cpp │ │ │ │ ├── PropertyEditor.cpp │ │ │ │ ├── ZEEditor.cpp │ │ │ │ ├── assets │ │ │ │ ├── EffectCooker.cpp │ │ │ │ ├── EffectCooker.h │ │ │ │ ├── TextureCooker.cpp │ │ │ │ ├── actions │ │ │ │ │ ├── AssetActions.cpp │ │ │ │ │ ├── EffectActions.cpp │ │ │ │ │ ├── EffectActions.h │ │ │ │ │ ├── ModelActions.cpp │ │ │ │ │ ├── ModelActions.h │ │ │ │ │ └── TextureActions.cpp │ │ │ │ └── factories │ │ │ │ │ ├── AssetFactory.cpp │ │ │ │ │ ├── EffectFactory.cpp │ │ │ │ │ ├── EffectFactory.h │ │ │ │ │ ├── StbTextureFactory.cpp │ │ │ │ │ ├── StbTextureFactory.h │ │ │ │ │ ├── TinyObjFactory.cpp │ │ │ │ │ └── TinyObjFactory.h │ │ │ │ ├── propertyeditors │ │ │ │ ├── PrimitivesPropertyEditors.cpp │ │ │ │ └── PrimitivesPropertyEditors.h │ │ │ │ └── windows │ │ │ │ ├── AssetExplorer.cpp │ │ │ │ ├── Console.cpp │ │ │ │ ├── EntityList.cpp │ │ │ │ ├── EntityProperties.cpp │ │ │ │ ├── MapEditor.cpp │ │ │ │ ├── Tools.cpp │ │ │ │ ├── Viewport.cpp │ │ │ │ ├── Window.cpp │ │ │ │ └── assets │ │ │ │ ├── AssetEditor.cpp │ │ │ │ ├── EffectEditor.cpp │ │ │ │ └── texture │ │ │ │ └── TextureEditor.cpp │ │ └── public │ │ │ └── editor │ │ │ ├── IconManager.h │ │ │ ├── LargeTask.h │ │ │ ├── PropertiesEditor.h │ │ │ ├── PropertyEditor.h │ │ │ ├── ZEEditor.h │ │ │ ├── assets │ │ │ ├── AssetActions.h │ │ │ ├── AssetFactory.h │ │ │ ├── TextureActions.h │ │ │ └── TextureCooker.h │ │ │ └── windows │ │ │ ├── AssetExplorer.h │ │ │ ├── Console.h │ │ │ ├── EntityList.h │ │ │ ├── EntityProperties.h │ │ │ ├── MapEditor.h │ │ │ ├── Tools.h │ │ │ ├── Viewport.h │ │ │ ├── Window.h │ │ │ └── assets │ │ │ ├── AssetEditor.h │ │ │ ├── EffectEditor.h │ │ │ └── texture │ │ │ └── TextureEditor.h │ ├── shadercompiler │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── shader │ │ │ │ ├── ShaderCompiler.cpp │ │ │ │ └── ShaderCompilerModule.cpp │ │ └── public │ │ │ └── shader │ │ │ ├── ShaderCompiler.h │ │ │ └── ShaderCompilerModule.h │ ├── texturecompressor │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── TextureCompressor.cpp │ │ └── public │ │ │ └── TextureCompressor.h │ └── vulkanshadercompiler │ │ ├── CMakeLists.txt │ │ └── private │ │ └── VulkanShaderCompiler.cpp ├── engine │ ├── CMakeLists.txt │ ├── asset │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── assets │ │ │ │ ├── Asset.cpp │ │ │ │ ├── AssetCooker.cpp │ │ │ │ └── AssetManager.cpp │ │ └── public │ │ │ └── assets │ │ │ ├── Asset.h │ │ │ ├── AssetArchive.h │ │ │ ├── AssetCooker.h │ │ │ ├── AssetManager.h │ │ │ ├── AssetMetadata.h │ │ │ └── AssetPtr.h │ ├── assetdatabase │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── assetdatabase │ │ │ │ ├── AssetDatabase.cpp │ │ │ │ ├── PathTree.cpp │ │ │ │ └── PathTree.h │ │ └── public │ │ │ └── assetdatabase │ │ │ ├── AssetDatabase.h │ │ │ └── AssetHeader.h │ ├── core │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ ├── App.cpp │ │ │ ├── EngineCore.cpp │ │ │ ├── MessageBox.cpp │ │ │ ├── StringUtil.cpp │ │ │ ├── console │ │ │ │ └── Console.cpp │ │ │ ├── logger │ │ │ │ ├── Logger.cpp │ │ │ │ ├── Sink.cpp │ │ │ │ └── sinks │ │ │ │ │ ├── StdSink.cpp │ │ │ │ │ └── WinDbgSink.cpp │ │ │ ├── memory │ │ │ │ └── SmartPointers.cpp │ │ │ ├── module │ │ │ │ └── ModuleManager.cpp │ │ │ ├── profiling │ │ │ │ └── Profiling.cpp │ │ │ ├── serialization │ │ │ │ └── BinaryArchive.cpp │ │ │ └── threading │ │ │ │ ├── Thread.cpp │ │ │ │ └── jobsystem │ │ │ │ ├── Job.cpp │ │ │ │ ├── JobSystem.cpp │ │ │ │ └── WorkerThread.cpp │ │ └── public │ │ │ ├── App.h │ │ │ ├── Assertions.h │ │ │ ├── EngineCore.h │ │ │ ├── EngineVer.h │ │ │ ├── MessageBox.h │ │ │ ├── MinimalMacros.h │ │ │ ├── NonCopyable.h │ │ │ ├── NonMoveable.h │ │ │ ├── Pool.h │ │ │ ├── StringUtil.h │ │ │ ├── console │ │ │ ├── ConVar.h │ │ │ └── Console.h │ │ │ ├── containers │ │ │ ├── Set.h │ │ │ └── SparseArray.h │ │ │ ├── delegates │ │ │ ├── Delegate.h │ │ │ └── MulticastDelegate.h │ │ │ ├── flags │ │ │ └── Flags.h │ │ │ ├── logger │ │ │ ├── Logger.h │ │ │ ├── Severity.h │ │ │ ├── Sink.h │ │ │ └── sinks │ │ │ │ ├── StdSink.h │ │ │ │ └── WinDbgSink.h │ │ │ ├── maths │ │ │ ├── Color.h │ │ │ ├── MathCore.h │ │ │ ├── Matrix.h │ │ │ ├── Rect.h │ │ │ ├── Vector.h │ │ │ └── matrix │ │ │ │ └── Transformations.h │ │ │ ├── memory │ │ │ └── SmartPointers.h │ │ │ ├── module │ │ │ ├── Module.h │ │ │ └── ModuleManager.h │ │ │ ├── profiling │ │ │ └── Profiling.h │ │ │ ├── serialization │ │ │ ├── Archive.h │ │ │ ├── BinaryArchive.h │ │ │ ├── Traits.h │ │ │ ├── Wrappers.h │ │ │ └── types │ │ │ │ ├── Map.h │ │ │ │ ├── Pair.h │ │ │ │ ├── String.h │ │ │ │ ├── Uuid.h │ │ │ │ └── Vector.h │ │ │ └── threading │ │ │ ├── Thread.h │ │ │ └── jobsystem │ │ │ ├── Async.h │ │ │ ├── Job.h │ │ │ ├── JobDeque.h │ │ │ ├── JobSystem.h │ │ │ ├── ParallelFor.h │ │ │ └── WorkerThread.h │ ├── effect │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── gfx │ │ │ │ └── effect │ │ │ │ ├── Effect.cpp │ │ │ │ ├── EffectCompiler.cpp │ │ │ │ ├── EffectDatabase.cpp │ │ │ │ └── EffectSystem.cpp │ │ └── public │ │ │ └── gfx │ │ │ └── effect │ │ │ ├── Effect.h │ │ │ ├── EffectCompiler.h │ │ │ └── EffectDatabase.h │ ├── engine │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── engine │ │ │ │ ├── Engine.cpp │ │ │ │ ├── EngineGame.cpp │ │ │ │ ├── InputSystem.cpp │ │ │ │ ├── NativeWindow.cpp │ │ │ │ ├── TickSystem.cpp │ │ │ │ ├── Viewport.cpp │ │ │ │ ├── World.cpp │ │ │ │ ├── assets │ │ │ │ ├── Model.cpp │ │ │ │ ├── Texture.cpp │ │ │ │ └── TexturePlatformData.cpp │ │ │ │ ├── components │ │ │ │ └── SinusMovementSystem.cpp │ │ │ │ ├── ecs │ │ │ │ ├── ComponentManager.cpp │ │ │ │ ├── EntityManager.cpp │ │ │ │ └── SystemManager.cpp │ │ │ │ └── ui │ │ │ │ └── Console.cpp │ │ └── public │ │ │ └── engine │ │ │ ├── Engine.h │ │ │ ├── EngineGame.h │ │ │ ├── InputSystem.h │ │ │ ├── NativeWindow.h │ │ │ ├── TickSystem.h │ │ │ ├── Viewport.h │ │ │ ├── World.h │ │ │ ├── assets │ │ │ ├── Effect.h │ │ │ ├── Model.h │ │ │ └── Texture.h │ │ │ ├── components │ │ │ ├── RelationshipComponent.h │ │ │ ├── SinusMovementSystem.h │ │ │ └── TransformComponent.h │ │ │ ├── ecs │ │ │ ├── Component.h │ │ │ ├── ComponentManager.h │ │ │ ├── ComponentSystem.h │ │ │ ├── ECS.h │ │ │ ├── EntityManager.h │ │ │ └── SystemManager.h │ │ │ └── ui │ │ │ └── Console.h │ ├── gfx │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── gfx │ │ │ │ ├── CommandList.cpp │ │ │ │ ├── Device.cpp │ │ │ │ ├── Gfx.cpp │ │ │ │ ├── GpuVector.cpp │ │ │ │ └── ThreadedCommandPool.cpp │ │ └── public │ │ │ └── gfx │ │ │ ├── Gfx.h │ │ │ ├── GpuVector.h │ │ │ └── UniformBuffer.h │ ├── gfxbackend │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ ├── BackendManager.cpp │ │ │ └── GfxBackend.cpp │ │ └── public │ │ │ └── gfx │ │ │ ├── Backend.h │ │ │ ├── BackendInfo.h │ │ │ ├── BackendManager.h │ │ │ ├── BackendModule.h │ │ │ ├── Resource.h │ │ │ └── ShaderFormat.h │ ├── imgui │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── imgui │ │ │ │ ├── ImGuiModule.cpp │ │ │ │ └── ImGuiRenderer.cpp │ │ └── public │ │ │ ├── ImGuiConfigZE.h │ │ │ └── imgui │ │ │ ├── ImGui.h │ │ │ └── ImGuiRenderer.h │ ├── json │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── serialization │ │ │ │ └── Json.cpp │ │ └── public │ │ │ └── serialization │ │ │ └── Json.h │ ├── main │ │ ├── CMakeLists.txt │ │ └── private │ │ │ └── Main.cpp │ ├── platform │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── PlatformMgr.cpp │ │ └── public │ │ │ ├── Device.h │ │ │ ├── Platform.h │ │ │ └── PlatformMgr.h │ ├── reflection │ │ ├── CMakeLists.txt │ │ ├── Private │ │ │ └── Reflection │ │ │ │ ├── Class.cpp │ │ │ │ ├── Enum.cpp │ │ │ │ ├── Property.cpp │ │ │ │ ├── Reflection.cpp │ │ │ │ ├── Registration.cpp │ │ │ │ └── Type.cpp │ │ └── public │ │ │ └── reflection │ │ │ ├── Any.h │ │ │ ├── BinaryArchiveRefl.h │ │ │ ├── Builders.h │ │ │ ├── Cast.h │ │ │ ├── Class.h │ │ │ ├── Enum.h │ │ │ ├── Macros.h │ │ │ ├── Property.h │ │ │ ├── Registration.h │ │ │ ├── Serialization.h │ │ │ ├── Singleton.h │ │ │ ├── Traits.h │ │ │ ├── Type.h │ │ │ ├── VectorRefl.h │ │ │ └── detail │ │ │ ├── AnyImpl.h │ │ │ └── PropertyImpl.h │ ├── shadercore │ │ ├── CMakeLists.txt │ │ ├── private │ │ │ └── shader │ │ │ │ └── ShaderCore.cpp │ │ └── public │ │ │ └── shader │ │ │ └── ShaderCore.h │ ├── vulkangfx │ │ ├── CMakeLists.txt │ │ └── private │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── Command.cpp │ │ │ ├── Command.h │ │ │ ├── Commands.cpp │ │ │ ├── DescriptorSet.cpp │ │ │ ├── DescriptorSet.h │ │ │ ├── Device.cpp │ │ │ ├── Device.h │ │ │ ├── Pipeline.cpp │ │ │ ├── Pipeline.h │ │ │ ├── PipelineLayout.cpp │ │ │ ├── PipelineLayout.h │ │ │ ├── Queue.cpp │ │ │ ├── Queue.h │ │ │ ├── RenderPass.cpp │ │ │ ├── RenderPass.h │ │ │ ├── Sampler.cpp │ │ │ ├── Sampler.h │ │ │ ├── Shader.cpp │ │ │ ├── Shader.h │ │ │ ├── Surface.cpp │ │ │ ├── Surface.h │ │ │ ├── SwapChain.cpp │ │ │ ├── SwapChain.h │ │ │ ├── Sync.cpp │ │ │ ├── Sync.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── Vulkan.h │ │ │ ├── VulkanBackend.cpp │ │ │ ├── VulkanBackend.h │ │ │ ├── VulkanGfxModule.cpp │ │ │ └── VulkanUtil.h │ └── zefs │ │ ├── CMakeLists.txt │ │ ├── private │ │ └── zefs │ │ │ ├── File.cpp │ │ │ ├── Paths.cpp │ │ │ ├── StdFileSystem.cpp │ │ │ ├── Utils.cpp │ │ │ ├── ZEFS.cpp │ │ │ └── sinks │ │ │ └── FileSink.cpp │ │ └── public │ │ └── zefs │ │ ├── FileStream.h │ │ ├── FileSystem.h │ │ ├── Paths.h │ │ ├── StdFileSystem.h │ │ ├── Utils.h │ │ ├── ZEFS.h │ │ └── sinks │ │ └── FileSink.h ├── thirdparty │ ├── CMakeLists.txt │ ├── SDL2.cmake │ ├── SDL2 │ │ ├── .github │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── main.yml │ │ ├── .gitignore │ │ ├── Android.mk │ │ ├── BUGS.txt │ │ ├── CMakeLists.txt │ │ ├── CREDITS.txt │ │ ├── INSTALL.txt │ │ ├── LICENSE.txt │ │ ├── Makefile.in │ │ ├── Makefile.minimal │ │ ├── Makefile.os2 │ │ ├── Makefile.pandora │ │ ├── Makefile.psp │ │ ├── Makefile.wiz │ │ ├── README-SDL.txt │ │ ├── README.md │ │ ├── SDL2.spec.in │ │ ├── SDL2Config.cmake │ │ ├── TODO.txt │ │ ├── VisualC-WinRT │ │ │ ├── SDL2-WinRT.nuspec │ │ │ ├── SDL2-WinRT.targets │ │ │ ├── SDL2main-WinRT-NonXAML.nuspec │ │ │ ├── SDL2main-WinRT-NonXAML.targets │ │ │ ├── UWP_VS2015 │ │ │ │ ├── SDL-UWP.sln │ │ │ │ ├── SDL-UWP.vcxproj │ │ │ │ └── SDL-UWP.vcxproj.filters │ │ │ ├── WinPhone81_VS2013 │ │ │ │ ├── SDL-WinPhone81.sln │ │ │ │ ├── SDL-WinPhone81.vcxproj │ │ │ │ └── SDL-WinPhone81.vcxproj.filters │ │ │ ├── WinRT81_VS2013 │ │ │ │ ├── SDL-WinRT81.sln │ │ │ │ ├── SDL-WinRT81.vcxproj │ │ │ │ └── SDL-WinRT81.vcxproj.filters │ │ │ └── tests │ │ │ │ ├── loopwave │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ └── loopwave_VS2012.vcxproj │ │ │ │ └── testthread │ │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ └── testthread_VS2012.vcxproj │ │ ├── VisualC │ │ │ ├── SDL.sln │ │ │ ├── SDL │ │ │ │ ├── SDL.vcxproj │ │ │ │ └── SDL.vcxproj.filters │ │ │ ├── SDLmain │ │ │ │ └── SDLmain.vcxproj │ │ │ ├── SDLtest │ │ │ │ └── SDLtest.vcxproj │ │ │ ├── clean.sh │ │ │ ├── tests │ │ │ │ ├── checkkeys │ │ │ │ │ └── checkkeys.vcxproj │ │ │ │ ├── controllermap │ │ │ │ │ └── controllermap.vcxproj │ │ │ │ ├── loopwave │ │ │ │ │ └── loopwave.vcxproj │ │ │ │ ├── testatomic │ │ │ │ │ └── testatomic.vcxproj │ │ │ │ ├── testautomation │ │ │ │ │ └── testautomation.vcxproj │ │ │ │ ├── testdraw2 │ │ │ │ │ └── testdraw2.vcxproj │ │ │ │ ├── testfile │ │ │ │ │ └── testfile.vcxproj │ │ │ │ ├── testgamecontroller │ │ │ │ │ └── testgamecontroller.vcxproj │ │ │ │ ├── testgesture │ │ │ │ │ └── testgesture.vcxproj │ │ │ │ ├── testgl2 │ │ │ │ │ └── testgl2.vcxproj │ │ │ │ ├── testgles2 │ │ │ │ │ └── testgles2.vcxproj │ │ │ │ ├── testjoystick │ │ │ │ │ └── testjoystick.vcxproj │ │ │ │ ├── testoverlay2 │ │ │ │ │ └── testoverlay2.vcxproj │ │ │ │ ├── testplatform │ │ │ │ │ └── testplatform.vcxproj │ │ │ │ ├── testpower │ │ │ │ │ └── testpower.vcxproj │ │ │ │ ├── testrendertarget │ │ │ │ │ └── testrendertarget.vcxproj │ │ │ │ ├── testrumble │ │ │ │ │ └── testrumble.vcxproj │ │ │ │ ├── testscale │ │ │ │ │ └── testscale.vcxproj │ │ │ │ ├── testsensor │ │ │ │ │ └── testsensor.vcxproj │ │ │ │ ├── testshape │ │ │ │ │ └── testshape.vcxproj │ │ │ │ ├── testsprite2 │ │ │ │ │ └── testsprite2.vcxproj │ │ │ │ ├── testvulkan │ │ │ │ │ └── testvulkan.vcxproj │ │ │ │ └── testyuv │ │ │ │ │ └── testyuv.vcxproj │ │ │ └── visualtest │ │ │ │ ├── unittest │ │ │ │ └── testquit │ │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ │ └── visualtest_VS2012.vcxproj │ │ ├── WhatsNew.txt │ │ ├── Xcode-iOS │ │ │ ├── Demos │ │ │ │ ├── Default.png │ │ │ │ ├── Demos.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── README │ │ │ │ ├── data │ │ │ │ │ ├── bitmapfont │ │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ │ └── license.txt │ │ │ │ │ ├── drums │ │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ │ ├── icon.bmp │ │ │ │ │ ├── ship.bmp │ │ │ │ │ ├── space.bmp │ │ │ │ │ └── stroke.bmp │ │ │ │ ├── iOS Launch Screen.storyboard │ │ │ │ └── src │ │ │ │ │ ├── accelerometer.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── fireworks.c │ │ │ │ │ ├── happy.c │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── mixer.c │ │ │ │ │ ├── rectangles.c │ │ │ │ │ └── touch.c │ │ │ ├── SDLtest │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── Template │ │ │ │ └── SDL iOS Application │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── main.c │ │ │ └── Test │ │ │ │ ├── Info.plist │ │ │ │ ├── README │ │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Xcode │ │ │ ├── SDL │ │ │ │ ├── Info-Framework.plist │ │ │ │ ├── SDL.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── hidapi │ │ │ │ │ └── Info.plist │ │ │ │ └── pkg-support │ │ │ │ │ ├── SDL.info │ │ │ │ │ ├── resources │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ └── SDL_DS_Store │ │ │ │ │ └── sdl_logo.pdf │ │ │ ├── SDLTest │ │ │ │ ├── SDLTest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── TestDropFile-Info.plist │ │ │ └── XcodeDocSet │ │ │ │ └── Doxyfile │ │ ├── acinclude │ │ │ ├── ac_check_define.m4 │ │ │ ├── alsa.m4 │ │ │ ├── ax_check_compiler_flags.m4 │ │ │ ├── ax_gcc_archflag.m4 │ │ │ ├── ax_gcc_x86_cpuid.m4 │ │ │ ├── esd.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ └── pkg.m4 │ │ ├── android-project-ant │ │ │ ├── AndroidManifest.xml │ │ │ ├── ant.properties │ │ │ ├── build.properties │ │ │ ├── build.xml │ │ │ ├── default.properties │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Android_static.mk │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ ├── android-project │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Application.mk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── src │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libsdl │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ │ ├── SDL.java │ │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ │ └── SDLControllerManager.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── autogen.sh │ │ ├── build-scripts │ │ │ ├── androidbuild.sh │ │ │ ├── androidbuildlibs.sh │ │ │ ├── checker-buildbot.sh │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── emscripten-buildbot.sh │ │ │ ├── g++-fat.sh │ │ │ ├── gcc-fat.sh │ │ │ ├── git-pre-push-hook.pl │ │ │ ├── install-sh │ │ │ ├── iosbuild.sh │ │ │ ├── ltmain.sh │ │ │ ├── mkinstalldirs │ │ │ ├── nacl-buildbot.sh │ │ │ ├── naclbuild.sh │ │ │ ├── os2-buildbot.sh │ │ │ ├── raspberrypi-buildbot.sh │ │ │ ├── showrev.sh │ │ │ ├── strip_fPIC.sh │ │ │ ├── update-copyright.sh │ │ │ ├── updaterev.sh │ │ │ ├── wikiheaders.pl │ │ │ ├── windows-buildbot-zipper.bat │ │ │ ├── winrtbuild.bat │ │ │ └── winrtbuild.ps1 │ │ ├── cmake │ │ │ ├── macros.cmake │ │ │ └── sdlchecks.cmake │ │ ├── cmake_uninstall.cmake.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── libsdl2-2.0-0-udeb.install │ │ │ ├── libsdl2-2.0-0.install │ │ │ ├── libsdl2-dev.install │ │ │ ├── libsdl2-dev.manpages │ │ │ ├── rules │ │ │ ├── sdl2-config.1 │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── docs │ │ │ ├── README-android.md │ │ │ ├── README-cmake.md │ │ │ ├── README-directfb.md │ │ │ ├── README-dynapi.md │ │ │ ├── README-emscripten.md │ │ │ ├── README-gesture.md │ │ │ ├── README-git.md │ │ │ ├── README-hg.md │ │ │ ├── README-ios.md │ │ │ ├── README-kmsbsd.md │ │ │ ├── README-linux.md │ │ │ ├── README-macosx.md │ │ │ ├── README-nacl.md │ │ │ ├── README-os2.md │ │ │ ├── README-pandora.md │ │ │ ├── README-platforms.md │ │ │ ├── README-porting.md │ │ │ ├── README-psp.md │ │ │ ├── README-raspberrypi.md │ │ │ ├── README-touch.md │ │ │ ├── README-visualc.md │ │ │ ├── README-vita.md │ │ │ ├── README-wince.md │ │ │ ├── README-windows.md │ │ │ ├── README-winrt.md │ │ │ ├── README.md │ │ │ └── doxyfile │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.cmake │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_psp.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── sdl2-config-version.cmake.in │ │ ├── sdl2-config.cmake.in │ │ ├── sdl2-config.in │ │ ├── sdl2.m4 │ │ ├── sdl2.pc.in │ │ ├── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_dataqueue.c │ │ │ ├── SDL_dataqueue.h │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_hints_c.h │ │ │ ├── SDL_internal.h │ │ │ ├── SDL_log.c │ │ │ ├── atomic │ │ │ │ ├── SDL_atomic.c │ │ │ │ └── SDL_spinlock.c │ │ │ ├── audio │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ ├── aaudio │ │ │ │ │ ├── SDL_aaudio.c │ │ │ │ │ ├── SDL_aaudio.h │ │ │ │ │ └── SDL_aaudiofuncs.h │ │ │ │ ├── alsa │ │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ │ └── SDL_alsa_audio.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ │ └── SDL_androidaudio.h │ │ │ │ ├── arts │ │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ │ └── SDL_artsaudio.h │ │ │ │ ├── coreaudio │ │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ │ └── SDL_coreaudio.m │ │ │ │ ├── directsound │ │ │ │ │ ├── SDL_directsound.c │ │ │ │ │ └── SDL_directsound.h │ │ │ │ ├── disk │ │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ │ └── SDL_diskaudio.h │ │ │ │ ├── dsp │ │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ │ └── SDL_dspaudio.h │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ │ └── SDL_dummyaudio.h │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ │ ├── esd │ │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ │ └── SDL_esdaudio.h │ │ │ │ ├── fusionsound │ │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ │ └── SDL_fsaudio.h │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ │ └── SDL_haikuaudio.h │ │ │ │ ├── jack │ │ │ │ │ ├── SDL_jackaudio.c │ │ │ │ │ └── SDL_jackaudio.h │ │ │ │ ├── nacl │ │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ │ └── SDL_naclaudio.h │ │ │ │ ├── nas │ │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ │ └── SDL_nasaudio.h │ │ │ │ ├── netbsd │ │ │ │ │ ├── SDL_netbsdaudio.c │ │ │ │ │ └── SDL_netbsdaudio.h │ │ │ │ ├── openslES │ │ │ │ │ ├── SDL_openslES.c │ │ │ │ │ └── SDL_openslES.h │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_os2audio.c │ │ │ │ │ └── SDL_os2audio.h │ │ │ │ ├── paudio │ │ │ │ │ ├── SDL_paudio.c │ │ │ │ │ └── SDL_paudio.h │ │ │ │ ├── pipewire │ │ │ │ │ ├── SDL_pipewire.c │ │ │ │ │ └── SDL_pipewire.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ │ └── SDL_pspaudio.h │ │ │ │ ├── pulseaudio │ │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ │ └── SDL_pulseaudio.h │ │ │ │ ├── qsa │ │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ │ └── SDL_qsa_audio.h │ │ │ │ ├── sndio │ │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ │ └── SDL_sndioaudio.h │ │ │ │ ├── sun │ │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ │ └── SDL_sunaudio.h │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_vitaaudio.c │ │ │ │ │ └── SDL_vitaaudio.h │ │ │ │ ├── wasapi │ │ │ │ │ ├── SDL_wasapi.c │ │ │ │ │ ├── SDL_wasapi.h │ │ │ │ │ ├── SDL_wasapi_win32.c │ │ │ │ │ └── SDL_wasapi_winrt.cpp │ │ │ │ └── winmm │ │ │ │ │ ├── SDL_winmm.c │ │ │ │ │ └── SDL_winmm.h │ │ │ ├── core │ │ │ │ ├── android │ │ │ │ │ ├── SDL_android.c │ │ │ │ │ ├── SDL_android.h │ │ │ │ │ └── keyinfotable.h │ │ │ │ ├── freebsd │ │ │ │ │ ├── SDL_evdev_kbd_default_keyaccmap.h │ │ │ │ │ └── SDL_evdev_kbd_freebsd.c │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_dbus.c │ │ │ │ │ ├── SDL_dbus.h │ │ │ │ │ ├── SDL_evdev.c │ │ │ │ │ ├── SDL_evdev.h │ │ │ │ │ ├── SDL_evdev_capabilities.c │ │ │ │ │ ├── SDL_evdev_capabilities.h │ │ │ │ │ ├── SDL_evdev_kbd.c │ │ │ │ │ ├── SDL_evdev_kbd.h │ │ │ │ │ ├── SDL_evdev_kbd_default_accents.h │ │ │ │ │ ├── SDL_evdev_kbd_default_keymap.h │ │ │ │ │ ├── SDL_fcitx.c │ │ │ │ │ ├── SDL_fcitx.h │ │ │ │ │ ├── SDL_ibus.c │ │ │ │ │ ├── SDL_ibus.h │ │ │ │ │ ├── SDL_ime.c │ │ │ │ │ ├── SDL_ime.h │ │ │ │ │ ├── SDL_threadprio.c │ │ │ │ │ ├── SDL_udev.c │ │ │ │ │ └── SDL_udev.h │ │ │ │ ├── openbsd │ │ │ │ │ ├── SDL_wscons.h │ │ │ │ │ ├── SDL_wscons_kbd.c │ │ │ │ │ └── SDL_wscons_mouse.c │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_os2.c │ │ │ │ │ ├── SDL_os2.h │ │ │ │ │ └── geniconv │ │ │ │ │ │ ├── geniconv.c │ │ │ │ │ │ ├── geniconv.h │ │ │ │ │ │ ├── iconv.h │ │ │ │ │ │ ├── os2cp.c │ │ │ │ │ │ ├── os2cp.h │ │ │ │ │ │ ├── os2iconv.c │ │ │ │ │ │ ├── sys2utf8.c │ │ │ │ │ │ └── test.c │ │ │ │ ├── unix │ │ │ │ │ ├── SDL_poll.c │ │ │ │ │ └── SDL_poll.h │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_directx.h │ │ │ │ │ ├── SDL_hid.c │ │ │ │ │ ├── SDL_hid.h │ │ │ │ │ ├── SDL_windows.c │ │ │ │ │ ├── SDL_windows.h │ │ │ │ │ ├── SDL_xinput.c │ │ │ │ │ └── SDL_xinput.h │ │ │ │ └── winrt │ │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ │ └── SDL_winrtapp_xaml.h │ │ │ ├── cpuinfo │ │ │ │ └── SDL_cpuinfo.c │ │ │ ├── dynapi │ │ │ │ ├── SDL_dynapi.c │ │ │ │ ├── SDL_dynapi.h │ │ │ │ ├── SDL_dynapi_overrides.h │ │ │ │ ├── SDL_dynapi_procs.h │ │ │ │ └── gendynapi.pl │ │ │ ├── events │ │ │ │ ├── SDL_clipboardevents.c │ │ │ │ ├── SDL_clipboardevents_c.h │ │ │ │ ├── SDL_displayevents.c │ │ │ │ ├── SDL_displayevents_c.h │ │ │ │ ├── SDL_dropevents.c │ │ │ │ ├── SDL_dropevents_c.h │ │ │ │ ├── SDL_events.c │ │ │ │ ├── SDL_events_c.h │ │ │ │ ├── SDL_gesture.c │ │ │ │ ├── SDL_gesture_c.h │ │ │ │ ├── SDL_keyboard.c │ │ │ │ ├── SDL_keyboard_c.h │ │ │ │ ├── SDL_mouse.c │ │ │ │ ├── SDL_mouse_c.h │ │ │ │ ├── SDL_quit.c │ │ │ │ ├── SDL_sysevents.h │ │ │ │ ├── SDL_touch.c │ │ │ │ ├── SDL_touch_c.h │ │ │ │ ├── SDL_windowevents.c │ │ │ │ ├── SDL_windowevents_c.h │ │ │ │ ├── blank_cursor.h │ │ │ │ ├── default_cursor.h │ │ │ │ ├── scancodes_darwin.h │ │ │ │ ├── scancodes_linux.h │ │ │ │ ├── scancodes_windows.h │ │ │ │ └── scancodes_xfree86.h │ │ │ ├── file │ │ │ │ ├── SDL_rwops.c │ │ │ │ └── cocoa │ │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ │ ├── filesystem │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── cocoa │ │ │ │ │ └── SDL_sysfilesystem.m │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_sysfilesystem.cpp │ │ │ ├── haptic │ │ │ │ ├── SDL_haptic.c │ │ │ │ ├── SDL_haptic_c.h │ │ │ │ ├── SDL_syshaptic.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ │ └── SDL_syshaptic_c.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ │ └── SDL_syshaptic_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputhaptic.c │ │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ │ └── SDL_xinputhaptic_c.h │ │ │ ├── hidapi │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── HACKING.txt │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── SDL_hidapi.c │ │ │ │ ├── SDL_hidapi.h │ │ │ │ ├── android │ │ │ │ │ ├── hid.cpp │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ ├── bootstrap │ │ │ │ ├── configure.ac │ │ │ │ ├── doxygen │ │ │ │ │ └── Doxyfile │ │ │ │ ├── hidapi │ │ │ │ │ └── hidapi.h │ │ │ │ ├── hidtest │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hidtest.cpp │ │ │ │ ├── ios │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hid.m │ │ │ │ ├── libusb │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── hid.c │ │ │ │ │ └── hidusb.cpp │ │ │ │ ├── linux │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── hid.c │ │ │ │ │ └── hidraw.cpp │ │ │ │ ├── m4 │ │ │ │ │ ├── ax_pthread.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── mac │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hid.c │ │ │ │ ├── pc │ │ │ │ │ ├── hidapi-hidraw.pc.in │ │ │ │ │ ├── hidapi-libusb.pc.in │ │ │ │ │ └── hidapi.pc.in │ │ │ │ ├── testgui │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── Makefile.mac │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── TestGUI.app.in │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ └── Signal11.icns │ │ │ │ │ ├── copy_to_bundle.sh │ │ │ │ │ ├── mac_support.cpp │ │ │ │ │ ├── mac_support.h │ │ │ │ │ ├── mac_support_cocoa.m │ │ │ │ │ ├── start.sh │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── testgui.sln │ │ │ │ │ └── testgui.vcproj │ │ │ │ ├── udev │ │ │ │ │ └── 99-hid.rules │ │ │ │ └── windows │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── ddk_build │ │ │ │ │ ├── hidapi.def │ │ │ │ │ └── sources │ │ │ │ │ ├── hid.c │ │ │ │ │ ├── hidapi.sln │ │ │ │ │ ├── hidapi.vcproj │ │ │ │ │ └── hidtest.vcproj │ │ │ ├── joystick │ │ │ │ ├── SDL_gamecontroller.c │ │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ │ ├── SDL_joystick.c │ │ │ │ ├── SDL_joystick_c.h │ │ │ │ ├── SDL_sysjoystick.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── bsd │ │ │ │ │ └── SDL_bsdjoystick.c │ │ │ │ ├── check_8bitdo.sh │ │ │ │ ├── controller_type.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_iokitjoystick.c │ │ │ │ │ └── SDL_iokitjoystick_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_haikujoystick.cc │ │ │ │ ├── hidapi │ │ │ │ │ ├── SDL_hidapi_gamecube.c │ │ │ │ │ ├── SDL_hidapi_ps4.c │ │ │ │ │ ├── SDL_hidapi_ps5.c │ │ │ │ │ ├── SDL_hidapi_rumble.c │ │ │ │ │ ├── SDL_hidapi_rumble.h │ │ │ │ │ ├── SDL_hidapi_stadia.c │ │ │ │ │ ├── SDL_hidapi_steam.c │ │ │ │ │ ├── SDL_hidapi_switch.c │ │ │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ │ │ ├── SDL_hidapi_xbox360w.c │ │ │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ │ │ ├── SDL_hidapijoystick.c │ │ │ │ │ ├── SDL_hidapijoystick_c.h │ │ │ │ │ └── steam │ │ │ │ │ │ ├── controller_constants.h │ │ │ │ │ │ └── controller_structs.h │ │ │ │ ├── iphoneos │ │ │ │ │ ├── SDL_mfijoystick.m │ │ │ │ │ └── SDL_mfijoystick_c.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_os2joystick.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── sort_controllers.py │ │ │ │ ├── steam │ │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ │ └── SDL_steamcontroller.h │ │ │ │ ├── usb_ids.h │ │ │ │ ├── virtual │ │ │ │ │ ├── SDL_virtualjoystick.c │ │ │ │ │ └── SDL_virtualjoystick_c.h │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ │ ├── SDL_rawinputjoystick.c │ │ │ │ │ ├── SDL_rawinputjoystick_c.h │ │ │ │ │ ├── SDL_windows_gaming_input.c │ │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ ├── libm │ │ │ │ ├── e_atan2.c │ │ │ │ ├── e_exp.c │ │ │ │ ├── e_fmod.c │ │ │ │ ├── e_log.c │ │ │ │ ├── e_log10.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── k_tan.c │ │ │ │ ├── math_libm.h │ │ │ │ ├── math_private.h │ │ │ │ ├── s_atan.c │ │ │ │ ├── s_copysign.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_sin.c │ │ │ │ └── s_tan.c │ │ │ ├── loadso │ │ │ │ ├── dlopen │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── locale │ │ │ │ ├── SDL_locale.c │ │ │ │ ├── SDL_syslocale.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syslocale.cc │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_syslocale.m │ │ │ │ ├── unix │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_syslocale.c │ │ │ ├── main │ │ │ │ ├── android │ │ │ │ │ └── SDL_android_main.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_dummy_main.c │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_BApp.h │ │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ │ └── SDL_BeApp.h │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_nacl_main.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_psp_main.c │ │ │ │ ├── uikit │ │ │ │ │ └── SDL_uikit_main.c │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_windows_main.c │ │ │ │ │ └── version.rc │ │ │ │ └── winrt │ │ │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ │ │ ├── SDL2-WinRTResources.rc │ │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ │ ├── misc │ │ │ │ ├── SDL_sysurl.h │ │ │ │ ├── SDL_url.c │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysurl.cc │ │ │ │ ├── ios │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── riscos │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_sysurl.cpp │ │ │ ├── power │ │ │ │ ├── SDL_power.c │ │ │ │ ├── SDL_syspower.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── uikit │ │ │ │ │ ├── SDL_syspower.h │ │ │ │ │ └── SDL_syspower.m │ │ │ │ ├── vita │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_syspower.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_syspower.cpp │ │ │ ├── render │ │ │ │ ├── SDL_d3dmath.c │ │ │ │ ├── SDL_d3dmath.h │ │ │ │ ├── SDL_render.c │ │ │ │ ├── SDL_sysrender.h │ │ │ │ ├── SDL_yuv_sw.c │ │ │ │ ├── SDL_yuv_sw_c.h │ │ │ │ ├── direct3d │ │ │ │ │ ├── SDL_render_d3d.c │ │ │ │ │ ├── SDL_shaders_d3d.c │ │ │ │ │ └── SDL_shaders_d3d.h │ │ │ │ ├── direct3d11 │ │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ │ ├── SDL_render_winrt.h │ │ │ │ │ ├── SDL_shaders_d3d11.c │ │ │ │ │ └── SDL_shaders_d3d11.h │ │ │ │ ├── metal │ │ │ │ │ ├── SDL_render_metal.m │ │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ │ ├── SDL_shaders_metal_iphonesimulator.h │ │ │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ │ │ ├── SDL_shaders_metal_tvsimulator.h │ │ │ │ │ └── build-metal-shaders.sh │ │ │ │ ├── opengl │ │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ │ ├── SDL_render_gl.c │ │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ │ └── SDL_shaders_gl.h │ │ │ │ ├── opengles │ │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ │ └── SDL_render_gles.c │ │ │ │ ├── opengles2 │ │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ │ └── SDL_shaders_gles2.h │ │ │ │ ├── psp │ │ │ │ │ └── SDL_render_psp.c │ │ │ │ ├── software │ │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ │ ├── SDL_blendline.c │ │ │ │ │ ├── SDL_blendline.h │ │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ │ ├── SDL_draw.h │ │ │ │ │ ├── SDL_drawline.c │ │ │ │ │ ├── SDL_drawline.h │ │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ │ ├── SDL_render_sw.c │ │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ │ ├── SDL_rotate.c │ │ │ │ │ └── SDL_rotate.h │ │ │ │ └── vitagxm │ │ │ │ │ ├── SDL_render_vita_gxm.c │ │ │ │ │ ├── SDL_render_vita_gxm_memory.c │ │ │ │ │ ├── SDL_render_vita_gxm_memory.h │ │ │ │ │ ├── SDL_render_vita_gxm_shaders.h │ │ │ │ │ ├── SDL_render_vita_gxm_tools.c │ │ │ │ │ ├── SDL_render_vita_gxm_tools.h │ │ │ │ │ ├── SDL_render_vita_gxm_types.h │ │ │ │ │ └── shader_src │ │ │ │ │ ├── clear_f.cg │ │ │ │ │ ├── clear_v.cg │ │ │ │ │ ├── color_f.cg │ │ │ │ │ ├── color_v.cg │ │ │ │ │ ├── texture_f.cg │ │ │ │ │ ├── texture_tint_f.cg │ │ │ │ │ └── texture_v.cg │ │ │ ├── sensor │ │ │ │ ├── SDL_sensor.c │ │ │ │ ├── SDL_sensor_c.h │ │ │ │ ├── SDL_syssensor.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidsensor.c │ │ │ │ │ └── SDL_androidsensor.h │ │ │ │ ├── coremotion │ │ │ │ │ ├── SDL_coremotionsensor.h │ │ │ │ │ └── SDL_coremotionsensor.m │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummysensor.c │ │ │ │ │ └── SDL_dummysensor.h │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_vitasensor.c │ │ │ │ │ └── SDL_vitasensor.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_windowssensor.c │ │ │ │ │ └── SDL_windowssensor.h │ │ │ ├── stdlib │ │ │ │ ├── SDL_crc32.c │ │ │ │ ├── SDL_getenv.c │ │ │ │ ├── SDL_iconv.c │ │ │ │ ├── SDL_malloc.c │ │ │ │ ├── SDL_qsort.c │ │ │ │ ├── SDL_stdlib.c │ │ │ │ ├── SDL_string.c │ │ │ │ └── SDL_strtokr.c │ │ │ ├── test │ │ │ │ ├── SDL_test_assert.c │ │ │ │ ├── SDL_test_common.c │ │ │ │ ├── SDL_test_compare.c │ │ │ │ ├── SDL_test_crc32.c │ │ │ │ ├── SDL_test_font.c │ │ │ │ ├── SDL_test_fuzzer.c │ │ │ │ ├── SDL_test_harness.c │ │ │ │ ├── SDL_test_imageBlit.c │ │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ │ ├── SDL_test_imageFace.c │ │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ │ ├── SDL_test_log.c │ │ │ │ ├── SDL_test_md5.c │ │ │ │ ├── SDL_test_memory.c │ │ │ │ └── SDL_test_random.c │ │ │ ├── thread │ │ │ │ ├── SDL_systhread.h │ │ │ │ ├── SDL_thread.c │ │ │ │ ├── SDL_thread_c.h │ │ │ │ ├── generic │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ ├── SDL_systls.c │ │ │ │ │ └── SDL_systls_c.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── pthread │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── stdcpp │ │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_syscond_srw.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ ├── timer │ │ │ │ ├── SDL_timer.c │ │ │ │ ├── SDL_timer_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_systimer.c │ │ │ └── video │ │ │ │ ├── SDL_RLEaccel.c │ │ │ │ ├── SDL_RLEaccel_c.h │ │ │ │ ├── SDL_blit.c │ │ │ │ ├── SDL_blit.h │ │ │ │ ├── SDL_blit_0.c │ │ │ │ ├── SDL_blit_1.c │ │ │ │ ├── SDL_blit_A.c │ │ │ │ ├── SDL_blit_N.c │ │ │ │ ├── SDL_blit_auto.c │ │ │ │ ├── SDL_blit_auto.h │ │ │ │ ├── SDL_blit_copy.c │ │ │ │ ├── SDL_blit_copy.h │ │ │ │ ├── SDL_blit_slow.c │ │ │ │ ├── SDL_blit_slow.h │ │ │ │ ├── SDL_bmp.c │ │ │ │ ├── SDL_clipboard.c │ │ │ │ ├── SDL_egl.c │ │ │ │ ├── SDL_egl_c.h │ │ │ │ ├── SDL_fillrect.c │ │ │ │ ├── SDL_pixels.c │ │ │ │ ├── SDL_pixels_c.h │ │ │ │ ├── SDL_rect.c │ │ │ │ ├── SDL_rect_c.h │ │ │ │ ├── SDL_shape.c │ │ │ │ ├── SDL_shape_internals.h │ │ │ │ ├── SDL_stretch.c │ │ │ │ ├── SDL_surface.c │ │ │ │ ├── SDL_sysvideo.h │ │ │ │ ├── SDL_video.c │ │ │ │ ├── SDL_vulkan_internal.h │ │ │ │ ├── SDL_vulkan_utils.c │ │ │ │ ├── SDL_yuv.c │ │ │ │ ├── SDL_yuv_c.h │ │ │ │ ├── android │ │ │ │ ├── SDL_androidclipboard.c │ │ │ │ ├── SDL_androidclipboard.h │ │ │ │ ├── SDL_androidevents.c │ │ │ │ ├── SDL_androidevents.h │ │ │ │ ├── SDL_androidgl.c │ │ │ │ ├── SDL_androidgl.h │ │ │ │ ├── SDL_androidkeyboard.c │ │ │ │ ├── SDL_androidkeyboard.h │ │ │ │ ├── SDL_androidmessagebox.c │ │ │ │ ├── SDL_androidmessagebox.h │ │ │ │ ├── SDL_androidmouse.c │ │ │ │ ├── SDL_androidmouse.h │ │ │ │ ├── SDL_androidtouch.c │ │ │ │ ├── SDL_androidtouch.h │ │ │ │ ├── SDL_androidvideo.c │ │ │ │ ├── SDL_androidvideo.h │ │ │ │ ├── SDL_androidvulkan.c │ │ │ │ ├── SDL_androidvulkan.h │ │ │ │ ├── SDL_androidwindow.c │ │ │ │ └── SDL_androidwindow.h │ │ │ │ ├── cocoa │ │ │ │ ├── SDL_cocoaclipboard.h │ │ │ │ ├── SDL_cocoaclipboard.m │ │ │ │ ├── SDL_cocoaevents.h │ │ │ │ ├── SDL_cocoaevents.m │ │ │ │ ├── SDL_cocoakeyboard.h │ │ │ │ ├── SDL_cocoakeyboard.m │ │ │ │ ├── SDL_cocoamessagebox.h │ │ │ │ ├── SDL_cocoamessagebox.m │ │ │ │ ├── SDL_cocoametalview.h │ │ │ │ ├── SDL_cocoametalview.m │ │ │ │ ├── SDL_cocoamodes.h │ │ │ │ ├── SDL_cocoamodes.m │ │ │ │ ├── SDL_cocoamouse.h │ │ │ │ ├── SDL_cocoamouse.m │ │ │ │ ├── SDL_cocoaopengl.h │ │ │ │ ├── SDL_cocoaopengl.m │ │ │ │ ├── SDL_cocoaopengles.h │ │ │ │ ├── SDL_cocoaopengles.m │ │ │ │ ├── SDL_cocoashape.h │ │ │ │ ├── SDL_cocoashape.m │ │ │ │ ├── SDL_cocoavideo.h │ │ │ │ ├── SDL_cocoavideo.m │ │ │ │ ├── SDL_cocoavulkan.h │ │ │ │ ├── SDL_cocoavulkan.m │ │ │ │ ├── SDL_cocoawindow.h │ │ │ │ └── SDL_cocoawindow.m │ │ │ │ ├── directfb │ │ │ │ ├── SDL_DirectFB_WM.c │ │ │ │ ├── SDL_DirectFB_WM.h │ │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ │ ├── SDL_DirectFB_events.c │ │ │ │ ├── SDL_DirectFB_events.h │ │ │ │ ├── SDL_DirectFB_modes.c │ │ │ │ ├── SDL_DirectFB_modes.h │ │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ │ ├── SDL_DirectFB_render.c │ │ │ │ ├── SDL_DirectFB_render.h │ │ │ │ ├── SDL_DirectFB_shape.c │ │ │ │ ├── SDL_DirectFB_shape.h │ │ │ │ ├── SDL_DirectFB_video.c │ │ │ │ ├── SDL_DirectFB_video.h │ │ │ │ ├── SDL_DirectFB_vulkan.c │ │ │ │ ├── SDL_DirectFB_vulkan.h │ │ │ │ ├── SDL_DirectFB_window.c │ │ │ │ └── SDL_DirectFB_window.h │ │ │ │ ├── dummy │ │ │ │ ├── SDL_nullevents.c │ │ │ │ ├── SDL_nullevents_c.h │ │ │ │ ├── SDL_nullframebuffer.c │ │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ │ ├── SDL_nullvideo.c │ │ │ │ └── SDL_nullvideo.h │ │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenevents.c │ │ │ │ ├── SDL_emscriptenevents.h │ │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ │ ├── SDL_emscriptenmouse.c │ │ │ │ ├── SDL_emscriptenmouse.h │ │ │ │ ├── SDL_emscriptenopengles.c │ │ │ │ ├── SDL_emscriptenopengles.h │ │ │ │ ├── SDL_emscriptenvideo.c │ │ │ │ └── SDL_emscriptenvideo.h │ │ │ │ ├── haiku │ │ │ │ ├── SDL_BWin.h │ │ │ │ ├── SDL_bclipboard.cc │ │ │ │ ├── SDL_bclipboard.h │ │ │ │ ├── SDL_bevents.cc │ │ │ │ ├── SDL_bevents.h │ │ │ │ ├── SDL_bframebuffer.cc │ │ │ │ ├── SDL_bframebuffer.h │ │ │ │ ├── SDL_bkeyboard.cc │ │ │ │ ├── SDL_bkeyboard.h │ │ │ │ ├── SDL_bmessagebox.cc │ │ │ │ ├── SDL_bmessagebox.h │ │ │ │ ├── SDL_bmodes.cc │ │ │ │ ├── SDL_bmodes.h │ │ │ │ ├── SDL_bopengl.cc │ │ │ │ ├── SDL_bopengl.h │ │ │ │ ├── SDL_bvideo.cc │ │ │ │ ├── SDL_bvideo.h │ │ │ │ ├── SDL_bwindow.cc │ │ │ │ └── SDL_bwindow.h │ │ │ │ ├── khronos │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ ├── GLES2 │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ └── gl2platform.h │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ └── vulkan │ │ │ │ │ ├── vk_icd.h │ │ │ │ │ ├── vk_layer.h │ │ │ │ │ ├── vk_platform.h │ │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ │ ├── vulkan.h │ │ │ │ │ ├── vulkan.hpp │ │ │ │ │ ├── vulkan_android.h │ │ │ │ │ ├── vulkan_beta.h │ │ │ │ │ ├── vulkan_core.h │ │ │ │ │ ├── vulkan_directfb.h │ │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ │ ├── vulkan_ggp.h │ │ │ │ │ ├── vulkan_ios.h │ │ │ │ │ ├── vulkan_macos.h │ │ │ │ │ ├── vulkan_metal.h │ │ │ │ │ ├── vulkan_vi.h │ │ │ │ │ ├── vulkan_wayland.h │ │ │ │ │ ├── vulkan_win32.h │ │ │ │ │ ├── vulkan_xcb.h │ │ │ │ │ ├── vulkan_xlib.h │ │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ │ ├── kmsdrm │ │ │ │ ├── SDL_kmsdrmdyn.c │ │ │ │ ├── SDL_kmsdrmdyn.h │ │ │ │ ├── SDL_kmsdrmevents.c │ │ │ │ ├── SDL_kmsdrmevents.h │ │ │ │ ├── SDL_kmsdrmmouse.c │ │ │ │ ├── SDL_kmsdrmmouse.h │ │ │ │ ├── SDL_kmsdrmopengles.c │ │ │ │ ├── SDL_kmsdrmopengles.h │ │ │ │ ├── SDL_kmsdrmsym.h │ │ │ │ ├── SDL_kmsdrmvideo.c │ │ │ │ ├── SDL_kmsdrmvideo.h │ │ │ │ ├── SDL_kmsdrmvulkan.c │ │ │ │ └── SDL_kmsdrmvulkan.h │ │ │ │ ├── nacl │ │ │ │ ├── SDL_naclevents.c │ │ │ │ ├── SDL_naclevents_c.h │ │ │ │ ├── SDL_naclglue.c │ │ │ │ ├── SDL_naclopengles.c │ │ │ │ ├── SDL_naclopengles.h │ │ │ │ ├── SDL_naclvideo.c │ │ │ │ ├── SDL_naclvideo.h │ │ │ │ ├── SDL_naclwindow.c │ │ │ │ └── SDL_naclwindow.h │ │ │ │ ├── offscreen │ │ │ │ ├── SDL_offscreenevents.c │ │ │ │ ├── SDL_offscreenevents_c.h │ │ │ │ ├── SDL_offscreenframebuffer.c │ │ │ │ ├── SDL_offscreenframebuffer_c.h │ │ │ │ ├── SDL_offscreenopengl.c │ │ │ │ ├── SDL_offscreenopengl.h │ │ │ │ ├── SDL_offscreenvideo.c │ │ │ │ ├── SDL_offscreenvideo.h │ │ │ │ ├── SDL_offscreenwindow.c │ │ │ │ └── SDL_offscreenwindow.h │ │ │ │ ├── os2 │ │ │ │ ├── SDL_gradd.h │ │ │ │ ├── SDL_os2dive.c │ │ │ │ ├── SDL_os2messagebox.c │ │ │ │ ├── SDL_os2messagebox.h │ │ │ │ ├── SDL_os2mouse.c │ │ │ │ ├── SDL_os2mouse.h │ │ │ │ ├── SDL_os2output.h │ │ │ │ ├── SDL_os2util.c │ │ │ │ ├── SDL_os2util.h │ │ │ │ ├── SDL_os2video.c │ │ │ │ ├── SDL_os2video.h │ │ │ │ └── SDL_os2vman.c │ │ │ │ ├── pandora │ │ │ │ ├── SDL_pandora.c │ │ │ │ ├── SDL_pandora.h │ │ │ │ ├── SDL_pandora_events.c │ │ │ │ └── SDL_pandora_events.h │ │ │ │ ├── psp │ │ │ │ ├── SDL_pspevents.c │ │ │ │ ├── SDL_pspevents_c.h │ │ │ │ ├── SDL_pspgl.c │ │ │ │ ├── SDL_pspgl_c.h │ │ │ │ ├── SDL_pspmouse.c │ │ │ │ ├── SDL_pspmouse_c.h │ │ │ │ ├── SDL_pspvideo.c │ │ │ │ └── SDL_pspvideo.h │ │ │ │ ├── qnx │ │ │ │ ├── gl.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── sdl_qnx.h │ │ │ │ └── video.c │ │ │ │ ├── raspberry │ │ │ │ ├── SDL_rpievents.c │ │ │ │ ├── SDL_rpievents_c.h │ │ │ │ ├── SDL_rpimouse.c │ │ │ │ ├── SDL_rpimouse.h │ │ │ │ ├── SDL_rpiopengles.c │ │ │ │ ├── SDL_rpiopengles.h │ │ │ │ ├── SDL_rpivideo.c │ │ │ │ └── SDL_rpivideo.h │ │ │ │ ├── sdlgenblit.pl │ │ │ │ ├── uikit │ │ │ │ ├── SDL_uikitappdelegate.h │ │ │ │ ├── SDL_uikitappdelegate.m │ │ │ │ ├── SDL_uikitclipboard.h │ │ │ │ ├── SDL_uikitclipboard.m │ │ │ │ ├── SDL_uikitevents.h │ │ │ │ ├── SDL_uikitevents.m │ │ │ │ ├── SDL_uikitmessagebox.h │ │ │ │ ├── SDL_uikitmessagebox.m │ │ │ │ ├── SDL_uikitmetalview.h │ │ │ │ ├── SDL_uikitmetalview.m │ │ │ │ ├── SDL_uikitmodes.h │ │ │ │ ├── SDL_uikitmodes.m │ │ │ │ ├── SDL_uikitopengles.h │ │ │ │ ├── SDL_uikitopengles.m │ │ │ │ ├── SDL_uikitopenglview.h │ │ │ │ ├── SDL_uikitopenglview.m │ │ │ │ ├── SDL_uikitvideo.h │ │ │ │ ├── SDL_uikitvideo.m │ │ │ │ ├── SDL_uikitview.h │ │ │ │ ├── SDL_uikitview.m │ │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ │ ├── SDL_uikitvulkan.h │ │ │ │ ├── SDL_uikitvulkan.m │ │ │ │ ├── SDL_uikitwindow.h │ │ │ │ ├── SDL_uikitwindow.m │ │ │ │ └── keyinfotable.h │ │ │ │ ├── vita │ │ │ │ ├── SDL_vitaframebuffer.c │ │ │ │ ├── SDL_vitaframebuffer.h │ │ │ │ ├── SDL_vitagl.c │ │ │ │ ├── SDL_vitagl_c.h │ │ │ │ ├── SDL_vitakeyboard.c │ │ │ │ ├── SDL_vitakeyboard.h │ │ │ │ ├── SDL_vitamessagebox.c │ │ │ │ ├── SDL_vitamessagebox.h │ │ │ │ ├── SDL_vitamouse.c │ │ │ │ ├── SDL_vitamouse_c.h │ │ │ │ ├── SDL_vitatouch.c │ │ │ │ ├── SDL_vitatouch.h │ │ │ │ ├── SDL_vitavideo.c │ │ │ │ └── SDL_vitavideo.h │ │ │ │ ├── vivante │ │ │ │ ├── SDL_vivanteopengles.c │ │ │ │ ├── SDL_vivanteopengles.h │ │ │ │ ├── SDL_vivanteplatform.c │ │ │ │ ├── SDL_vivanteplatform.h │ │ │ │ ├── SDL_vivantevideo.c │ │ │ │ ├── SDL_vivantevideo.h │ │ │ │ ├── SDL_vivantevulkan.c │ │ │ │ └── SDL_vivantevulkan.h │ │ │ │ ├── wayland │ │ │ │ ├── SDL_waylandclipboard.c │ │ │ │ ├── SDL_waylandclipboard.h │ │ │ │ ├── SDL_waylanddatamanager.c │ │ │ │ ├── SDL_waylanddatamanager.h │ │ │ │ ├── SDL_waylanddyn.c │ │ │ │ ├── SDL_waylanddyn.h │ │ │ │ ├── SDL_waylandevents.c │ │ │ │ ├── SDL_waylandevents_c.h │ │ │ │ ├── SDL_waylandkeyboard.c │ │ │ │ ├── SDL_waylandkeyboard.h │ │ │ │ ├── SDL_waylandmessagebox.c │ │ │ │ ├── SDL_waylandmessagebox.h │ │ │ │ ├── SDL_waylandmouse.c │ │ │ │ ├── SDL_waylandmouse.h │ │ │ │ ├── SDL_waylandopengles.c │ │ │ │ ├── SDL_waylandopengles.h │ │ │ │ ├── SDL_waylandsym.h │ │ │ │ ├── SDL_waylandtouch.c │ │ │ │ ├── SDL_waylandtouch.h │ │ │ │ ├── SDL_waylandvideo.c │ │ │ │ ├── SDL_waylandvideo.h │ │ │ │ ├── SDL_waylandvulkan.c │ │ │ │ ├── SDL_waylandvulkan.h │ │ │ │ ├── SDL_waylandwindow.c │ │ │ │ └── SDL_waylandwindow.h │ │ │ │ ├── windows │ │ │ │ ├── SDL_msctf.h │ │ │ │ ├── SDL_vkeys.h │ │ │ │ ├── SDL_windowsclipboard.c │ │ │ │ ├── SDL_windowsclipboard.h │ │ │ │ ├── SDL_windowsevents.c │ │ │ │ ├── SDL_windowsevents.h │ │ │ │ ├── SDL_windowsframebuffer.c │ │ │ │ ├── SDL_windowsframebuffer.h │ │ │ │ ├── SDL_windowskeyboard.c │ │ │ │ ├── SDL_windowskeyboard.h │ │ │ │ ├── SDL_windowsmessagebox.c │ │ │ │ ├── SDL_windowsmessagebox.h │ │ │ │ ├── SDL_windowsmodes.c │ │ │ │ ├── SDL_windowsmodes.h │ │ │ │ ├── SDL_windowsmouse.c │ │ │ │ ├── SDL_windowsmouse.h │ │ │ │ ├── SDL_windowsopengl.c │ │ │ │ ├── SDL_windowsopengl.h │ │ │ │ ├── SDL_windowsopengles.c │ │ │ │ ├── SDL_windowsopengles.h │ │ │ │ ├── SDL_windowsshape.c │ │ │ │ ├── SDL_windowsshape.h │ │ │ │ ├── SDL_windowstaskdialog.h │ │ │ │ ├── SDL_windowsvideo.c │ │ │ │ ├── SDL_windowsvideo.h │ │ │ │ ├── SDL_windowsvulkan.c │ │ │ │ ├── SDL_windowsvulkan.h │ │ │ │ ├── SDL_windowswindow.c │ │ │ │ ├── SDL_windowswindow.h │ │ │ │ └── wmmsg.h │ │ │ │ ├── winrt │ │ │ │ ├── SDL_winrtevents.cpp │ │ │ │ ├── SDL_winrtevents_c.h │ │ │ │ ├── SDL_winrtgamebar.cpp │ │ │ │ ├── SDL_winrtgamebar_cpp.h │ │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ │ ├── SDL_winrtmessagebox.h │ │ │ │ ├── SDL_winrtmouse.cpp │ │ │ │ ├── SDL_winrtmouse_c.h │ │ │ │ ├── SDL_winrtopengles.cpp │ │ │ │ ├── SDL_winrtopengles.h │ │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ │ ├── SDL_winrtvideo.cpp │ │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ │ ├── x11 │ │ │ │ ├── SDL_x11clipboard.c │ │ │ │ ├── SDL_x11clipboard.h │ │ │ │ ├── SDL_x11dyn.c │ │ │ │ ├── SDL_x11dyn.h │ │ │ │ ├── SDL_x11events.c │ │ │ │ ├── SDL_x11events.h │ │ │ │ ├── SDL_x11framebuffer.c │ │ │ │ ├── SDL_x11framebuffer.h │ │ │ │ ├── SDL_x11keyboard.c │ │ │ │ ├── SDL_x11keyboard.h │ │ │ │ ├── SDL_x11messagebox.c │ │ │ │ ├── SDL_x11messagebox.h │ │ │ │ ├── SDL_x11modes.c │ │ │ │ ├── SDL_x11modes.h │ │ │ │ ├── SDL_x11mouse.c │ │ │ │ ├── SDL_x11mouse.h │ │ │ │ ├── SDL_x11opengl.c │ │ │ │ ├── SDL_x11opengl.h │ │ │ │ ├── SDL_x11opengles.c │ │ │ │ ├── SDL_x11opengles.h │ │ │ │ ├── SDL_x11shape.c │ │ │ │ ├── SDL_x11shape.h │ │ │ │ ├── SDL_x11sym.h │ │ │ │ ├── SDL_x11touch.c │ │ │ │ ├── SDL_x11touch.h │ │ │ │ ├── SDL_x11video.c │ │ │ │ ├── SDL_x11video.h │ │ │ │ ├── SDL_x11vulkan.c │ │ │ │ ├── SDL_x11vulkan.h │ │ │ │ ├── SDL_x11window.c │ │ │ │ ├── SDL_x11window.h │ │ │ │ ├── SDL_x11xinput2.c │ │ │ │ ├── SDL_x11xinput2.h │ │ │ │ ├── edid-parse.c │ │ │ │ ├── edid.h │ │ │ │ ├── imKStoUCS.c │ │ │ │ └── imKStoUCS.h │ │ │ │ └── yuv2rgb │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── yuv_rgb.c │ │ │ │ ├── yuv_rgb.h │ │ │ │ ├── yuv_rgb_sse_func.h │ │ │ │ └── yuv_rgb_std_func.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Makefile.in │ │ │ ├── Makefile.os2 │ │ │ ├── README │ │ │ ├── acinclude.m4 │ │ │ ├── autogen.sh │ │ │ ├── axis.bmp │ │ │ ├── button.bmp │ │ │ ├── checkkeys.c │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── controllermap.bmp │ │ │ ├── controllermap.c │ │ │ ├── controllermap_back.bmp │ │ │ ├── emscripten │ │ │ │ └── joystick-pre.js │ │ │ ├── gcc-fat.sh │ │ │ ├── icon.bmp │ │ │ ├── loopwave.c │ │ │ ├── loopwavequeue.c │ │ │ ├── moose.dat │ │ │ ├── nacl │ │ │ │ ├── background.js │ │ │ │ ├── common.js │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── picture.xbm │ │ │ ├── relative_mode.markdown │ │ │ ├── sample.bmp │ │ │ ├── sample.wav │ │ │ ├── shapes │ │ │ │ ├── p01_shape24.bmp │ │ │ │ ├── p01_shape32alpha.bmp │ │ │ │ ├── p01_shape8.bmp │ │ │ │ ├── p02_shape24.bmp │ │ │ │ ├── p02_shape32alpha.bmp │ │ │ │ ├── p02_shape8.bmp │ │ │ │ ├── p03_shape24.bmp │ │ │ │ ├── p03_shape8.bmp │ │ │ │ ├── p04_shape1.bmp │ │ │ │ ├── p04_shape24.bmp │ │ │ │ ├── p04_shape32alpha.bmp │ │ │ │ ├── p04_shape8.bmp │ │ │ │ ├── p05_shape8.bmp │ │ │ │ ├── p06_shape1alpha.bmp │ │ │ │ ├── p06_shape24.bmp │ │ │ │ ├── p06_shape32alpha.bmp │ │ │ │ ├── p06_shape8.bmp │ │ │ │ ├── p07_shape24.bmp │ │ │ │ ├── p07_shape32alpha.bmp │ │ │ │ ├── p07_shape8.bmp │ │ │ │ ├── p08_shape24.bmp │ │ │ │ ├── p08_shape32alpha.bmp │ │ │ │ ├── p08_shape8.bmp │ │ │ │ ├── p09_shape24.bmp │ │ │ │ ├── p09_shape32alpha.bmp │ │ │ │ ├── p09_shape8.bmp │ │ │ │ ├── p10_shape1.bmp │ │ │ │ ├── p10_shape24.bmp │ │ │ │ ├── p10_shape32alpha.bmp │ │ │ │ ├── p10_shape8.bmp │ │ │ │ ├── p11_shape24.bmp │ │ │ │ ├── p11_shape32alpha.bmp │ │ │ │ ├── p11_shape8.bmp │ │ │ │ ├── p12_shape24.bmp │ │ │ │ ├── p12_shape8.bmp │ │ │ │ ├── p13_shape24.bmp │ │ │ │ ├── p13_shape32alpha.bmp │ │ │ │ ├── p13_shape8.bmp │ │ │ │ ├── p14_shape24.bmp │ │ │ │ ├── p14_shape8.bmp │ │ │ │ ├── p15_shape24.bmp │ │ │ │ ├── p15_shape32alpha.bmp │ │ │ │ ├── p15_shape8.bmp │ │ │ │ ├── p16_shape1.bmp │ │ │ │ ├── p16_shape24.bmp │ │ │ │ ├── p16_shape8.bmp │ │ │ │ ├── trollface_24.bmp │ │ │ │ └── trollface_32alpha.bmp │ │ │ ├── testatomic.c │ │ │ ├── testaudiocapture.c │ │ │ ├── testaudiohotplug.c │ │ │ ├── testaudioinfo.c │ │ │ ├── testautomation.c │ │ │ ├── testautomation_audio.c │ │ │ ├── testautomation_clipboard.c │ │ │ ├── testautomation_events.c │ │ │ ├── testautomation_hints.c │ │ │ ├── testautomation_keyboard.c │ │ │ ├── testautomation_main.c │ │ │ ├── testautomation_mouse.c │ │ │ ├── testautomation_pixels.c │ │ │ ├── testautomation_platform.c │ │ │ ├── testautomation_rect.c │ │ │ ├── testautomation_render.c │ │ │ ├── testautomation_rwops.c │ │ │ ├── testautomation_sdltest.c │ │ │ ├── testautomation_stdlib.c │ │ │ ├── testautomation_suites.h │ │ │ ├── testautomation_surface.c │ │ │ ├── testautomation_syswm.c │ │ │ ├── testautomation_timer.c │ │ │ ├── testautomation_video.c │ │ │ ├── testbounds.c │ │ │ ├── testcustomcursor.c │ │ │ ├── testdisplayinfo.c │ │ │ ├── testdraw2.c │ │ │ ├── testdrawchessboard.c │ │ │ ├── testdropfile.c │ │ │ ├── testerror.c │ │ │ ├── testevdev.c │ │ │ ├── testfile.c │ │ │ ├── testfilesystem.c │ │ │ ├── testgamecontroller.c │ │ │ ├── testgesture.c │ │ │ ├── testgl2.c │ │ │ ├── testgles.c │ │ │ ├── testgles2.c │ │ │ ├── testgles2_sdf.c │ │ │ ├── testgles2_sdf_img_normal.bmp │ │ │ ├── testgles2_sdf_img_sdf.bmp │ │ │ ├── testhaptic.c │ │ │ ├── testhittesting.c │ │ │ ├── testhotplug.c │ │ │ ├── testiconv.c │ │ │ ├── testime.c │ │ │ ├── testintersections.c │ │ │ ├── testjoystick.c │ │ │ ├── testkeys.c │ │ │ ├── testloadso.c │ │ │ ├── testlocale.c │ │ │ ├── testlock.c │ │ │ ├── testmessage.c │ │ │ ├── testmultiaudio.c │ │ │ ├── testnative.c │ │ │ ├── testnative.h │ │ │ ├── testnativecocoa.m │ │ │ ├── testnativeos2.c │ │ │ ├── testnativew32.c │ │ │ ├── testnativex11.c │ │ │ ├── testoffscreen.c │ │ │ ├── testoverlay2.c │ │ │ ├── testplatform.c │ │ │ ├── testpower.c │ │ │ ├── testqsort.c │ │ │ ├── testrelative.c │ │ │ ├── testrendercopyex.c │ │ │ ├── testrendertarget.c │ │ │ ├── testresample.c │ │ │ ├── testrumble.c │ │ │ ├── testscale.c │ │ │ ├── testsem.c │ │ │ ├── testsensor.c │ │ │ ├── testshader.c │ │ │ ├── testshape.c │ │ │ ├── testsprite2.c │ │ │ ├── testspriteminimal.c │ │ │ ├── teststreaming.c │ │ │ ├── testthread.c │ │ │ ├── testtimer.c │ │ │ ├── testurl.c │ │ │ ├── testver.c │ │ │ ├── testviewport.c │ │ │ ├── testvulkan.c │ │ │ ├── testwm2.c │ │ │ ├── testyuv.bmp │ │ │ ├── testyuv.c │ │ │ ├── testyuv_cvt.c │ │ │ ├── testyuv_cvt.h │ │ │ ├── torturethread.c │ │ │ └── utf8.txt │ │ ├── visualtest │ │ │ ├── COPYING.txt │ │ │ ├── Makefile.in │ │ │ ├── README.txt │ │ │ ├── acinclude.m4 │ │ │ ├── autogen.sh │ │ │ ├── compile │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── configs │ │ │ │ ├── testsprite2_blendmodes │ │ │ │ │ ├── testsprite2_blendmodes.actions │ │ │ │ │ ├── testsprite2_blendmodes.config │ │ │ │ │ └── testsprite2_blendmodes.parameters │ │ │ │ ├── testsprite2_crashtest │ │ │ │ │ ├── testsprite2_crashtest.actions │ │ │ │ │ ├── testsprite2_crashtest.config │ │ │ │ │ └── testsprite2_crashtest.parameters │ │ │ │ ├── testsprite2_fullscreen │ │ │ │ │ ├── testsprite2_fullscreen.actions │ │ │ │ │ ├── testsprite2_fullscreen.config │ │ │ │ │ └── testsprite2_fullscreen.parameters │ │ │ │ └── testsprite2_geometry │ │ │ │ │ ├── testsprite2_geometry.actions │ │ │ │ │ ├── testsprite2_geometry.config │ │ │ │ │ └── testsprite2_geometry.parameters │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── depcomp │ │ │ ├── docs │ │ │ │ └── Doxyfile │ │ │ ├── include │ │ │ │ ├── SDL_visualtest_action_configparser.h │ │ │ │ ├── SDL_visualtest_exhaustive_variator.h │ │ │ │ ├── SDL_visualtest_harness_argparser.h │ │ │ │ ├── SDL_visualtest_mischelper.h │ │ │ │ ├── SDL_visualtest_parsehelper.h │ │ │ │ ├── SDL_visualtest_process.h │ │ │ │ ├── SDL_visualtest_random_variator.h │ │ │ │ ├── SDL_visualtest_rwhelper.h │ │ │ │ ├── SDL_visualtest_screenshot.h │ │ │ │ ├── SDL_visualtest_sut_configparser.h │ │ │ │ ├── SDL_visualtest_variator_common.h │ │ │ │ └── SDL_visualtest_variators.h │ │ │ ├── install-sh │ │ │ ├── launch_harness.cmd │ │ │ ├── launch_harness.sh │ │ │ ├── missing │ │ │ ├── src │ │ │ │ ├── action_configparser.c │ │ │ │ ├── harness_argparser.c │ │ │ │ ├── linux │ │ │ │ │ └── linux_process.c │ │ │ │ ├── mischelper.c │ │ │ │ ├── parsehelper.c │ │ │ │ ├── rwhelper.c │ │ │ │ ├── screenshot.c │ │ │ │ ├── sut_configparser.c │ │ │ │ ├── testharness.c │ │ │ │ ├── variator_common.c │ │ │ │ ├── variator_exhaustive.c │ │ │ │ ├── variator_random.c │ │ │ │ ├── variators.c │ │ │ │ └── windows │ │ │ │ │ ├── windows_process.c │ │ │ │ │ └── windows_screenshot.c │ │ │ ├── stamp-h1 │ │ │ ├── testsprite2_sample.actions │ │ │ ├── testsprite2_sample.config │ │ │ ├── testsprite2_sample.parameters │ │ │ └── unittest │ │ │ │ ├── testquit.actions │ │ │ │ ├── testquit.c │ │ │ │ ├── testquit.config │ │ │ │ └── testquit.parameters │ │ └── wayland-protocols │ │ │ ├── idle-inhibit-unstable-v1.xml │ │ │ ├── keyboard-shortcuts-inhibit-unstable-v1.xml │ │ │ ├── pointer-constraints-unstable-v1.xml │ │ │ ├── relative-pointer-unstable-v1.xml │ │ │ ├── wayland.xml │ │ │ ├── xdg-decoration-unstable-v1.xml │ │ │ ├── xdg-shell-unstable-v6.xml │ │ │ └── xdg-shell.xml │ ├── ShaderConductor │ │ ├── .clang-format │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ ├── .gitignore │ │ ├── BuildAll.py │ │ ├── CI │ │ │ └── AzurePipelines │ │ │ │ └── ContinuousBuild.yml │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── Doc │ │ │ └── Arch.svg │ │ ├── Include │ │ │ └── ShaderConductor │ │ │ │ └── ShaderConductor.hpp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Source │ │ │ ├── CMakeLists.txt │ │ │ ├── Core │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ShaderConductor.cpp │ │ │ ├── Tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Data │ │ │ │ │ ├── Expected │ │ │ │ │ │ ├── CalcLight+Diffuse.Debug.dxilasm │ │ │ │ │ │ ├── CalcLight+Diffuse.Release.dxilasm │ │ │ │ │ │ ├── CalcLight+DiffuseSpecular.Debug.dxilasm │ │ │ │ │ │ ├── CalcLight+DiffuseSpecular.Release.dxilasm │ │ │ │ │ │ ├── Constant_PS.30.hlsl │ │ │ │ │ │ ├── Constant_PS.300.essl │ │ │ │ │ │ ├── Constant_PS.300.glsl │ │ │ │ │ │ ├── Constant_PS.310.essl │ │ │ │ │ │ ├── Constant_PS.40.hlsl │ │ │ │ │ │ ├── Constant_PS.410.glsl │ │ │ │ │ │ ├── Constant_PS.50.hlsl │ │ │ │ │ │ ├── Constant_PS.msl │ │ │ │ │ │ ├── Constant_VS.30.hlsl │ │ │ │ │ │ ├── Constant_VS.300.essl │ │ │ │ │ │ ├── Constant_VS.300.glsl │ │ │ │ │ │ ├── Constant_VS.310.essl │ │ │ │ │ │ ├── Constant_VS.40.hlsl │ │ │ │ │ │ ├── Constant_VS.410.glsl │ │ │ │ │ │ ├── Constant_VS.50.hlsl │ │ │ │ │ │ ├── Constant_VS.msl │ │ │ │ │ │ ├── DetailTessellation_HS.300.essl │ │ │ │ │ │ ├── DetailTessellation_HS.300.glsl │ │ │ │ │ │ ├── DetailTessellation_HS.310.essl │ │ │ │ │ │ ├── DetailTessellation_HS.410.glsl │ │ │ │ │ │ ├── DetailTessellation_HS.msl │ │ │ │ │ │ ├── DotHalfPS.glsl │ │ │ │ │ │ ├── Fluid_CS.300.glsl │ │ │ │ │ │ ├── Fluid_CS.310.essl │ │ │ │ │ │ ├── Fluid_CS.410.glsl │ │ │ │ │ │ ├── Fluid_CS.50.hlsl │ │ │ │ │ │ ├── Fluid_CS.msl │ │ │ │ │ │ ├── HalfOutParamPS.glsl │ │ │ │ │ │ ├── IncludeEmptyHeader.glsl │ │ │ │ │ │ ├── IncludeExist.glsl │ │ │ │ │ │ ├── PNTriangles_DS.300.essl │ │ │ │ │ │ ├── PNTriangles_DS.300.glsl │ │ │ │ │ │ ├── PNTriangles_DS.310.essl │ │ │ │ │ │ ├── PNTriangles_DS.410.glsl │ │ │ │ │ │ ├── PNTriangles_DS.msl │ │ │ │ │ │ ├── Particle_GS.300.essl │ │ │ │ │ │ ├── Particle_GS.300.glsl │ │ │ │ │ │ ├── Particle_GS.310.essl │ │ │ │ │ │ ├── Particle_GS.410.glsl │ │ │ │ │ │ ├── PassThrough_PS.30.hlsl │ │ │ │ │ │ ├── PassThrough_PS.300.essl │ │ │ │ │ │ ├── PassThrough_PS.300.glsl │ │ │ │ │ │ ├── PassThrough_PS.310.essl │ │ │ │ │ │ ├── PassThrough_PS.40.hlsl │ │ │ │ │ │ ├── PassThrough_PS.410.glsl │ │ │ │ │ │ ├── PassThrough_PS.50.hlsl │ │ │ │ │ │ ├── PassThrough_PS.msl │ │ │ │ │ │ ├── PassThrough_VS.30.hlsl │ │ │ │ │ │ ├── PassThrough_VS.300.essl │ │ │ │ │ │ ├── PassThrough_VS.300.glsl │ │ │ │ │ │ ├── PassThrough_VS.310.essl │ │ │ │ │ │ ├── PassThrough_VS.40.hlsl │ │ │ │ │ │ ├── PassThrough_VS.410.glsl │ │ │ │ │ │ ├── PassThrough_VS.50.hlsl │ │ │ │ │ │ ├── PassThrough_VS.msl │ │ │ │ │ │ ├── ToneMapping_PS.30.hlsl │ │ │ │ │ │ ├── ToneMapping_PS.300.essl │ │ │ │ │ │ ├── ToneMapping_PS.300.glsl │ │ │ │ │ │ ├── ToneMapping_PS.310.essl │ │ │ │ │ │ ├── ToneMapping_PS.40.hlsl │ │ │ │ │ │ ├── ToneMapping_PS.410.glsl │ │ │ │ │ │ ├── ToneMapping_PS.50.hlsl │ │ │ │ │ │ ├── ToneMapping_PS.msl │ │ │ │ │ │ ├── Transform_VS.30.hlsl │ │ │ │ │ │ ├── Transform_VS.300.essl │ │ │ │ │ │ ├── Transform_VS.300.glsl │ │ │ │ │ │ ├── Transform_VS.310.essl │ │ │ │ │ │ ├── Transform_VS.40.hlsl │ │ │ │ │ │ ├── Transform_VS.410.glsl │ │ │ │ │ │ ├── Transform_VS.50.hlsl │ │ │ │ │ │ ├── Transform_VS.msl │ │ │ │ │ │ └── Transform_VS_ColumnMajor.300.glsl │ │ │ │ │ └── Input │ │ │ │ │ │ ├── CalcLight.hlsl │ │ │ │ │ │ ├── CalcLightDiffuse.hlsl │ │ │ │ │ │ ├── CalcLightDiffuseSpecular.hlsl │ │ │ │ │ │ ├── Common.hlsli │ │ │ │ │ │ ├── Constant_PS.hlsl │ │ │ │ │ │ ├── Constant_VS.hlsl │ │ │ │ │ │ ├── DetailTessellation_HS.hlsl │ │ │ │ │ │ ├── Fluid_CS.hlsl │ │ │ │ │ │ ├── HalfDataType.hlsl │ │ │ │ │ │ ├── Inc │ │ │ │ │ │ ├── HeaderA.hlsli │ │ │ │ │ │ ├── HeaderB.hlsli │ │ │ │ │ │ └── HeaderEmpty.hlsli │ │ │ │ │ │ ├── IncludeEmptyHeader.hlsl │ │ │ │ │ │ ├── IncludeExist.hlsl │ │ │ │ │ │ ├── IncludeNotExist.hlsl │ │ │ │ │ │ ├── PNTriangles_DS.hlsl │ │ │ │ │ │ ├── Particle_GS.hlsl │ │ │ │ │ │ ├── PassThrough_PS.hlsl │ │ │ │ │ │ ├── PassThrough_VS.hlsl │ │ │ │ │ │ ├── ToneMapping_PS.hlsl │ │ │ │ │ │ └── Transform_VS.hlsl │ │ │ │ └── ShaderConductorTest.cpp │ │ │ ├── Tools │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ShaderConductorCmd.cpp │ │ │ └── Wrapper │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Native.cpp │ │ │ │ ├── Native.h │ │ │ │ ├── Program.cs │ │ │ │ ├── Wrapper.cs │ │ │ │ └── shader.hlsl │ │ └── azure-pipelines.yml │ ├── VulkanMemoryAllocator │ │ └── vk_mem_alloc.h │ ├── boost │ │ └── boost │ │ │ ├── assert.hpp │ │ │ ├── assert │ │ │ └── source_location.hpp │ │ │ ├── config.hpp │ │ │ ├── config │ │ │ ├── abi │ │ │ │ ├── borland_prefix.hpp │ │ │ │ ├── borland_suffix.hpp │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ └── msvc_suffix.hpp │ │ │ ├── abi_prefix.hpp │ │ │ ├── abi_suffix.hpp │ │ │ ├── auto_link.hpp │ │ │ ├── compiler │ │ │ │ ├── borland.hpp │ │ │ │ ├── clang.hpp │ │ │ │ ├── codegear.hpp │ │ │ │ ├── comeau.hpp │ │ │ │ ├── common_edg.hpp │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── diab.hpp │ │ │ │ ├── digitalmars.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gcc_xml.hpp │ │ │ │ ├── greenhills.hpp │ │ │ │ ├── hp_acc.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── kai.hpp │ │ │ │ ├── metrowerks.hpp │ │ │ │ ├── mpw.hpp │ │ │ │ ├── nvcc.hpp │ │ │ │ ├── pathscale.hpp │ │ │ │ ├── pgi.hpp │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ ├── visualc.hpp │ │ │ │ ├── xlcpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── detail │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ └── suffix.hpp │ │ │ ├── header_deprecated.hpp │ │ │ ├── helper_macros.hpp │ │ │ ├── no_tr1 │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── utility.hpp │ │ │ ├── platform │ │ │ │ ├── aix.hpp │ │ │ │ ├── amigaos.hpp │ │ │ │ ├── beos.hpp │ │ │ │ ├── bsd.hpp │ │ │ │ ├── cloudabi.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── cygwin.hpp │ │ │ │ ├── haiku.hpp │ │ │ │ ├── hpux.hpp │ │ │ │ ├── irix.hpp │ │ │ │ ├── linux.hpp │ │ │ │ ├── macos.hpp │ │ │ │ ├── qnxnto.hpp │ │ │ │ ├── solaris.hpp │ │ │ │ ├── symbian.hpp │ │ │ │ ├── vms.hpp │ │ │ │ ├── vxworks.hpp │ │ │ │ ├── win32.hpp │ │ │ │ └── zos.hpp │ │ │ ├── pragma_message.hpp │ │ │ ├── requires_threads.hpp │ │ │ ├── stdlib │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── libcomo.hpp │ │ │ │ ├── libcpp.hpp │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ ├── modena.hpp │ │ │ │ ├── msl.hpp │ │ │ │ ├── roguewave.hpp │ │ │ │ ├── sgi.hpp │ │ │ │ ├── stlport.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── user.hpp │ │ │ ├── warning_disable.hpp │ │ │ └── workaround.hpp │ │ │ ├── container_hash │ │ │ ├── detail │ │ │ │ ├── float_functions.hpp │ │ │ │ ├── hash_float.hpp │ │ │ │ └── limits.hpp │ │ │ ├── extensions.hpp │ │ │ ├── hash.hpp │ │ │ └── hash_fwd.hpp │ │ │ ├── core │ │ │ ├── addressof.hpp │ │ │ ├── enable_if.hpp │ │ │ └── no_exceptions_support.hpp │ │ │ ├── cstdint.hpp │ │ │ ├── current_function.hpp │ │ │ ├── detail │ │ │ ├── algorithm.hpp │ │ │ ├── allocator_utilities.hpp │ │ │ ├── atomic_count.hpp │ │ │ ├── basic_pointerbuf.hpp │ │ │ ├── binary_search.hpp │ │ │ ├── bitmask.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── catch_exceptions.hpp │ │ │ ├── compressed_pair.hpp │ │ │ ├── container_fwd.hpp │ │ │ ├── endian.hpp │ │ │ ├── fenv.hpp │ │ │ ├── has_default_constructor.hpp │ │ │ ├── identifier.hpp │ │ │ ├── indirect_traits.hpp │ │ │ ├── interlocked.hpp │ │ │ ├── is_incrementable.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── is_xxx.hpp │ │ │ ├── iterator.hpp │ │ │ ├── lcast_precision.hpp │ │ │ ├── lightweight_main.hpp │ │ │ ├── lightweight_mutex.hpp │ │ │ ├── lightweight_test.hpp │ │ │ ├── lightweight_test_report.hpp │ │ │ ├── lightweight_thread.hpp │ │ │ ├── named_template_params.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── numeric_traits.hpp │ │ │ ├── ob_compressed_pair.hpp │ │ │ ├── quick_allocator.hpp │ │ │ ├── reference_content.hpp │ │ │ ├── scoped_enum_emulation.hpp │ │ │ ├── select_type.hpp │ │ │ ├── sp_typeinfo.hpp │ │ │ ├── templated_streams.hpp │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ ├── utf8_codecvt_facet.ipp │ │ │ ├── winapi │ │ │ │ ├── access_rights.hpp │ │ │ │ ├── apc.hpp │ │ │ │ ├── basic_types.hpp │ │ │ │ ├── bcrypt.hpp │ │ │ │ ├── character_code_conversion.hpp │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── critical_section.hpp │ │ │ │ ├── crypt.hpp │ │ │ │ ├── dbghelp.hpp │ │ │ │ ├── debugapi.hpp │ │ │ │ ├── detail │ │ │ │ │ └── deprecated_namespace.hpp │ │ │ │ ├── directory_management.hpp │ │ │ │ ├── dll.hpp │ │ │ │ ├── environment.hpp │ │ │ │ ├── error_codes.hpp │ │ │ │ ├── error_handling.hpp │ │ │ │ ├── event.hpp │ │ │ │ ├── file_management.hpp │ │ │ │ ├── file_mapping.hpp │ │ │ │ ├── get_current_process.hpp │ │ │ │ ├── get_current_process_id.hpp │ │ │ │ ├── get_current_thread.hpp │ │ │ │ ├── get_current_thread_id.hpp │ │ │ │ ├── get_last_error.hpp │ │ │ │ ├── get_process_times.hpp │ │ │ │ ├── get_system_directory.hpp │ │ │ │ ├── get_thread_times.hpp │ │ │ │ ├── handle_info.hpp │ │ │ │ ├── handles.hpp │ │ │ │ ├── heap_memory.hpp │ │ │ │ ├── init_once.hpp │ │ │ │ ├── jobs.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── local_memory.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── overlapped.hpp │ │ │ │ ├── page_protection_flags.hpp │ │ │ │ ├── pipes.hpp │ │ │ │ ├── priority_class.hpp │ │ │ │ ├── process.hpp │ │ │ │ ├── security.hpp │ │ │ │ ├── semaphore.hpp │ │ │ │ ├── shell.hpp │ │ │ │ ├── show_window.hpp │ │ │ │ ├── srw_lock.hpp │ │ │ │ ├── stack_backtrace.hpp │ │ │ │ ├── synchronization.hpp │ │ │ │ ├── system.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── timers.hpp │ │ │ │ ├── tls.hpp │ │ │ │ ├── wait.hpp │ │ │ │ └── waitable_timer.hpp │ │ │ └── workaround.hpp │ │ │ ├── dynamic_bitset.hpp │ │ │ ├── dynamic_bitset │ │ │ ├── config.hpp │ │ │ ├── detail │ │ │ │ ├── dynamic_bitset.hpp │ │ │ │ └── lowest_bit.hpp │ │ │ ├── dynamic_bitset.hpp │ │ │ └── serialization.hpp │ │ │ ├── dynamic_bitset_fwd.hpp │ │ │ ├── functional │ │ │ ├── factory.hpp │ │ │ ├── forward_adapter.hpp │ │ │ ├── hash.hpp │ │ │ ├── hash │ │ │ │ ├── extensions.hpp │ │ │ │ ├── hash.hpp │ │ │ │ └── hash_fwd.hpp │ │ │ ├── hash_fwd.hpp │ │ │ ├── lightweight_forward_adapter.hpp │ │ │ ├── overloaded_function.hpp │ │ │ ├── overloaded_function │ │ │ │ ├── config.hpp │ │ │ │ └── detail │ │ │ │ │ ├── base.hpp │ │ │ │ │ └── function_type.hpp │ │ │ └── value_factory.hpp │ │ │ ├── integer │ │ │ ├── common_factor.hpp │ │ │ ├── common_factor_ct.hpp │ │ │ ├── common_factor_rt.hpp │ │ │ ├── extended_euclidean.hpp │ │ │ ├── integer_log2.hpp │ │ │ ├── integer_mask.hpp │ │ │ ├── mod_inverse.hpp │ │ │ ├── static_log2.hpp │ │ │ └── static_min_max.hpp │ │ │ ├── integer_fwd.hpp │ │ │ ├── limits.hpp │ │ │ ├── move │ │ │ ├── adl_move_swap.hpp │ │ │ ├── algo │ │ │ │ ├── adaptive_merge.hpp │ │ │ │ ├── adaptive_sort.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── adaptive_sort_merge.hpp │ │ │ │ │ ├── basic_op.hpp │ │ │ │ │ ├── heap_sort.hpp │ │ │ │ │ ├── insertion_sort.hpp │ │ │ │ │ ├── is_sorted.hpp │ │ │ │ │ ├── merge.hpp │ │ │ │ │ ├── merge_sort.hpp │ │ │ │ │ ├── pdqsort.hpp │ │ │ │ │ └── set_difference.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── predicate.hpp │ │ │ │ └── unique.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── core.hpp │ │ │ ├── default_delete.hpp │ │ │ ├── detail │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── destruct_n.hpp │ │ │ │ ├── fwd_macros.hpp │ │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── meta_utils.hpp │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ ├── move_helpers.hpp │ │ │ │ ├── placement_new.hpp │ │ │ │ ├── pointer_element.hpp │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ ├── std_ns_begin.hpp │ │ │ │ ├── std_ns_end.hpp │ │ │ │ ├── to_raw_pointer.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── iterator.hpp │ │ │ ├── make_unique.hpp │ │ │ ├── move.hpp │ │ │ ├── traits.hpp │ │ │ ├── utility.hpp │ │ │ └── utility_core.hpp │ │ │ ├── smart_ptr │ │ │ ├── allocate_local_shared_array.hpp │ │ │ ├── allocate_shared_array.hpp │ │ │ ├── allocate_unique.hpp │ │ │ ├── atomic_shared_ptr.hpp │ │ │ ├── bad_weak_ptr.hpp │ │ │ ├── detail │ │ │ │ ├── atomic_count.hpp │ │ │ │ ├── atomic_count_gcc.hpp │ │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ │ ├── atomic_count_nt.hpp │ │ │ │ ├── atomic_count_pt.hpp │ │ │ │ ├── atomic_count_solaris.hpp │ │ │ │ ├── atomic_count_spin.hpp │ │ │ │ ├── atomic_count_std_atomic.hpp │ │ │ │ ├── atomic_count_sync.hpp │ │ │ │ ├── atomic_count_win32.hpp │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ ├── local_counted_base.hpp │ │ │ │ ├── local_sp_deleter.hpp │ │ │ │ ├── lwm_nop.hpp │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ ├── operator_bool.hpp │ │ │ │ ├── quick_allocator.hpp │ │ │ │ ├── shared_count.hpp │ │ │ │ ├── sp_convertible.hpp │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ │ ├── sp_counted_base_aix.hpp │ │ │ │ ├── sp_counted_base_clang.hpp │ │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ │ ├── sp_counted_base_cw_x86.hpp │ │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ │ ├── sp_counted_base_nt.hpp │ │ │ │ ├── sp_counted_base_pt.hpp │ │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ │ ├── sp_counted_base_solaris.hpp │ │ │ │ ├── sp_counted_base_spin.hpp │ │ │ │ ├── sp_counted_base_std_atomic.hpp │ │ │ │ ├── sp_counted_base_sync.hpp │ │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ │ ├── sp_counted_base_w32.hpp │ │ │ │ ├── sp_counted_impl.hpp │ │ │ │ ├── sp_disable_deprecated.hpp │ │ │ │ ├── sp_forward.hpp │ │ │ │ ├── sp_has_sync.hpp │ │ │ │ ├── sp_interlocked.hpp │ │ │ │ ├── sp_noexcept.hpp │ │ │ │ ├── sp_nullptr_t.hpp │ │ │ │ ├── sp_typeinfo_.hpp │ │ │ │ ├── spinlock.hpp │ │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ │ ├── spinlock_nt.hpp │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ ├── spinlock_pt.hpp │ │ │ │ ├── spinlock_std_atomic.hpp │ │ │ │ ├── spinlock_sync.hpp │ │ │ │ ├── spinlock_w32.hpp │ │ │ │ └── yield_k.hpp │ │ │ ├── enable_shared_from.hpp │ │ │ ├── enable_shared_from_raw.hpp │ │ │ ├── enable_shared_from_this.hpp │ │ │ ├── intrusive_ptr.hpp │ │ │ ├── intrusive_ref_counter.hpp │ │ │ ├── local_shared_ptr.hpp │ │ │ ├── make_local_shared.hpp │ │ │ ├── make_local_shared_array.hpp │ │ │ ├── make_local_shared_object.hpp │ │ │ ├── make_shared.hpp │ │ │ ├── make_shared_array.hpp │ │ │ ├── make_shared_object.hpp │ │ │ ├── make_unique.hpp │ │ │ ├── owner_less.hpp │ │ │ ├── scoped_array.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── shared_array.hpp │ │ │ ├── shared_ptr.hpp │ │ │ └── weak_ptr.hpp │ │ │ ├── static_assert.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── type_traits │ │ │ ├── add_const.hpp │ │ │ ├── add_cv.hpp │ │ │ ├── add_lvalue_reference.hpp │ │ │ ├── add_pointer.hpp │ │ │ ├── add_reference.hpp │ │ │ ├── add_rvalue_reference.hpp │ │ │ ├── add_volatile.hpp │ │ │ ├── aligned_storage.hpp │ │ │ ├── alignment_of.hpp │ │ │ ├── alignment_traits.hpp │ │ │ ├── arithmetic_traits.hpp │ │ │ ├── array_traits.hpp │ │ │ ├── broken_compiler_spec.hpp │ │ │ ├── common_type.hpp │ │ │ ├── composite_traits.hpp │ │ │ ├── conditional.hpp │ │ │ ├── config.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── copy_cv.hpp │ │ │ ├── copy_cv_ref.hpp │ │ │ ├── copy_reference.hpp │ │ │ ├── cv_traits.hpp │ │ │ ├── decay.hpp │ │ │ ├── declval.hpp │ │ │ ├── detail │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ ├── common_arithmetic_type.hpp │ │ │ │ ├── common_type_impl.hpp │ │ │ │ ├── composite_member_pointer_type.hpp │ │ │ │ ├── composite_pointer_type.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detector.hpp │ │ │ │ ├── has_binary_operator.hpp │ │ │ │ ├── has_postfix_operator.hpp │ │ │ │ ├── has_prefix_operator.hpp │ │ │ │ ├── ice_and.hpp │ │ │ │ ├── ice_eq.hpp │ │ │ │ ├── ice_not.hpp │ │ │ │ ├── ice_or.hpp │ │ │ │ ├── is_function_cxx_03.hpp │ │ │ │ ├── is_function_cxx_11.hpp │ │ │ │ ├── is_function_msvc10_fix.hpp │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ ├── is_likely_lambda.hpp │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ │ │ ├── mp_defer.hpp │ │ │ │ ├── template_arity_spec.hpp │ │ │ │ └── yes_no_type.hpp │ │ │ ├── detected.hpp │ │ │ ├── detected_or.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── extent.hpp │ │ │ ├── floating_point_promotion.hpp │ │ │ ├── function_traits.hpp │ │ │ ├── has_bit_and.hpp │ │ │ ├── has_bit_and_assign.hpp │ │ │ ├── has_bit_or.hpp │ │ │ ├── has_bit_or_assign.hpp │ │ │ ├── has_bit_xor.hpp │ │ │ ├── has_bit_xor_assign.hpp │ │ │ ├── has_complement.hpp │ │ │ ├── has_dereference.hpp │ │ │ ├── has_divides.hpp │ │ │ ├── has_divides_assign.hpp │ │ │ ├── has_equal_to.hpp │ │ │ ├── has_greater.hpp │ │ │ ├── has_greater_equal.hpp │ │ │ ├── has_left_shift.hpp │ │ │ ├── has_left_shift_assign.hpp │ │ │ ├── has_less.hpp │ │ │ ├── has_less_equal.hpp │ │ │ ├── has_logical_and.hpp │ │ │ ├── has_logical_not.hpp │ │ │ ├── has_logical_or.hpp │ │ │ ├── has_minus.hpp │ │ │ ├── has_minus_assign.hpp │ │ │ ├── has_modulus.hpp │ │ │ ├── has_modulus_assign.hpp │ │ │ ├── has_multiplies.hpp │ │ │ ├── has_multiplies_assign.hpp │ │ │ ├── has_negate.hpp │ │ │ ├── has_new_operator.hpp │ │ │ ├── has_not_equal_to.hpp │ │ │ ├── has_nothrow_assign.hpp │ │ │ ├── has_nothrow_constructor.hpp │ │ │ ├── has_nothrow_copy.hpp │ │ │ ├── has_nothrow_destructor.hpp │ │ │ ├── has_operator.hpp │ │ │ ├── has_plus.hpp │ │ │ ├── has_plus_assign.hpp │ │ │ ├── has_post_decrement.hpp │ │ │ ├── has_post_increment.hpp │ │ │ ├── has_pre_decrement.hpp │ │ │ ├── has_pre_increment.hpp │ │ │ ├── has_right_shift.hpp │ │ │ ├── has_right_shift_assign.hpp │ │ │ ├── has_trivial_assign.hpp │ │ │ ├── has_trivial_constructor.hpp │ │ │ ├── has_trivial_copy.hpp │ │ │ ├── has_trivial_destructor.hpp │ │ │ ├── has_trivial_move_assign.hpp │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ ├── has_unary_minus.hpp │ │ │ ├── has_unary_plus.hpp │ │ │ ├── has_virtual_destructor.hpp │ │ │ ├── ice.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── integral_promotion.hpp │ │ │ ├── intrinsics.hpp │ │ │ ├── is_abstract.hpp │ │ │ ├── is_arithmetic.hpp │ │ │ ├── is_array.hpp │ │ │ ├── is_assignable.hpp │ │ │ ├── is_base_and_derived.hpp │ │ │ ├── is_base_of.hpp │ │ │ ├── is_base_of_tr1.hpp │ │ │ ├── is_bounded_array.hpp │ │ │ ├── is_class.hpp │ │ │ ├── is_complete.hpp │ │ │ ├── is_complex.hpp │ │ │ ├── is_compound.hpp │ │ │ ├── is_const.hpp │ │ │ ├── is_constructible.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── is_copy_assignable.hpp │ │ │ ├── is_copy_constructible.hpp │ │ │ ├── is_default_constructible.hpp │ │ │ ├── is_destructible.hpp │ │ │ ├── is_detected.hpp │ │ │ ├── is_detected_convertible.hpp │ │ │ ├── is_detected_exact.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_enum.hpp │ │ │ ├── is_final.hpp │ │ │ ├── is_float.hpp │ │ │ ├── is_floating_point.hpp │ │ │ ├── is_function.hpp │ │ │ ├── is_fundamental.hpp │ │ │ ├── is_integral.hpp │ │ │ ├── is_list_constructible.hpp │ │ │ ├── is_lvalue_reference.hpp │ │ │ ├── is_member_function_pointer.hpp │ │ │ ├── is_member_object_pointer.hpp │ │ │ ├── is_member_pointer.hpp │ │ │ ├── is_noncopyable.hpp │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ ├── is_nothrow_swappable.hpp │ │ │ ├── is_object.hpp │ │ │ ├── is_pod.hpp │ │ │ ├── is_pointer.hpp │ │ │ ├── is_polymorphic.hpp │ │ │ ├── is_reference.hpp │ │ │ ├── is_rvalue_reference.hpp │ │ │ ├── is_same.hpp │ │ │ ├── is_scalar.hpp │ │ │ ├── is_signed.hpp │ │ │ ├── is_stateless.hpp │ │ │ ├── is_unbounded_array.hpp │ │ │ ├── is_union.hpp │ │ │ ├── is_unsigned.hpp │ │ │ ├── is_virtual_base_of.hpp │ │ │ ├── is_void.hpp │ │ │ ├── is_volatile.hpp │ │ │ ├── make_signed.hpp │ │ │ ├── make_unsigned.hpp │ │ │ ├── make_void.hpp │ │ │ ├── nonesuch.hpp │ │ │ ├── object_traits.hpp │ │ │ ├── promote.hpp │ │ │ ├── rank.hpp │ │ │ ├── reference_traits.hpp │ │ │ ├── remove_all_extents.hpp │ │ │ ├── remove_bounds.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_cv_ref.hpp │ │ │ ├── remove_extent.hpp │ │ │ ├── remove_pointer.hpp │ │ │ ├── remove_reference.hpp │ │ │ ├── remove_volatile.hpp │ │ │ ├── same_traits.hpp │ │ │ ├── transform_traits.hpp │ │ │ ├── type_identity.hpp │ │ │ └── type_with_alignment.hpp │ │ │ ├── utility │ │ │ └── addressof.hpp │ │ │ └── version.hpp │ ├── fmt.cmake │ ├── imgui │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── issue_template.md │ │ │ ├── pull_request_template.md │ │ │ └── workflows │ │ │ │ ├── build.yml │ │ │ │ ├── scheduled.yml │ │ │ │ └── static-analysis.yml │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── backends │ │ │ ├── imgui_impl_allegro5.cpp │ │ │ ├── imgui_impl_allegro5.h │ │ │ ├── imgui_impl_android.cpp │ │ │ ├── imgui_impl_android.h │ │ │ ├── imgui_impl_dx10.cpp │ │ │ ├── imgui_impl_dx10.h │ │ │ ├── imgui_impl_dx11.cpp │ │ │ ├── imgui_impl_dx11.h │ │ │ ├── imgui_impl_dx12.cpp │ │ │ ├── imgui_impl_dx12.h │ │ │ ├── imgui_impl_dx9.cpp │ │ │ ├── imgui_impl_dx9.h │ │ │ ├── imgui_impl_glfw.cpp │ │ │ ├── imgui_impl_glfw.h │ │ │ ├── imgui_impl_glut.cpp │ │ │ ├── imgui_impl_glut.h │ │ │ ├── imgui_impl_marmalade.cpp │ │ │ ├── imgui_impl_marmalade.h │ │ │ ├── imgui_impl_metal.h │ │ │ ├── imgui_impl_metal.mm │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ ├── imgui_impl_opengl2.h │ │ │ ├── imgui_impl_opengl3.cpp │ │ │ ├── imgui_impl_opengl3.h │ │ │ ├── imgui_impl_osx.h │ │ │ ├── imgui_impl_osx.mm │ │ │ ├── imgui_impl_sdl.cpp │ │ │ ├── imgui_impl_sdl.h │ │ │ ├── imgui_impl_vulkan.cpp │ │ │ ├── imgui_impl_vulkan.h │ │ │ ├── imgui_impl_wgpu.cpp │ │ │ ├── imgui_impl_wgpu.h │ │ │ ├── imgui_impl_win32.cpp │ │ │ ├── imgui_impl_win32.h │ │ │ └── vulkan │ │ │ │ ├── generate_spv.sh │ │ │ │ ├── glsl_shader.frag │ │ │ │ └── glsl_shader.vert │ │ ├── docs │ │ │ ├── BACKENDS.md │ │ │ ├── CHANGELOG.txt │ │ │ ├── EXAMPLES.md │ │ │ ├── FAQ.md │ │ │ ├── FONTS.md │ │ │ ├── README.md │ │ │ └── TODO.txt │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── example_allegro5 │ │ │ │ ├── README.md │ │ │ │ ├── example_allegro5.vcxproj │ │ │ │ ├── example_allegro5.vcxproj.filters │ │ │ │ ├── imconfig_allegro5.h │ │ │ │ └── main.cpp │ │ │ ├── example_android_opengl3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── android │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── app │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── settings.gradle │ │ │ │ └── main.cpp │ │ │ ├── example_apple_metal │ │ │ │ ├── README.md │ │ │ │ ├── example_apple_metal.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── iOS │ │ │ │ │ ├── Info-iOS.plist │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── macOS │ │ │ │ │ ├── Info-macOS.plist │ │ │ │ │ └── MainMenu.storyboard │ │ │ │ └── main.mm │ │ │ ├── example_apple_opengl2 │ │ │ │ ├── example_apple_opengl2.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── main.mm │ │ │ ├── example_emscripten_opengl3 │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── main.cpp │ │ │ │ └── shell_minimal.html │ │ │ ├── example_emscripten_wgpu │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── main.cpp │ │ │ ├── example_glfw_metal │ │ │ │ ├── Makefile │ │ │ │ └── main.mm │ │ │ ├── example_glfw_opengl2 │ │ │ │ ├── Makefile │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_glfw_opengl2.vcxproj │ │ │ │ ├── example_glfw_opengl2.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_glfw_opengl3 │ │ │ │ ├── Makefile │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_glfw_opengl3.vcxproj │ │ │ │ ├── example_glfw_opengl3.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_glfw_vulkan │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build_win32.bat │ │ │ │ ├── build_win64.bat │ │ │ │ ├── example_glfw_vulkan.vcxproj │ │ │ │ ├── example_glfw_vulkan.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_glut_opengl2 │ │ │ │ ├── Makefile │ │ │ │ ├── example_glut_opengl2.vcxproj │ │ │ │ ├── example_glut_opengl2.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_marmalade │ │ │ │ ├── data │ │ │ │ │ └── app.icf │ │ │ │ ├── main.cpp │ │ │ │ └── marmalade_example.mkb │ │ │ ├── example_null │ │ │ │ ├── Makefile │ │ │ │ ├── build_win32.bat │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_directx11 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_sdl_directx11.vcxproj │ │ │ │ ├── example_sdl_directx11.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_metal │ │ │ │ ├── Makefile │ │ │ │ └── main.mm │ │ │ ├── example_sdl_opengl2 │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_sdl_opengl2.vcxproj │ │ │ │ ├── example_sdl_opengl2.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_opengl3 │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_sdl_opengl3.vcxproj │ │ │ │ ├── example_sdl_opengl3.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_vulkan │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_sdl_vulkan.vcxproj │ │ │ │ ├── example_sdl_vulkan.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx10 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx10.vcxproj │ │ │ │ ├── example_win32_directx10.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx11 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx11.vcxproj │ │ │ │ ├── example_win32_directx11.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx12 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx12.vcxproj │ │ │ │ ├── example_win32_directx12.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx9 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx9.vcxproj │ │ │ │ ├── example_win32_directx9.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── imgui_examples.sln │ │ │ └── libs │ │ │ │ ├── gl3w │ │ │ │ └── GL │ │ │ │ │ ├── gl3w.c │ │ │ │ │ ├── gl3w.h │ │ │ │ │ └── glcorearb.h │ │ │ │ ├── glfw │ │ │ │ ├── COPYING.txt │ │ │ │ ├── include │ │ │ │ │ └── GLFW │ │ │ │ │ │ ├── glfw3.h │ │ │ │ │ │ └── glfw3native.h │ │ │ │ ├── lib-vc2010-32 │ │ │ │ │ └── glfw3.lib │ │ │ │ └── lib-vc2010-64 │ │ │ │ │ └── glfw3.lib │ │ │ │ └── usynergy │ │ │ │ ├── README.txt │ │ │ │ ├── uSynergy.c │ │ │ │ └── uSynergy.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ └── misc │ │ │ ├── README.txt │ │ │ ├── cpp │ │ │ ├── README.txt │ │ │ ├── imgui_stdlib.cpp │ │ │ └── imgui_stdlib.h │ │ │ ├── debuggers │ │ │ ├── README.txt │ │ │ ├── imgui.gdb │ │ │ ├── imgui.natstepfilter │ │ │ └── imgui.natvis │ │ │ ├── fonts │ │ │ ├── Cousine-Regular.ttf │ │ │ ├── DroidSans.ttf │ │ │ ├── Karla-Regular.ttf │ │ │ ├── ProggyClean.ttf │ │ │ ├── ProggyTiny.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ └── binary_to_compressed_c.cpp │ │ │ ├── freetype │ │ │ ├── README.md │ │ │ ├── imgui_freetype.cpp │ │ │ └── imgui_freetype.h │ │ │ └── single_file │ │ │ └── imgui_single_file.h │ ├── intrusive │ │ └── boost │ │ │ ├── assert.hpp │ │ │ ├── config.hpp │ │ │ ├── config │ │ │ ├── abi │ │ │ │ ├── borland_prefix.hpp │ │ │ │ ├── borland_suffix.hpp │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ └── msvc_suffix.hpp │ │ │ ├── abi_prefix.hpp │ │ │ ├── abi_suffix.hpp │ │ │ ├── auto_link.hpp │ │ │ ├── compiler │ │ │ │ ├── borland.hpp │ │ │ │ ├── clang.hpp │ │ │ │ ├── codegear.hpp │ │ │ │ ├── comeau.hpp │ │ │ │ ├── common_edg.hpp │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── diab.hpp │ │ │ │ ├── digitalmars.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gcc_xml.hpp │ │ │ │ ├── greenhills.hpp │ │ │ │ ├── hp_acc.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── kai.hpp │ │ │ │ ├── metrowerks.hpp │ │ │ │ ├── mpw.hpp │ │ │ │ ├── nvcc.hpp │ │ │ │ ├── pathscale.hpp │ │ │ │ ├── pgi.hpp │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ ├── visualc.hpp │ │ │ │ ├── xlcpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── detail │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ └── suffix.hpp │ │ │ ├── header_deprecated.hpp │ │ │ ├── helper_macros.hpp │ │ │ ├── no_tr1 │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── utility.hpp │ │ │ ├── platform │ │ │ │ ├── aix.hpp │ │ │ │ ├── amigaos.hpp │ │ │ │ ├── beos.hpp │ │ │ │ ├── bsd.hpp │ │ │ │ ├── cloudabi.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── cygwin.hpp │ │ │ │ ├── haiku.hpp │ │ │ │ ├── hpux.hpp │ │ │ │ ├── irix.hpp │ │ │ │ ├── linux.hpp │ │ │ │ ├── macos.hpp │ │ │ │ ├── qnxnto.hpp │ │ │ │ ├── solaris.hpp │ │ │ │ ├── symbian.hpp │ │ │ │ ├── vms.hpp │ │ │ │ ├── vxworks.hpp │ │ │ │ ├── win32.hpp │ │ │ │ └── zos.hpp │ │ │ ├── pragma_message.hpp │ │ │ ├── requires_threads.hpp │ │ │ ├── stdlib │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── libcomo.hpp │ │ │ │ ├── libcpp.hpp │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ ├── modena.hpp │ │ │ │ ├── msl.hpp │ │ │ │ ├── roguewave.hpp │ │ │ │ ├── sgi.hpp │ │ │ │ ├── stlport.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── user.hpp │ │ │ ├── warning_disable.hpp │ │ │ └── workaround.hpp │ │ │ ├── current_function.hpp │ │ │ ├── detail │ │ │ └── workaround.hpp │ │ │ ├── intrusive_ptr.hpp │ │ │ ├── smart_ptr │ │ │ ├── detail │ │ │ │ ├── operator_bool.hpp │ │ │ │ ├── sp_convertible.hpp │ │ │ │ ├── sp_noexcept.hpp │ │ │ │ └── sp_nullptr_t.hpp │ │ │ └── intrusive_ptr.hpp │ │ │ └── version.hpp │ ├── nvidia-texture-tools │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ └── build.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── cmake │ │ │ └── OptimalOptions.cmake │ │ ├── configure │ │ ├── data │ │ │ ├── bugs │ │ │ │ ├── 85 │ │ │ │ │ ├── Sky.tga │ │ │ │ │ ├── sky_dither.dds │ │ │ │ │ ├── sky_error.dds │ │ │ │ │ ├── sky_screenshot_1.png │ │ │ │ │ └── tables.cpp │ │ │ │ ├── 88 │ │ │ │ │ └── nmap.png │ │ │ │ └── mthomson │ │ │ │ │ ├── world.png │ │ │ │ │ └── world.tif │ │ │ ├── cubemaps │ │ │ │ └── MeadowTrail.dds │ │ │ ├── luma │ │ │ │ └── testpat_orig.1k.png │ │ │ ├── testsuite │ │ │ │ ├── epic │ │ │ │ │ ├── Bradley1.png │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── MoreRocks.png │ │ │ │ │ ├── Rainbow.png │ │ │ │ │ ├── Text.png │ │ │ │ │ └── Wall.png │ │ │ │ ├── farbrausch │ │ │ │ │ ├── t.2d.pn02.png │ │ │ │ │ ├── t.aircondition.01.png │ │ │ │ │ ├── t.bricks.02.png │ │ │ │ │ ├── t.bricks.05.png │ │ │ │ │ ├── t.concrete.cracked.01.png │ │ │ │ │ ├── t.envi.colored02.png │ │ │ │ │ ├── t.envi.colored03.png │ │ │ │ │ ├── t.font.01.png │ │ │ │ │ ├── t.sewers.01.png │ │ │ │ │ ├── t.train.03.png │ │ │ │ │ └── t.yello.01.png │ │ │ │ ├── id_nmap │ │ │ │ │ ├── 01_arcade.png │ │ │ │ │ ├── 02_tentacle.png │ │ │ │ │ ├── 03_chest.png │ │ │ │ │ └── 04_face.png │ │ │ │ ├── id_tnmap │ │ │ │ │ ├── 01_dot1.png │ │ │ │ │ ├── 02_dot2.png │ │ │ │ │ ├── 03_dot3.png │ │ │ │ │ ├── 04_dot4.png │ │ │ │ │ ├── 05_lumpy.png │ │ │ │ │ ├── 06_voronoi.png │ │ │ │ │ ├── 07_turtle.png │ │ │ │ │ ├── 08_normalmap.png │ │ │ │ │ ├── 09_metal.png │ │ │ │ │ ├── 10_skin.png │ │ │ │ │ ├── 11_onetile.png │ │ │ │ │ ├── 12_barrel.png │ │ │ │ │ ├── 13_arcade.png │ │ │ │ │ ├── 14_tentacle.png │ │ │ │ │ ├── 15_chest.png │ │ │ │ │ └── 16_face.png │ │ │ │ ├── kodak │ │ │ │ │ ├── kodim01.png │ │ │ │ │ ├── kodim02.png │ │ │ │ │ ├── kodim03.png │ │ │ │ │ ├── kodim04.png │ │ │ │ │ ├── kodim05.png │ │ │ │ │ ├── kodim06.png │ │ │ │ │ ├── kodim07.png │ │ │ │ │ ├── kodim08.png │ │ │ │ │ ├── kodim09.png │ │ │ │ │ ├── kodim10.png │ │ │ │ │ ├── kodim11.png │ │ │ │ │ ├── kodim12.png │ │ │ │ │ ├── kodim13.png │ │ │ │ │ ├── kodim14.png │ │ │ │ │ ├── kodim15.png │ │ │ │ │ ├── kodim16.png │ │ │ │ │ ├── kodim17.png │ │ │ │ │ ├── kodim18.png │ │ │ │ │ ├── kodim19.png │ │ │ │ │ ├── kodim20.png │ │ │ │ │ ├── kodim21.png │ │ │ │ │ ├── kodim22.png │ │ │ │ │ ├── kodim23.png │ │ │ │ │ └── kodim24.png │ │ │ │ ├── lightmap │ │ │ │ │ ├── cottage.dds │ │ │ │ │ ├── specruin.dds │ │ │ │ │ └── tower.dds │ │ │ │ ├── lugaru │ │ │ │ │ ├── lugaru-blood.png │ │ │ │ │ ├── lugaru-bush.png │ │ │ │ │ ├── lugaru-cursor.png │ │ │ │ │ └── lugaru-hawk.png │ │ │ │ ├── quake3 │ │ │ │ │ ├── q3-blocks15cgeomtrn.tga │ │ │ │ │ ├── q3-blocks17bloody.tga │ │ │ │ │ ├── q3-dark_tin2.tga │ │ │ │ │ ├── q3-fan.tga │ │ │ │ │ ├── q3-fan_grate.tga │ │ │ │ │ ├── q3-metal2_2.tga │ │ │ │ │ ├── q3-panel_glo.tga │ │ │ │ │ ├── q3-proto_fence.tga │ │ │ │ │ └── q3-wires02.tga │ │ │ │ └── waterloo │ │ │ │ │ ├── baboon.png │ │ │ │ │ ├── clegg.png │ │ │ │ │ ├── frymire.png │ │ │ │ │ ├── lena.png │ │ │ │ │ ├── monarch.png │ │ │ │ │ ├── peppers.png │ │ │ │ │ ├── sail.png │ │ │ │ │ ├── serrano.png │ │ │ │ │ └── tulips.png │ │ │ └── witness │ │ │ │ ├── archway.dds │ │ │ │ ├── hallway.dds │ │ │ │ ├── hub.dds │ │ │ │ ├── hut.dds │ │ │ │ ├── mine.dds │ │ │ │ ├── run.sh │ │ │ │ ├── shaft.dds │ │ │ │ ├── theater.dds │ │ │ │ ├── tower.dds │ │ │ │ ├── tunnel.dds │ │ │ │ └── windmill.dds │ │ ├── doc │ │ │ └── release_todo │ │ ├── extern │ │ │ ├── CMP_Core │ │ │ │ ├── CMP_Core.def │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── shaders │ │ │ │ │ ├── BC1_Encode_kernel.cpp │ │ │ │ │ ├── BC1_Encode_kernel.h │ │ │ │ │ ├── BC1_Encode_kernel.hlsl │ │ │ │ │ ├── BC2_Encode_kernel.cpp │ │ │ │ │ ├── BC2_Encode_kernel.h │ │ │ │ │ ├── BC2_Encode_kernel.hlsl │ │ │ │ │ ├── BC3_Encode_kernel.cpp │ │ │ │ │ ├── BC3_Encode_kernel.h │ │ │ │ │ ├── BC3_Encode_kernel.hlsl │ │ │ │ │ ├── BC4_Encode_kernel.cpp │ │ │ │ │ ├── BC4_Encode_kernel.h │ │ │ │ │ ├── BC4_Encode_kernel.hlsl │ │ │ │ │ ├── BC5_Encode_kernel.cpp │ │ │ │ │ ├── BC5_Encode_kernel.h │ │ │ │ │ ├── BC5_Encode_kernel.hlsl │ │ │ │ │ ├── BC6_Encode_kernel.cpp │ │ │ │ │ ├── BC6_Encode_kernel.h │ │ │ │ │ ├── BC6_Encode_kernel.hlsl │ │ │ │ │ ├── BC7_Encode_Kernel.cpp │ │ │ │ │ ├── BC7_Encode_Kernel.h │ │ │ │ │ ├── BC7_Encode_kernel.hlsl │ │ │ │ │ ├── BCn_Common_Kernel.h │ │ │ │ │ ├── Common_Def.h │ │ │ │ │ └── CopyFiles.bat │ │ │ │ ├── source │ │ │ │ │ ├── CMP_Core.h │ │ │ │ │ ├── cmp_math_func.h │ │ │ │ │ └── cmp_math_vec4.h │ │ │ │ └── test │ │ │ │ │ ├── BlockConstants.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CompressonatorTests.cpp │ │ │ │ │ ├── CompressonatorTests.h │ │ │ │ │ └── TestsMain.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EtcLib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Etc │ │ │ │ │ ├── Etc.cpp │ │ │ │ │ ├── Etc.h │ │ │ │ │ ├── EtcColor.h │ │ │ │ │ ├── EtcColorFloatRGBA.h │ │ │ │ │ ├── EtcConfig.h │ │ │ │ │ ├── EtcImage.cpp │ │ │ │ │ ├── EtcImage.h │ │ │ │ │ ├── EtcMath.cpp │ │ │ │ │ └── EtcMath.h │ │ │ │ └── EtcCodec │ │ │ │ │ ├── EtcBlock4x4.cpp │ │ │ │ │ ├── EtcBlock4x4.h │ │ │ │ │ ├── EtcBlock4x4Encoding.cpp │ │ │ │ │ ├── EtcBlock4x4Encoding.h │ │ │ │ │ ├── EtcBlock4x4EncodingBits.h │ │ │ │ │ ├── EtcBlock4x4Encoding_ETC1.cpp │ │ │ │ │ ├── EtcBlock4x4Encoding_ETC1.h │ │ │ │ │ ├── EtcBlock4x4Encoding_R11.cpp │ │ │ │ │ ├── EtcBlock4x4Encoding_R11.h │ │ │ │ │ ├── EtcBlock4x4Encoding_RG11.cpp │ │ │ │ │ ├── EtcBlock4x4Encoding_RG11.h │ │ │ │ │ ├── EtcBlock4x4Encoding_RGB8.cpp │ │ │ │ │ ├── EtcBlock4x4Encoding_RGB8.h │ │ │ │ │ ├── EtcBlock4x4Encoding_RGB8A1.cpp │ │ │ │ │ ├── EtcBlock4x4Encoding_RGB8A1.h │ │ │ │ │ ├── EtcBlock4x4Encoding_RGBA8.cpp │ │ │ │ │ ├── EtcBlock4x4Encoding_RGBA8.h │ │ │ │ │ ├── EtcDifferentialTrys.cpp │ │ │ │ │ ├── EtcDifferentialTrys.h │ │ │ │ │ ├── EtcErrorMetric.h │ │ │ │ │ ├── EtcIndividualTrys.cpp │ │ │ │ │ ├── EtcIndividualTrys.h │ │ │ │ │ ├── EtcSortedBlockList.cpp │ │ │ │ │ └── EtcSortedBlockList.h │ │ │ ├── etcpack │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── etcdec.cxx │ │ │ │ ├── etcpack.cxx │ │ │ │ ├── image.cxx │ │ │ │ └── image.h │ │ │ ├── libsquish-1.15 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeModules │ │ │ │ │ └── FindlibSquish.cmake │ │ │ │ ├── ChangeLog.txt │ │ │ │ ├── Doxyfile │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── alpha.cpp │ │ │ │ ├── alpha.h │ │ │ │ ├── clusterfit.cpp │ │ │ │ ├── clusterfit.h │ │ │ │ ├── colourblock.cpp │ │ │ │ ├── colourblock.h │ │ │ │ ├── colourfit.cpp │ │ │ │ ├── colourfit.h │ │ │ │ ├── colourset.cpp │ │ │ │ ├── colourset.h │ │ │ │ ├── config │ │ │ │ ├── config.h │ │ │ │ ├── extra │ │ │ │ │ ├── squishgen.cpp │ │ │ │ │ ├── squishpng.cpp │ │ │ │ │ └── squishtest.cpp │ │ │ │ ├── libSquish.png │ │ │ │ ├── libSquish.pri │ │ │ │ ├── libSquish.pro │ │ │ │ ├── libSquish.svg │ │ │ │ ├── libsquish.pc.in │ │ │ │ ├── maths.cpp │ │ │ │ ├── maths.h │ │ │ │ ├── rangefit.cpp │ │ │ │ ├── rangefit.h │ │ │ │ ├── simd.h │ │ │ │ ├── simd_float.h │ │ │ │ ├── simd_sse.h │ │ │ │ ├── simd_ve.h │ │ │ │ ├── singlecolourfit.cpp │ │ │ │ ├── singlecolourfit.h │ │ │ │ ├── singlecolourlookup.inl │ │ │ │ ├── squish.cpp │ │ │ │ └── squish.h │ │ │ ├── poshlib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── posh.c │ │ │ │ └── posh.h │ │ │ ├── pvrtextool │ │ │ │ ├── Include │ │ │ │ │ ├── PVRTArray.h │ │ │ │ │ ├── PVRTDecompress.h │ │ │ │ │ ├── PVRTError.h │ │ │ │ │ ├── PVRTGlobal.h │ │ │ │ │ ├── PVRTMap.h │ │ │ │ │ ├── PVRTString.h │ │ │ │ │ ├── PVRTTexture.h │ │ │ │ │ ├── PVRTTypes.h │ │ │ │ │ ├── PVRTexture.h │ │ │ │ │ ├── PVRTextureDefines.h │ │ │ │ │ ├── PVRTextureFormat.h │ │ │ │ │ ├── PVRTextureHeader.h │ │ │ │ │ ├── PVRTextureUtilities.h │ │ │ │ │ └── PVRTextureVersion.h │ │ │ │ ├── OSX_x86 │ │ │ │ │ └── Static │ │ │ │ │ │ └── libPVRTexLib.a │ │ │ │ ├── Windows_x86_32 │ │ │ │ │ └── Static │ │ │ │ │ │ └── PVRTexLib.lib │ │ │ │ └── Windows_x86_64 │ │ │ │ │ └── Static │ │ │ │ │ └── PVRTexLib.lib │ │ │ ├── rg │ │ │ │ ├── rgbcx.h │ │ │ │ └── rgbcx_table4.h │ │ │ ├── rg_etc1_v104 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── rg_etc1.cpp │ │ │ │ └── rg_etc1.h │ │ │ └── stb │ │ │ │ ├── stb_dxt.h │ │ │ │ ├── stb_image.h │ │ │ │ ├── stb_image_resize.h │ │ │ │ └── stb_image_write.h │ │ ├── project │ │ │ ├── nvtt.code-workspace │ │ │ ├── nvtt.sublime-project │ │ │ └── vc2017 │ │ │ │ ├── Nvidia.TextureTools │ │ │ │ ├── Nvidia.TextureTools.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── TextureTools.cs │ │ │ │ ├── bc6h │ │ │ │ └── bc6h.vcxproj │ │ │ │ ├── bc7 │ │ │ │ └── bc7.vcxproj │ │ │ │ ├── buildpkg.bat │ │ │ │ ├── imperativeapi │ │ │ │ └── imperativeapi.vcxproj │ │ │ │ ├── nvassemble │ │ │ │ ├── nvassemble.rc │ │ │ │ ├── nvassemble.vcxproj │ │ │ │ ├── nvassemble.vcxproj.filters │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvcompress │ │ │ │ ├── nvcompress.rc │ │ │ │ ├── nvcompress.vcxproj │ │ │ │ ├── nvcompress.vcxproj.filters │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvconfig.h │ │ │ │ ├── nvcore │ │ │ │ └── nvcore.vcxproj │ │ │ │ ├── nvddsinfo │ │ │ │ ├── nvddsinfo.rc │ │ │ │ ├── nvddsinfo.vcxproj │ │ │ │ ├── nvddsinfo.vcxproj.filters │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvdecompress │ │ │ │ ├── nvdecompress.rc │ │ │ │ ├── nvdecompress.vcxproj │ │ │ │ ├── nvdecompress.vcxproj.filters │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvimage │ │ │ │ └── nvimage.vcxproj │ │ │ │ ├── nvimgdiff │ │ │ │ ├── nvidia.ico │ │ │ │ ├── nvimgdiff.rc │ │ │ │ ├── nvimgdiff.vcxproj │ │ │ │ ├── nvimgdiff.vcxproj.filters │ │ │ │ └── resource.h │ │ │ │ ├── nvmath │ │ │ │ └── nvmath.vcxproj │ │ │ │ ├── nvthread │ │ │ │ ├── nvthread.vcxproj │ │ │ │ └── nvthread.vcxproj.filters │ │ │ │ ├── nvtt.props │ │ │ │ ├── nvtt.sln │ │ │ │ ├── nvtt │ │ │ │ ├── nvtt.rc │ │ │ │ ├── nvtt.vcxproj │ │ │ │ ├── nvtt.vcxproj.filters │ │ │ │ └── resource.h │ │ │ │ ├── nvzoom │ │ │ │ ├── nvidia.ico │ │ │ │ ├── nvzoom.rc │ │ │ │ ├── nvzoom.vcxproj │ │ │ │ ├── nvzoom.vcxproj.filters │ │ │ │ └── resource.h │ │ │ │ ├── squish │ │ │ │ └── squish.vcxproj │ │ │ │ └── testsuite │ │ │ │ └── testsuite.vcxproj │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── bc6h │ │ │ ├── CMakeLists.txt │ │ │ ├── bits.h │ │ │ ├── shapes_two.h │ │ │ ├── tile.h │ │ │ ├── zoh.cpp │ │ │ ├── zoh.h │ │ │ ├── zoh_utils.cpp │ │ │ ├── zoh_utils.h │ │ │ ├── zohone.cpp │ │ │ └── zohtwo.cpp │ │ │ ├── bc7 │ │ │ ├── CMakeLists.txt │ │ │ ├── avpcl.cpp │ │ │ ├── avpcl.h │ │ │ ├── avpcl_mode0.cpp │ │ │ ├── avpcl_mode1.cpp │ │ │ ├── avpcl_mode2.cpp │ │ │ ├── avpcl_mode3.cpp │ │ │ ├── avpcl_mode4.cpp │ │ │ ├── avpcl_mode5.cpp │ │ │ ├── avpcl_mode6.cpp │ │ │ ├── avpcl_mode7.cpp │ │ │ ├── avpcl_utils.cpp │ │ │ ├── avpcl_utils.h │ │ │ ├── bits.h │ │ │ ├── endpts.h │ │ │ ├── shapes_three.h │ │ │ ├── shapes_two.h │ │ │ └── tile.h │ │ │ ├── nvconfig.h.in │ │ │ ├── nvcore │ │ │ ├── Array.h │ │ │ ├── Array.inl │ │ │ ├── CMakeLists.txt │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── DefsGnucDarwin.h │ │ │ ├── DefsGnucLinux.h │ │ │ ├── DefsGnucWin32.h │ │ │ ├── DefsVcWin32.h │ │ │ ├── FileSystem.cpp │ │ │ ├── FileSystem.h │ │ │ ├── ForEach.h │ │ │ ├── Hash.h │ │ │ ├── Library.cpp │ │ │ ├── Library.h │ │ │ ├── Memory.cpp │ │ │ ├── Memory.h │ │ │ ├── Ptr.h │ │ │ ├── RefCounted.h │ │ │ ├── StdStream.h │ │ │ ├── StrLib.cpp │ │ │ ├── StrLib.h │ │ │ ├── Stream.h │ │ │ ├── TextWriter.cpp │ │ │ ├── TextWriter.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── Utils.h │ │ │ └── nvcore.h │ │ │ ├── nvimage │ │ │ ├── BlockDXT.cpp │ │ │ ├── BlockDXT.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ColorBlock.cpp │ │ │ ├── ColorBlock.h │ │ │ ├── ColorSpace.cpp │ │ │ ├── ColorSpace.h │ │ │ ├── DirectDrawSurface.cpp │ │ │ ├── DirectDrawSurface.h │ │ │ ├── ErrorMetric.cpp │ │ │ ├── ErrorMetric.h │ │ │ ├── Filter.cpp │ │ │ ├── Filter.h │ │ │ ├── FloatImage.cpp │ │ │ ├── FloatImage.h │ │ │ ├── Image.cpp │ │ │ ├── Image.h │ │ │ ├── ImageIO.cpp │ │ │ ├── ImageIO.h │ │ │ ├── KtxFile.cpp │ │ │ ├── KtxFile.h │ │ │ ├── NormalMap.cpp │ │ │ ├── NormalMap.h │ │ │ ├── PixelFormat.h │ │ │ ├── PsdFile.h │ │ │ ├── Quantize.cpp │ │ │ ├── Quantize.h │ │ │ ├── TgaFile.h │ │ │ └── nvimage.h │ │ │ ├── nvmath │ │ │ ├── Box.cpp │ │ │ ├── Box.h │ │ │ ├── Box.inl │ │ │ ├── CMakeLists.txt │ │ │ ├── Color.cpp │ │ │ ├── Color.h │ │ │ ├── Color.inl │ │ │ ├── Fitting.cpp │ │ │ ├── Fitting.h │ │ │ ├── Gamma.cpp │ │ │ ├── Gamma.h │ │ │ ├── Half.cpp │ │ │ ├── Half.h │ │ │ ├── Matrix.cpp │ │ │ ├── Matrix.h │ │ │ ├── Matrix.inl │ │ │ ├── PackedFloat.cpp │ │ │ ├── PackedFloat.h │ │ │ ├── Plane.cpp │ │ │ ├── Plane.h │ │ │ ├── Plane.inl │ │ │ ├── SphericalHarmonic.cpp │ │ │ ├── SphericalHarmonic.h │ │ │ ├── Vector.cpp │ │ │ ├── Vector.h │ │ │ ├── Vector.inl │ │ │ ├── ftoi.h │ │ │ └── nvmath.h │ │ │ ├── nvthread │ │ │ ├── Atomic.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Event.cpp │ │ │ ├── Event.h │ │ │ ├── Mutex.cpp │ │ │ ├── Mutex.h │ │ │ ├── ParallelFor.cpp │ │ │ ├── ParallelFor.h │ │ │ ├── Thread.cpp │ │ │ ├── Thread.h │ │ │ ├── ThreadPool.cpp │ │ │ ├── ThreadPool.h │ │ │ ├── Win32.h │ │ │ ├── nvthread.cpp │ │ │ └── nvthread.h │ │ │ └── nvtt │ │ │ ├── BlockCompressor.cpp │ │ │ ├── BlockCompressor.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CompressionOptions.cpp │ │ │ ├── CompressionOptions.h │ │ │ ├── Compressor.h │ │ │ ├── CompressorDX10.cpp │ │ │ ├── CompressorDX10.h │ │ │ ├── CompressorDX11.cpp │ │ │ ├── CompressorDX11.h │ │ │ ├── CompressorDX9.cpp │ │ │ ├── CompressorDX9.h │ │ │ ├── CompressorDXT5_RGBM.cpp │ │ │ ├── CompressorDXT5_RGBM.h │ │ │ ├── CompressorETC.cpp │ │ │ ├── CompressorETC.h │ │ │ ├── CompressorRGB.cpp │ │ │ ├── CompressorRGB.h │ │ │ ├── Context.cpp │ │ │ ├── Context.h │ │ │ ├── CubeSurface.cpp │ │ │ ├── CubeSurface.h │ │ │ ├── InputOptions.cpp │ │ │ ├── InputOptions.h │ │ │ ├── OptimalCompressDXT.cpp │ │ │ ├── OptimalCompressDXT.h │ │ │ ├── OutputOptions.cpp │ │ │ ├── OutputOptions.h │ │ │ ├── QuickCompressDXT.cpp │ │ │ ├── QuickCompressDXT.h │ │ │ ├── SingleColorLookup.cpp │ │ │ ├── SingleColorLookup.h │ │ │ ├── Surface.cpp │ │ │ ├── Surface.h │ │ │ ├── TaskDispatcher.cpp │ │ │ ├── TaskDispatcher.h │ │ │ ├── cuda │ │ │ ├── BitmapTable.h │ │ │ ├── CompressKernel.cu │ │ │ ├── ConvolveKernel.cu │ │ │ ├── CudaCompressorDXT.cpp │ │ │ ├── CudaCompressorDXT.h │ │ │ ├── CudaMath.h │ │ │ ├── CudaUtils.cpp │ │ │ └── CudaUtils.h │ │ │ ├── experimental │ │ │ ├── nvtt_experimental.cpp │ │ │ ├── nvtt_experimental.h │ │ │ └── test.cpp │ │ │ ├── icbc.cpp │ │ │ ├── icbc.h │ │ │ ├── nvtt.cpp │ │ │ ├── nvtt.h │ │ │ ├── nvtt_wrapper.cpp │ │ │ ├── nvtt_wrapper.h │ │ │ ├── squish │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile │ │ │ ├── README │ │ │ ├── alpha.cpp │ │ │ ├── alpha.h │ │ │ ├── clusterfit.cpp │ │ │ ├── clusterfit.h │ │ │ ├── colourblock.cpp │ │ │ ├── colourblock.h │ │ │ ├── colourfit.cpp │ │ │ ├── colourfit.h │ │ │ ├── colourset.cpp │ │ │ ├── colourset.h │ │ │ ├── config │ │ │ ├── config.h │ │ │ ├── extra │ │ │ │ ├── squishgen.cpp │ │ │ │ ├── squishgen2.cpp │ │ │ │ ├── squishpng.cpp │ │ │ │ └── squishtest.cpp │ │ │ ├── fastclusterfit.cpp │ │ │ ├── fastclusterfit.h │ │ │ ├── fastclusterlookup.inl │ │ │ ├── maths.cpp │ │ │ ├── maths.h │ │ │ ├── rangefit.cpp │ │ │ ├── rangefit.h │ │ │ ├── simd.h │ │ │ ├── simd_3dnow.h │ │ │ ├── simd_sse.h │ │ │ ├── simd_ve.h │ │ │ ├── singlechannelfit.cpp │ │ │ ├── singlechannelfit.h │ │ │ ├── singlecolourfit.cpp │ │ │ ├── singlecolourfit.h │ │ │ ├── singlecolourlookup.inl │ │ │ ├── squish.cpp │ │ │ ├── squish.h │ │ │ ├── weightedclusterfit.cpp │ │ │ └── weightedclusterfit.h │ │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── GoogleCharts.h │ │ │ ├── bc1enc.cpp │ │ │ ├── ctest.c │ │ │ ├── cubemaptest.cpp │ │ │ ├── driverapi.cpp │ │ │ ├── filtertest.cpp │ │ │ ├── hdrtest.cpp │ │ │ ├── imperativeapi.cpp │ │ │ ├── mpegenc.cpp │ │ │ ├── process_alpha_map.cpp │ │ │ └── testsuite.cpp │ │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── assemble.cpp │ │ │ ├── benchmark.cpp │ │ │ ├── cmdline.h │ │ │ ├── compress.cpp │ │ │ ├── compressdialog.cpp │ │ │ ├── compressdialog.h │ │ │ ├── compressdialog.ui │ │ │ ├── ddsinfo.cpp │ │ │ ├── ddsview.cpp │ │ │ ├── decompress.cpp │ │ │ ├── imgdiff.cpp │ │ │ ├── nvtt-thumbnailer.schema.in │ │ │ ├── resize.cpp │ │ │ ├── thumbnailer.cpp │ │ │ └── ui │ │ │ ├── configdialog.cpp │ │ │ ├── configdialog.h │ │ │ ├── configdialog.ui │ │ │ └── main.cpp │ ├── rapidjson │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── CMakeModules │ │ │ └── FindGTestSrc.cmake │ │ ├── RapidJSON.pc.in │ │ ├── RapidJSONConfig.cmake.in │ │ ├── RapidJSONConfigVersion.cmake.in │ │ ├── appveyor.yml │ │ ├── contrib │ │ │ └── natvis │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── rapidjson.natvis │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile.in │ │ │ ├── Doxyfile.zh-cn.in │ │ │ ├── diagram │ │ │ │ ├── architecture.dot │ │ │ │ ├── architecture.png │ │ │ │ ├── insituparsing.dot │ │ │ │ ├── insituparsing.png │ │ │ │ ├── iterative-parser-states-diagram.dot │ │ │ │ ├── iterative-parser-states-diagram.png │ │ │ │ ├── move1.dot │ │ │ │ ├── move1.png │ │ │ │ ├── move2.dot │ │ │ │ ├── move2.png │ │ │ │ ├── move3.dot │ │ │ │ ├── move3.png │ │ │ │ ├── normalparsing.dot │ │ │ │ ├── normalparsing.png │ │ │ │ ├── simpledom.dot │ │ │ │ ├── simpledom.png │ │ │ │ ├── tutorial.dot │ │ │ │ ├── tutorial.png │ │ │ │ ├── utilityclass.dot │ │ │ │ └── utilityclass.png │ │ │ ├── dom.md │ │ │ ├── dom.zh-cn.md │ │ │ ├── encoding.md │ │ │ ├── encoding.zh-cn.md │ │ │ ├── faq.md │ │ │ ├── faq.zh-cn.md │ │ │ ├── features.md │ │ │ ├── features.zh-cn.md │ │ │ ├── internals.md │ │ │ ├── internals.zh-cn.md │ │ │ ├── logo │ │ │ │ ├── rapidjson.png │ │ │ │ └── rapidjson.svg │ │ │ ├── misc │ │ │ │ ├── DoxygenLayout.xml │ │ │ │ ├── doxygenextra.css │ │ │ │ ├── footer.html │ │ │ │ └── header.html │ │ │ ├── npm.md │ │ │ ├── performance.md │ │ │ ├── performance.zh-cn.md │ │ │ ├── pointer.md │ │ │ ├── pointer.zh-cn.md │ │ │ ├── sax.md │ │ │ ├── sax.zh-cn.md │ │ │ ├── schema.md │ │ │ ├── schema.zh-cn.md │ │ │ ├── stream.md │ │ │ ├── stream.zh-cn.md │ │ │ ├── tutorial.md │ │ │ └── tutorial.zh-cn.md │ │ ├── docker │ │ │ └── debian │ │ │ │ └── Dockerfile │ │ ├── example │ │ │ ├── CMakeLists.txt │ │ │ ├── archiver │ │ │ │ ├── archiver.cpp │ │ │ │ ├── archiver.h │ │ │ │ └── archivertest.cpp │ │ │ ├── capitalize │ │ │ │ └── capitalize.cpp │ │ │ ├── condense │ │ │ │ └── condense.cpp │ │ │ ├── filterkey │ │ │ │ └── filterkey.cpp │ │ │ ├── filterkeydom │ │ │ │ └── filterkeydom.cpp │ │ │ ├── jsonx │ │ │ │ └── jsonx.cpp │ │ │ ├── lookaheadparser │ │ │ │ └── lookaheadparser.cpp │ │ │ ├── messagereader │ │ │ │ └── messagereader.cpp │ │ │ ├── parsebyparts │ │ │ │ └── parsebyparts.cpp │ │ │ ├── pretty │ │ │ │ └── pretty.cpp │ │ │ ├── prettyauto │ │ │ │ └── prettyauto.cpp │ │ │ ├── schemavalidator │ │ │ │ └── schemavalidator.cpp │ │ │ ├── serialize │ │ │ │ └── serialize.cpp │ │ │ ├── simpledom │ │ │ │ └── simpledom.cpp │ │ │ ├── simplepullreader │ │ │ │ └── simplepullreader.cpp │ │ │ ├── simplereader │ │ │ │ └── simplereader.cpp │ │ │ ├── simplewriter │ │ │ │ └── simplewriter.cpp │ │ │ ├── sortkeys │ │ │ │ └── sortkeys.cpp │ │ │ ├── traverseaspointer.cpp │ │ │ └── tutorial │ │ │ │ └── tutorial.cpp │ │ ├── include │ │ │ └── rapidjson │ │ │ │ ├── allocators.h │ │ │ │ ├── cursorstreamwrapper.h │ │ │ │ ├── document.h │ │ │ │ ├── encodedstream.h │ │ │ │ ├── encodings.h │ │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ │ ├── filereadstream.h │ │ │ │ ├── filewritestream.h │ │ │ │ ├── fwd.h │ │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── clzll.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ │ ├── istreamwrapper.h │ │ │ │ ├── memorybuffer.h │ │ │ │ ├── memorystream.h │ │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ │ ├── ostreamwrapper.h │ │ │ │ ├── pointer.h │ │ │ │ ├── prettywriter.h │ │ │ │ ├── rapidjson.h │ │ │ │ ├── reader.h │ │ │ │ ├── schema.h │ │ │ │ ├── stream.h │ │ │ │ ├── stringbuffer.h │ │ │ │ └── writer.h │ │ ├── include_dirs.js │ │ ├── library.json │ │ ├── license.txt │ │ ├── package.json │ │ ├── rapidjson.autopkg │ │ ├── readme.md │ │ ├── readme.zh-cn.md │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── perftest │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── misctest.cpp │ │ │ │ ├── perftest.cpp │ │ │ │ ├── perftest.h │ │ │ │ ├── platformtest.cpp │ │ │ │ ├── rapidjsontest.cpp │ │ │ │ └── schematest.cpp │ │ │ ├── unittest │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── allocatorstest.cpp │ │ │ │ ├── bigintegertest.cpp │ │ │ │ ├── clzlltest.cpp │ │ │ │ ├── cursorstreamwrappertest.cpp │ │ │ │ ├── documenttest.cpp │ │ │ │ ├── dtoatest.cpp │ │ │ │ ├── encodedstreamtest.cpp │ │ │ │ ├── encodingstest.cpp │ │ │ │ ├── filestreamtest.cpp │ │ │ │ ├── fwdtest.cpp │ │ │ │ ├── istreamwrappertest.cpp │ │ │ │ ├── itoatest.cpp │ │ │ │ ├── jsoncheckertest.cpp │ │ │ │ ├── namespacetest.cpp │ │ │ │ ├── ostreamwrappertest.cpp │ │ │ │ ├── pointertest.cpp │ │ │ │ ├── prettywritertest.cpp │ │ │ │ ├── readertest.cpp │ │ │ │ ├── regextest.cpp │ │ │ │ ├── schematest.cpp │ │ │ │ ├── simdtest.cpp │ │ │ │ ├── strfunctest.cpp │ │ │ │ ├── stringbuffertest.cpp │ │ │ │ ├── strtodtest.cpp │ │ │ │ ├── unittest.cpp │ │ │ │ ├── unittest.h │ │ │ │ ├── valuetest.cpp │ │ │ │ └── writertest.cpp │ │ │ └── valgrind.supp │ │ └── travis-doxygen.sh │ ├── robin-hood-hashing │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cmake │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── external_cmake │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ └── myproject.cpp │ │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ └── robin_hood.h │ │ │ ├── scripts │ │ │ ├── all.sh │ │ │ ├── build.sh │ │ │ ├── build_targets.ini │ │ │ └── random_value.rb │ │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── app │ │ │ ├── CMakeLists.txt │ │ │ ├── Counter.cpp │ │ │ ├── Counter.h │ │ │ ├── CtorDtorVerifier.cpp │ │ │ ├── CtorDtorVerifier.h │ │ │ ├── PerformanceCounters.cpp │ │ │ ├── PerformanceCounters.h │ │ │ ├── avalanche.h │ │ │ ├── benchmark.cpp │ │ │ ├── benchmark.h │ │ │ ├── checksum.h │ │ │ ├── counter_defaults.h │ │ │ ├── doctest.h │ │ │ ├── fmt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bin.h │ │ │ │ ├── hex.h │ │ │ │ ├── mup.cpp │ │ │ │ ├── mup.h │ │ │ │ ├── streamstate.cpp │ │ │ │ └── streamstate.h │ │ │ ├── geomean.h │ │ │ ├── hash │ │ │ │ ├── Bad.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FNV1a.h │ │ │ │ └── Identity.h │ │ │ ├── nanobench.cpp │ │ │ ├── randomseed.cpp │ │ │ ├── randomseed.h │ │ │ └── sfc64.h │ │ │ ├── thirdparty │ │ │ ├── CMakeLists.txt │ │ │ ├── doctest │ │ │ │ ├── LICENSE.txt │ │ │ │ └── doctest.h │ │ │ └── nanobench │ │ │ │ └── nanobench.h │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── bench_copy_iterators.cpp │ │ │ ├── bench_distinctness.cpp │ │ │ ├── bench_find_random.cpp │ │ │ ├── bench_hash_int.cpp │ │ │ ├── bench_hash_string.cpp │ │ │ ├── bench_iterate.cpp │ │ │ ├── bench_quick_overall_map.cpp │ │ │ ├── bench_quick_overall_set.cpp │ │ │ ├── bench_random_insert_erase.cpp │ │ │ ├── bench_swap.cpp │ │ │ ├── count_ctor_dtor.cpp │ │ │ ├── count_ctor_dtor_1.cpp │ │ │ ├── count_find_random.cpp │ │ │ ├── count_one_emplace.cpp │ │ │ ├── count_random_insert_erase.cpp │ │ │ ├── fuzz_insert_erase.cpp │ │ │ ├── include_only.cpp │ │ │ ├── include_only.h │ │ │ ├── main.cpp │ │ │ ├── optimize_avalanche.cpp │ │ │ ├── show_hash.cpp │ │ │ ├── unit_addOrFree.cpp │ │ │ ├── unit_assertNotNull.cpp │ │ │ ├── unit_assign_to_move.cpp │ │ │ ├── unit_assignment_combinations.cpp │ │ │ ├── unit_assignments.cpp │ │ │ ├── unit_at.cpp │ │ │ ├── unit_calcMaxNumElementsAllowed.cpp │ │ │ ├── unit_calcsize.cpp │ │ │ ├── unit_copyassignment.cpp │ │ │ ├── unit_count.cpp │ │ │ ├── unit_diamond.cpp │ │ │ ├── unit_empty.cpp │ │ │ ├── unit_explicitctor.cpp │ │ │ ├── unit_fallback_hash.cpp │ │ │ ├── unit_hash_char_types.cpp │ │ │ ├── unit_hash_smart_ptr.cpp │ │ │ ├── unit_hash_string_view.cpp │ │ │ ├── unit_heterogeneous.cpp │ │ │ ├── unit_include_only.cpp │ │ │ ├── unit_initializerlist.cpp │ │ │ ├── unit_insert.cpp │ │ │ ├── unit_insert_or_assign.cpp │ │ │ ├── unit_iterator_twice_bug.cpp │ │ │ ├── unit_iterators_ctor.cpp │ │ │ ├── unit_iterators_empty.cpp │ │ │ ├── unit_iterators_erase.cpp │ │ │ ├── unit_iterators_insert.cpp │ │ │ ├── unit_iterators_postinc.cpp │ │ │ ├── unit_iterators_stochastic.cpp │ │ │ ├── unit_load_factor.cpp │ │ │ ├── unit_maps_of_maps.cpp │ │ │ ├── unit_memleak_reserve.cpp │ │ │ ├── unit_multiple_apis.cpp │ │ │ ├── unit_mup.cpp │ │ │ ├── unit_no_intrinsics.cpp │ │ │ ├── unit_not_copyable.cpp │ │ │ ├── unit_not_moveable.cpp │ │ │ ├── unit_overflow.cpp │ │ │ ├── unit_overflow_collisions.cpp │ │ │ ├── unit_pair_operators.cpp │ │ │ ├── unit_pair_trivial.cpp │ │ │ ├── unit_random_verifier.cpp │ │ │ ├── unit_reserve.cpp │ │ │ ├── unit_reserve_and_assign.cpp │ │ │ ├── unit_rotr.cpp │ │ │ ├── unit_scoped_free.cpp │ │ │ ├── unit_sfc64_is_deterministic.cpp │ │ │ ├── unit_sizeof.cpp │ │ │ ├── unit_string.cpp │ │ │ ├── unit_try_emplace.cpp │ │ │ ├── unit_undefined_behavior_nekrolm.cpp │ │ │ ├── unit_unique_ptr.cpp │ │ │ ├── unit_unordered_set.cpp │ │ │ ├── unit_vectorofmaps.cpp │ │ │ └── unit_xy.cpp │ ├── stb_image │ │ └── stb_image.h │ ├── stduuid │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── P0959.md │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── catch │ │ │ ├── catch.hpp │ │ │ ├── catch_reporter_automake.hpp │ │ │ ├── catch_reporter_tap.hpp │ │ │ └── catch_reporter_teamcity.hpp │ │ ├── cmake │ │ │ ├── Config.cmake.in │ │ │ └── FindLibuuid.cmake │ │ ├── gsl │ │ │ ├── gsl │ │ │ ├── gsl_algorithm │ │ │ ├── gsl_assert │ │ │ ├── gsl_byte │ │ │ ├── gsl_util │ │ │ ├── multi_span │ │ │ ├── pointers │ │ │ ├── span │ │ │ └── string_span │ │ ├── how_to_build.md │ │ ├── include │ │ │ └── uuid.h │ │ ├── lgtm.yml │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── test_generators.cpp │ │ │ └── test_uuid.cpp │ ├── tinyobjloader │ │ ├── .bintray.in │ │ ├── .clang-format │ │ ├── .drone.yml │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── config.yml │ │ │ │ └── issue-report.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── azure-pipelines.yml │ │ ├── build.ninja │ │ ├── cmake_uninstall.cmake.in │ │ ├── deps │ │ │ └── cpplint.py │ │ ├── examples │ │ │ ├── callback_api │ │ │ │ ├── Makefile │ │ │ │ └── main.cc │ │ │ ├── obj_sticher │ │ │ │ ├── obj_sticher.cc │ │ │ │ ├── obj_writer.cc │ │ │ │ ├── obj_writer.h │ │ │ │ └── premake4.lua │ │ │ ├── skin_weight │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── main.cc │ │ │ ├── viewer │ │ │ │ ├── README.md │ │ │ │ ├── premake4.lua │ │ │ │ ├── stb_image.h │ │ │ │ ├── trackball.cc │ │ │ │ ├── trackball.h │ │ │ │ └── viewer.cc │ │ │ └── voxelize │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── main.cc │ │ │ │ └── voxelizer.h │ │ ├── experimental │ │ │ ├── README.md │ │ │ ├── lfpAlloc │ │ │ │ ├── Allocator.hpp │ │ │ │ ├── ChunkList.hpp │ │ │ │ ├── LICENSE │ │ │ │ ├── Pool.hpp │ │ │ │ ├── PoolDispatcher.hpp │ │ │ │ └── Utils.hpp │ │ │ ├── premake5.lua │ │ │ ├── tinyobj_loader_opt.h │ │ │ ├── trackball.cc │ │ │ ├── trackball.h │ │ │ └── viewer.cc │ │ ├── fuzzer │ │ │ ├── afl.tar.gz │ │ │ └── runner.py │ │ ├── images │ │ │ ├── rungholt.jpg │ │ │ └── sanmugel.png │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ ├── Makefile │ │ │ └── README │ │ ├── loader_example.cc │ │ ├── models │ │ │ ├── colorspace-issue-184.mtl │ │ │ ├── cornell_box.mtl │ │ │ ├── cube.mtl │ │ │ ├── invalid-face-definition.mtl │ │ │ ├── issue-138.mtl │ │ │ ├── issue-140-zero-face-idx.mtl │ │ │ ├── issue-162-smoothing-group.mtl │ │ │ ├── issue-235.mtl │ │ │ ├── issue-246-usemtl-whitespace.mtl │ │ │ ├── issue-248-texres-texopt.mtl │ │ │ ├── issue-92.mtl │ │ │ ├── issue-95-2.mtl │ │ │ ├── issue-95.mtl │ │ │ ├── leading-decimal-dot-issue-201.mtl │ │ │ ├── leading-zero-in-exponent-notation-issue-210.mtl │ │ │ ├── map-bump.mtl │ │ │ ├── mtllib-multiple-files-issue-112.mtl │ │ │ ├── norm-texopt.mtl │ │ │ ├── pbr-mat-ext.mtl │ │ │ ├── refl.mtl │ │ │ ├── smoothing-normal.mtl │ │ │ ├── texture-filename-with-whitespace.mtl │ │ │ ├── texture-options-issue-85.mtl │ │ │ ├── tr-and-d-issue-43.mtl │ │ │ └── usemtl-issue-68.mtl │ │ ├── premake4.lua │ │ ├── python │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bindings.cc │ │ │ ├── pyproject.toml │ │ │ ├── sample.py │ │ │ ├── setup.py │ │ │ └── tiny_obj_loader.cc │ │ ├── tests │ │ │ ├── LICENSE.acutest.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── acutest.h │ │ │ ├── assets │ │ │ │ └── issue-244.mtl │ │ │ ├── config-msvc.py │ │ │ ├── config-posix.py │ │ │ ├── issue-177.mtl │ │ │ ├── kuroga.py │ │ │ ├── tester.cc │ │ │ └── vcbuild.bat │ │ ├── tiny_obj_loader.cc │ │ ├── tiny_obj_loader.h │ │ ├── tinyobjloader-config.cmake.in │ │ ├── tinyobjloader.pc.in │ │ ├── tools │ │ │ ├── travis_postbuild.sh │ │ │ └── windows │ │ │ │ └── premake5.exe │ │ └── vcsetup.bat │ └── tomlplusplus.cmake └── tools │ ├── CMakeLists.txt │ └── zert │ ├── CMakeLists.txt │ ├── Class.h │ ├── Enum.h │ ├── Header.h │ ├── Main.cpp │ ├── Parser.cpp │ ├── Parser.h │ ├── Type.cpp │ ├── Type.h │ ├── Writer.cpp │ ├── Writer.h │ └── ZERT.h ├── Tools ├── BuildLibs ├── BuildLibs.bat ├── CopyDLLs.bat ├── CopyLibs └── vswhere.exe ├── ZE.toml └── imgui.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/Fonts/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Montserrat-Regular.otf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Assets/Icons/icons8-file-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Icons/icons8-file-64.png -------------------------------------------------------------------------------- /Assets/Icons/icons8-folder-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/Icons/icons8-folder-64.png -------------------------------------------------------------------------------- /Assets/NewAsset.zeeffect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/NewAsset.zeeffectmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/NewAsset.zeeffectmeta -------------------------------------------------------------------------------- /Assets/chien_chauve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/chien_chauve.png -------------------------------------------------------------------------------- /Assets/chien_chauve.zetexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/chien_chauve.zetexture -------------------------------------------------------------------------------- /Assets/chien_chauve.zetexturemeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/chien_chauve.zetexturemeta -------------------------------------------------------------------------------- /Assets/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Assets/sphere.obj -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMake/Clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/CMake/Clang.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Config/Backends/D3D12.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Config/Backends/D3D12.toml -------------------------------------------------------------------------------- /Config/Backends/Vulkan.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Config/Backends/Vulkan.toml -------------------------------------------------------------------------------- /Config/Platforms/Windows.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Config/Platforms/Windows.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/README.md -------------------------------------------------------------------------------- /Shaders/ClusteredForward/BasePass.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Shaders/ClusteredForward/BasePass.hlsl -------------------------------------------------------------------------------- /Shaders/ClusteredForward/BasePassFS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Shaders/ClusteredForward/BasePassFS.hlsl -------------------------------------------------------------------------------- /Shaders/ClusteredForward/BasePassVS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Shaders/ClusteredForward/BasePassVS.hlsl -------------------------------------------------------------------------------- /Shaders/Tests/TriangleFS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Shaders/Tests/TriangleFS.hlsl -------------------------------------------------------------------------------- /Shaders/Tests/TriangleVS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Shaders/Tests/TriangleVS.hlsl -------------------------------------------------------------------------------- /Shaders/UI/ImGui.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Shaders/UI/ImGui.hlsl -------------------------------------------------------------------------------- /Shaders/ZE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Shaders/ZE.hlsl -------------------------------------------------------------------------------- /Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/editor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/editor/assetdatacache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/assetdatacache/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/editor/assetutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/assetutils/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/editor/editor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/editor/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/editor/editor/private/editor/LargeTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/editor/private/editor/LargeTask.cpp -------------------------------------------------------------------------------- /Sources/editor/editor/private/editor/ZEEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/editor/private/editor/ZEEditor.cpp -------------------------------------------------------------------------------- /Sources/editor/editor/public/editor/IconManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/editor/public/editor/IconManager.h -------------------------------------------------------------------------------- /Sources/editor/editor/public/editor/LargeTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/editor/public/editor/LargeTask.h -------------------------------------------------------------------------------- /Sources/editor/editor/public/editor/ZEEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/editor/public/editor/ZEEditor.h -------------------------------------------------------------------------------- /Sources/editor/shadercompiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/shadercompiler/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/editor/texturecompressor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/texturecompressor/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/editor/vulkanshadercompiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/editor/vulkanshadercompiler/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/asset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/asset/private/assets/Asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/private/assets/Asset.cpp -------------------------------------------------------------------------------- /Sources/engine/asset/public/assets/Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/public/assets/Asset.h -------------------------------------------------------------------------------- /Sources/engine/asset/public/assets/AssetArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/public/assets/AssetArchive.h -------------------------------------------------------------------------------- /Sources/engine/asset/public/assets/AssetCooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/public/assets/AssetCooker.h -------------------------------------------------------------------------------- /Sources/engine/asset/public/assets/AssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/public/assets/AssetManager.h -------------------------------------------------------------------------------- /Sources/engine/asset/public/assets/AssetMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/public/assets/AssetMetadata.h -------------------------------------------------------------------------------- /Sources/engine/asset/public/assets/AssetPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/asset/public/assets/AssetPtr.h -------------------------------------------------------------------------------- /Sources/engine/assetdatabase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/assetdatabase/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/core/private/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/App.cpp -------------------------------------------------------------------------------- /Sources/engine/core/private/EngineCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/EngineCore.cpp -------------------------------------------------------------------------------- /Sources/engine/core/private/MessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/MessageBox.cpp -------------------------------------------------------------------------------- /Sources/engine/core/private/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/StringUtil.cpp -------------------------------------------------------------------------------- /Sources/engine/core/private/console/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/console/Console.cpp -------------------------------------------------------------------------------- /Sources/engine/core/private/logger/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/logger/Logger.cpp -------------------------------------------------------------------------------- /Sources/engine/core/private/logger/Sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/logger/Sink.cpp -------------------------------------------------------------------------------- /Sources/engine/core/private/threading/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/private/threading/Thread.cpp -------------------------------------------------------------------------------- /Sources/engine/core/public/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/App.h -------------------------------------------------------------------------------- /Sources/engine/core/public/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/Assertions.h -------------------------------------------------------------------------------- /Sources/engine/core/public/EngineCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/EngineCore.h -------------------------------------------------------------------------------- /Sources/engine/core/public/EngineVer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/EngineVer.h -------------------------------------------------------------------------------- /Sources/engine/core/public/MessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/MessageBox.h -------------------------------------------------------------------------------- /Sources/engine/core/public/MinimalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/MinimalMacros.h -------------------------------------------------------------------------------- /Sources/engine/core/public/NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/NonCopyable.h -------------------------------------------------------------------------------- /Sources/engine/core/public/NonMoveable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/NonMoveable.h -------------------------------------------------------------------------------- /Sources/engine/core/public/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/Pool.h -------------------------------------------------------------------------------- /Sources/engine/core/public/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/StringUtil.h -------------------------------------------------------------------------------- /Sources/engine/core/public/console/ConVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/console/ConVar.h -------------------------------------------------------------------------------- /Sources/engine/core/public/console/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/console/Console.h -------------------------------------------------------------------------------- /Sources/engine/core/public/containers/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/containers/Set.h -------------------------------------------------------------------------------- /Sources/engine/core/public/delegates/Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/delegates/Delegate.h -------------------------------------------------------------------------------- /Sources/engine/core/public/flags/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/flags/Flags.h -------------------------------------------------------------------------------- /Sources/engine/core/public/logger/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/logger/Logger.h -------------------------------------------------------------------------------- /Sources/engine/core/public/logger/Severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/logger/Severity.h -------------------------------------------------------------------------------- /Sources/engine/core/public/logger/Sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/logger/Sink.h -------------------------------------------------------------------------------- /Sources/engine/core/public/logger/sinks/StdSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/logger/sinks/StdSink.h -------------------------------------------------------------------------------- /Sources/engine/core/public/maths/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/maths/Color.h -------------------------------------------------------------------------------- /Sources/engine/core/public/maths/MathCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/maths/MathCore.h -------------------------------------------------------------------------------- /Sources/engine/core/public/maths/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/maths/Matrix.h -------------------------------------------------------------------------------- /Sources/engine/core/public/maths/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/maths/Rect.h -------------------------------------------------------------------------------- /Sources/engine/core/public/maths/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/maths/Vector.h -------------------------------------------------------------------------------- /Sources/engine/core/public/memory/SmartPointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/memory/SmartPointers.h -------------------------------------------------------------------------------- /Sources/engine/core/public/module/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/module/Module.h -------------------------------------------------------------------------------- /Sources/engine/core/public/module/ModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/module/ModuleManager.h -------------------------------------------------------------------------------- /Sources/engine/core/public/profiling/Profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/profiling/Profiling.h -------------------------------------------------------------------------------- /Sources/engine/core/public/serialization/Archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/serialization/Archive.h -------------------------------------------------------------------------------- /Sources/engine/core/public/serialization/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/serialization/Traits.h -------------------------------------------------------------------------------- /Sources/engine/core/public/threading/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/core/public/threading/Thread.h -------------------------------------------------------------------------------- /Sources/engine/effect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/effect/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/effect/public/gfx/effect/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/effect/public/gfx/effect/Effect.h -------------------------------------------------------------------------------- /Sources/engine/engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/engine/private/engine/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/private/engine/Engine.cpp -------------------------------------------------------------------------------- /Sources/engine/engine/private/engine/Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/private/engine/Viewport.cpp -------------------------------------------------------------------------------- /Sources/engine/engine/private/engine/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/private/engine/World.cpp -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/Engine.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/EngineGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/EngineGame.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/InputSystem.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/NativeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/NativeWindow.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/TickSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/TickSystem.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/Viewport.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/World.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/assets/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/assets/Model.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/ecs/ECS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/ecs/ECS.h -------------------------------------------------------------------------------- /Sources/engine/engine/public/engine/ui/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/engine/public/engine/ui/Console.h -------------------------------------------------------------------------------- /Sources/engine/gfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfx/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/gfx/private/gfx/CommandList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfx/private/gfx/CommandList.cpp -------------------------------------------------------------------------------- /Sources/engine/gfx/private/gfx/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfx/private/gfx/Device.cpp -------------------------------------------------------------------------------- /Sources/engine/gfx/private/gfx/Gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfx/private/gfx/Gfx.cpp -------------------------------------------------------------------------------- /Sources/engine/gfx/private/gfx/GpuVector.cpp: -------------------------------------------------------------------------------- 1 | #include "gfx/GpuVector.h" -------------------------------------------------------------------------------- /Sources/engine/gfx/public/gfx/Gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfx/public/gfx/Gfx.h -------------------------------------------------------------------------------- /Sources/engine/gfx/public/gfx/GpuVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfx/public/gfx/GpuVector.h -------------------------------------------------------------------------------- /Sources/engine/gfx/public/gfx/UniformBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfx/public/gfx/UniformBuffer.h -------------------------------------------------------------------------------- /Sources/engine/gfxbackend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfxbackend/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/gfxbackend/private/GfxBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfxbackend/private/GfxBackend.cpp -------------------------------------------------------------------------------- /Sources/engine/gfxbackend/public/gfx/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfxbackend/public/gfx/Backend.h -------------------------------------------------------------------------------- /Sources/engine/gfxbackend/public/gfx/BackendInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfxbackend/public/gfx/BackendInfo.h -------------------------------------------------------------------------------- /Sources/engine/gfxbackend/public/gfx/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/gfxbackend/public/gfx/Resource.h -------------------------------------------------------------------------------- /Sources/engine/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/imgui/private/imgui/ImGuiModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/imgui/private/imgui/ImGuiModule.cpp -------------------------------------------------------------------------------- /Sources/engine/imgui/public/ImGuiConfigZE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/imgui/public/ImGuiConfigZE.h -------------------------------------------------------------------------------- /Sources/engine/imgui/public/imgui/ImGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/imgui/public/imgui/ImGui.h -------------------------------------------------------------------------------- /Sources/engine/imgui/public/imgui/ImGuiRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/imgui/public/imgui/ImGuiRenderer.h -------------------------------------------------------------------------------- /Sources/engine/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/json/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/json/private/serialization/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/json/private/serialization/Json.cpp -------------------------------------------------------------------------------- /Sources/engine/json/public/serialization/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/json/public/serialization/Json.h -------------------------------------------------------------------------------- /Sources/engine/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/main/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/main/private/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/main/private/Main.cpp -------------------------------------------------------------------------------- /Sources/engine/platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/platform/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/platform/private/PlatformMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/platform/private/PlatformMgr.cpp -------------------------------------------------------------------------------- /Sources/engine/platform/public/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/platform/public/Device.h -------------------------------------------------------------------------------- /Sources/engine/platform/public/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/platform/public/Platform.h -------------------------------------------------------------------------------- /Sources/engine/platform/public/PlatformMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/platform/public/PlatformMgr.h -------------------------------------------------------------------------------- /Sources/engine/reflection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/reflection/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/reflection/public/reflection/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/reflection/public/reflection/Any.h -------------------------------------------------------------------------------- /Sources/engine/reflection/public/reflection/Cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/reflection/public/reflection/Cast.h -------------------------------------------------------------------------------- /Sources/engine/reflection/public/reflection/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/reflection/public/reflection/Enum.h -------------------------------------------------------------------------------- /Sources/engine/reflection/public/reflection/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/reflection/public/reflection/Type.h -------------------------------------------------------------------------------- /Sources/engine/shadercore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/shadercore/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Buffer.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Buffer.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Command.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Command.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Commands.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/DescriptorSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/DescriptorSet.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/DescriptorSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/DescriptorSet.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Device.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Device.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Pipeline.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Pipeline.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/PipelineLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/PipelineLayout.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Queue.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Queue.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/RenderPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/RenderPass.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/RenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/RenderPass.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Sampler.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Sampler.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Shader.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Shader.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Surface.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Surface.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/SwapChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/SwapChain.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/SwapChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/SwapChain.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Sync.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Sync.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Texture.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Texture.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/Vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/Vulkan.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/VulkanBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/VulkanBackend.cpp -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/VulkanBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/VulkanBackend.h -------------------------------------------------------------------------------- /Sources/engine/vulkangfx/private/VulkanUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/vulkangfx/private/VulkanUtil.h -------------------------------------------------------------------------------- /Sources/engine/zefs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/engine/zefs/private/zefs/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/private/zefs/File.cpp -------------------------------------------------------------------------------- /Sources/engine/zefs/private/zefs/Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/private/zefs/Paths.cpp -------------------------------------------------------------------------------- /Sources/engine/zefs/private/zefs/StdFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/private/zefs/StdFileSystem.cpp -------------------------------------------------------------------------------- /Sources/engine/zefs/private/zefs/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/private/zefs/Utils.cpp -------------------------------------------------------------------------------- /Sources/engine/zefs/private/zefs/ZEFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/private/zefs/ZEFS.cpp -------------------------------------------------------------------------------- /Sources/engine/zefs/public/zefs/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/public/zefs/FileStream.h -------------------------------------------------------------------------------- /Sources/engine/zefs/public/zefs/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/public/zefs/FileSystem.h -------------------------------------------------------------------------------- /Sources/engine/zefs/public/zefs/Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/public/zefs/Paths.h -------------------------------------------------------------------------------- /Sources/engine/zefs/public/zefs/StdFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/public/zefs/StdFileSystem.h -------------------------------------------------------------------------------- /Sources/engine/zefs/public/zefs/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/public/zefs/Utils.h -------------------------------------------------------------------------------- /Sources/engine/zefs/public/zefs/ZEFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/public/zefs/ZEFS.h -------------------------------------------------------------------------------- /Sources/engine/zefs/public/zefs/sinks/FileSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/engine/zefs/public/zefs/sinks/FileSink.h -------------------------------------------------------------------------------- /Sources/thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2.cmake -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/.github/workflows/main.yml -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/.gitignore -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Android.mk -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/BUGS.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/CREDITS.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/INSTALL.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/LICENSE.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Makefile.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Makefile.minimal -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Makefile.os2 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Makefile.pandora -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Makefile.psp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Makefile.wiz -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/README-SDL.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/README.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/SDL2.spec.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/SDL2Config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/SDL2Targets.cmake") 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/TODO.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/VisualC/SDL.sln -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/VisualC/SDL/SDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/VisualC/SDL/SDL.vcxproj -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/VisualC/clean.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/WhatsNew.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Xcode-iOS/Demos/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Xcode-iOS/Demos/Icon.png -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Xcode-iOS/Demos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Xcode-iOS/Demos/Info.plist -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Xcode-iOS/Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Xcode-iOS/Test/Info.plist -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Xcode-iOS/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Xcode-iOS/Test/README -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/Xcode/XcodeDocSet/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/Xcode/XcodeDocSet/Doxyfile -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/alsa.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/esd.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/libtool.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/acinclude/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/acinclude/pkg.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/android-project-ant/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/android-project-ant/src: -------------------------------------------------------------------------------- 1 | ../android-project/app/src/main/java -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/android-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/android-project/gradlew -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/autogen.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/config.guess -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/config.sub -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/g++-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/g++-fat.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/gcc-fat.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/install-sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/iosbuild.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/naclbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/naclbuild.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/showrev.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/build-scripts/updaterev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/build-scripts/updaterev.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/cmake/macros.cmake -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/configure -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/configure.ac -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/debian/changelog -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/debian/control -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/debian/copyright -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/debian/docs -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/libsdl2-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/debian/libsdl2-dev.install -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/debian/rules -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/sdl2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/debian/sdl2-config.1 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-android.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-cmake.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-directfb.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-dynapi.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-emscripten.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-gesture.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-git.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-hg.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-ios.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-kmsbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-kmsbsd.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-linux.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-macosx.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-nacl.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-os2.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-pandora.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-platforms.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-porting.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-psp.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-touch.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-visualc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-visualc.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-vita.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-wince.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-windows.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README-winrt.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/README.md -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/docs/doxyfile -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_blendmode.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_clipboard.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_config.h.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_config_os2.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_config_psp.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_copying.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_filesystem.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_joystick.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_keyboard.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_locale.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_messagebox.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_metal.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_misc.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_opengles.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_opengles2.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_platform.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_revision.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_scancode.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_sensor.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_assert.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_common.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_compare.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_font.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_harness.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_images.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_log.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_md5.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_memory.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_test_random.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/SDL_vulkan.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/include/close_code.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/sdl2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/sdl2-config.cmake.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/sdl2-config.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/sdl2.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/sdl2.pc.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_assert.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_assert_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_dataqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_dataqueue.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_dataqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_dataqueue.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_error.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_error_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_hints.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_hints_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_hints_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_internal.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/SDL_log.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_audiodev_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_audiodev_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_dbus.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_dbus.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_evdev.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_evdev.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_fcitx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_fcitx.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_fcitx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_fcitx.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_ibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_ibus.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_ibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_ibus.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_ime.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_ime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_ime.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_udev.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/linux/SDL_udev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/linux/SDL_udev.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/os2/SDL_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/os2/SDL_os2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/os2/SDL_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/os2/SDL_os2.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/unix/SDL_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/unix/SDL_poll.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/unix/SDL_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/unix/SDL_poll.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/windows/SDL_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/windows/SDL_hid.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/core/windows/SDL_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/core/windows/SDL_hid.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/dynapi/gendynapi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/dynapi/gendynapi.pl -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_events.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_gesture_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_gesture_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_quit.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_sysevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_sysevents.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_touch.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/events/blank_cursor.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/haptic/SDL_haptic_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/haptic/SDL_haptic_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/haptic/SDL_syshaptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/haptic/SDL_syshaptic.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/AUTHORS.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/HACKING.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/LICENSE-bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/LICENSE-bsd.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/LICENSE.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/Makefile.am -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/README.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/SDL_hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/SDL_hidapi.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/SDL_hidapi.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/android/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/android/hid.cpp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/bootstrap -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/configure.ac -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/hidapi/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/hidapi/hidapi.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/ios/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/ios/Makefile.am -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/ios/hid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/ios/hid.m -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/libusb/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/libusb/hid.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/linux/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/linux/hid.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/m4/pkg.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/mac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/mac/Makefile.am -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/mac/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/mac/hid.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/pc/hidapi.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/pc/hidapi.pc.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/hidapi/windows/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/hidapi/windows/hid.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/joystick/usb_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/joystick/usb_ids.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_atan2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_exp.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_fmod.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_log.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_log10.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_pow.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/k_cos.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/k_sin.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/k_tan.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/math_libm.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/math_private.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_atan.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_copysign.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_cos.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_fabs.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_floor.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_sin.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/libm/s_tan.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/locale/SDL_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/locale/SDL_locale.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/locale/SDL_syslocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/locale/SDL_syslocale.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/main/haiku/SDL_BApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/main/haiku/SDL_BApp.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/main/haiku/SDL_BeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/main/haiku/SDL_BeApp.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/misc/SDL_sysurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/misc/SDL_sysurl.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/misc/SDL_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/misc/SDL_url.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/misc/ios/SDL_sysurl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/misc/ios/SDL_sysurl.m -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/power/SDL_power.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/render/SDL_render.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/sensor/SDL_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/sensor/SDL_sensor.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/stdlib/SDL_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/stdlib/SDL_crc32.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/test/SDL_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/test/SDL_test_log.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/test/SDL_test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/test/SDL_test_md5.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_blit.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_blit.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_egl.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_rect.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_shape.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_surface.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_video.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_yuv.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/SDL_yuv_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/SDL_yuv_c.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/qnx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/qnx/gl.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/qnx/sdl_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/qnx/sdl_qnx.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/qnx/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/qnx/video.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/src/video/x11/edid.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/COPYING -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/Makefile.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/Makefile.os2 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/README -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/acinclude.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/autogen.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/axis.bmp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/button.bmp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/checkkeys.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/configure -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/configure.ac -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/controllermap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/controllermap.bmp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/controllermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/controllermap.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/gcc-fat.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/icon.bmp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/loopwave.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/loopwavequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/loopwavequeue.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/moose.dat -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/nacl/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/nacl/background.js -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/nacl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/nacl/common.js -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/nacl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/nacl/index.html -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/nacl/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/nacl/manifest.json -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/picture.xbm -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/sample.bmp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/sample.wav -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testatomic.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testaudiocapture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testaudiocapture.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testaudiohotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testaudiohotplug.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testaudioinfo.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testautomation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testautomation.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testbounds.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testcustomcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testcustomcursor.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testdisplayinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testdisplayinfo.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testdraw2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testdropfile.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testerror.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testevdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testevdev.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testfile.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testfilesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testfilesystem.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testgesture.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testgl2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testgles.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testgles2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testgles2_sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testgles2_sdf.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testhaptic.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testhittesting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testhittesting.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testhotplug.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testiconv.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testime.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testjoystick.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testkeys.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testloadso.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testlocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testlocale.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testlock.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testmessage.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testmultiaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testmultiaudio.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testnative.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testnative.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testnativecocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testnativecocoa.m -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testnativeos2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testnativeos2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testnativew32.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testnativex11.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testoffscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testoffscreen.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testoverlay2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testplatform.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testpower.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testqsort.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testrelative.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testrendercopyex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testrendercopyex.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testrendertarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testrendertarget.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testresample.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testrumble.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testscale.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testsem.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testsensor.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testshader.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testshape.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testsprite2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/teststreaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/teststreaming.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testthread.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testtimer.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testurl.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testver.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testviewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testviewport.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testvulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testvulkan.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testwm2.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testyuv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testyuv.bmp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testyuv.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testyuv_cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testyuv_cvt.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/testyuv_cvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/testyuv_cvt.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/torturethread.c -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/test/utf8.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/COPYING.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/Makefile.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/README.txt -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/acinclude.m4 -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/autogen.sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/compile: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/compile -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/config.h -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/config.h.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions: -------------------------------------------------------------------------------- 1 | 00:00:02 QUIT -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/configure -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/SDL2/visualtest/configure.in -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/depcomp: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/depcomp -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/install-sh -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/missing -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/SDL2/visualtest/unittest/testquit.actions: -------------------------------------------------------------------------------- 1 | 00:00:05 QUIT -------------------------------------------------------------------------------- /Sources/thirdparty/ShaderConductor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/ShaderConductor/.gitignore -------------------------------------------------------------------------------- /Sources/thirdparty/ShaderConductor/BuildAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/ShaderConductor/BuildAll.py -------------------------------------------------------------------------------- /Sources/thirdparty/ShaderConductor/Doc/Arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/ShaderConductor/Doc/Arch.svg -------------------------------------------------------------------------------- /Sources/thirdparty/ShaderConductor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/ShaderConductor/LICENSE -------------------------------------------------------------------------------- /Sources/thirdparty/ShaderConductor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/ShaderConductor/README.md -------------------------------------------------------------------------------- /Sources/thirdparty/ShaderConductor/Source/Tests/Data/Input/Inc/HeaderEmpty.hlsli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/assert.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/config.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/config/user.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/cstdint.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/integer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/integer_fwd.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/limits.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/move/core.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/move/move.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/move/traits.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/move/utility.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/boost/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/boost/boost/version.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/fmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/fmt.cmake -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/.editorconfig -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/.gitattributes -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/ocornut/imgui/wiki/Sponsors'] 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/.gitignore -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/LICENSE.txt -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/docs/BACKENDS.md -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/docs/EXAMPLES.md -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/docs/FAQ.md -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/docs/FONTS.md -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/docs/README.md -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/docs/TODO.txt -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/examples/README.txt: -------------------------------------------------------------------------------- 1 | See EXAMPLES and BACKENDS files in the docs/ folder. 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/examples/example_android_opengl3/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imconfig.h -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imgui.cpp -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imgui.h -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imgui_internal.h -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/misc/README.txt -------------------------------------------------------------------------------- /Sources/thirdparty/imgui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/imgui/misc/cpp/README.txt -------------------------------------------------------------------------------- /Sources/thirdparty/intrusive/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/intrusive/boost/assert.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/intrusive/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/intrusive/boost/config.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/intrusive/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/intrusive/boost/version.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/nvidia-texture-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/nvidia-texture-tools/LICENSE -------------------------------------------------------------------------------- /Sources/thirdparty/nvidia-texture-tools/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/nvidia-texture-tools/src/nvtt/TaskDispatcher.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/.gitattributes -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/.gitignore -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/.gitmodules -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/.travis.yml -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/CHANGELOG.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/RapidJSON.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/RapidJSON.pc.in -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/appveyor.yml -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/Doxyfile.in -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/dom.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/dom.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/dom.zh-cn.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/encoding.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/faq.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/faq.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/faq.zh-cn.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/features.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/internals.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/npm.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/performance.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/pointer.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/sax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/sax.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/sax.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/sax.zh-cn.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/schema.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/stream.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/doc/tutorial.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/include_dirs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/include_dirs.js -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/library.json -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/license.txt -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/package.json -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/rapidjson.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/rapidjson.autopkg -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/readme.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/readme.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/readme.zh-cn.md -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/test/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/test/valgrind.supp -------------------------------------------------------------------------------- /Sources/thirdparty/rapidjson/travis-doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/rapidjson/travis-doxygen.sh -------------------------------------------------------------------------------- /Sources/thirdparty/robin-hood-hashing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/robin-hood-hashing/LICENSE -------------------------------------------------------------------------------- /Sources/thirdparty/robin-hood-hashing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/robin-hood-hashing/README.md -------------------------------------------------------------------------------- /Sources/thirdparty/robin-hood-hashing/src/external_cmake/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/robin-hood-hashing/src/test/unit/main.cpp: -------------------------------------------------------------------------------- 1 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 2 | #include 3 | -------------------------------------------------------------------------------- /Sources/thirdparty/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stb_image/stb_image.h -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/.gitignore -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/.travis.yml -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/LICENSE -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/P0959.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/P0959.md -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/README.md -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/appveyor.yml -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/catch/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/catch/catch.hpp -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/gsl -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/gsl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/gsl_algorithm -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/gsl_assert -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/gsl_byte -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/gsl_util -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/multi_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/multi_span -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/pointers -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/span -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/gsl/string_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/gsl/string_span -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/how_to_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/how_to_build.md -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/include/uuid.h -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/lgtm.yml -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/test/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/test/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | 4 | -------------------------------------------------------------------------------- /Sources/thirdparty/stduuid/test/test_uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/stduuid/test/test_uuid.cpp -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/.bintray.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/.bintray.in -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/.clang-format -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/.drone.yml -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/.gitignore -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/.travis.yml -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/LICENSE -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/README.md -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/appveyor.yml -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/build.ninja -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/examples/callback_api/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clang++ -I../../ -Wall -g -o example main.cc 3 | -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/examples/skin_weight/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clang++ -std=c++11 -o skin_weight -I../../ -g main.cc 3 | -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/examples/voxelize/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | g++ -o voxelizer main.cc 3 | -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/jni/Android.mk -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/jni/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ndk-build 3 | -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/jni/README: -------------------------------------------------------------------------------- 1 | Just tests compilation with Android NDK r10. 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/premake4.lua -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/python/LICENSE -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tinyobjloader/tests/Makefile -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/tiny_obj_loader.cc: -------------------------------------------------------------------------------- 1 | #define TINYOBJLOADER_IMPLEMENTATION 2 | #include "tiny_obj_loader.h" 3 | -------------------------------------------------------------------------------- /Sources/thirdparty/tinyobjloader/vcsetup.bat: -------------------------------------------------------------------------------- 1 | .\\tools\\windows\\premake5.exe vs2013 2 | -------------------------------------------------------------------------------- /Sources/thirdparty/tomlplusplus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/thirdparty/tomlplusplus.cmake -------------------------------------------------------------------------------- /Sources/tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(zert) -------------------------------------------------------------------------------- /Sources/tools/zert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/tools/zert/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Class.h -------------------------------------------------------------------------------- /Sources/tools/zert/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Enum.h -------------------------------------------------------------------------------- /Sources/tools/zert/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Header.h -------------------------------------------------------------------------------- /Sources/tools/zert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Main.cpp -------------------------------------------------------------------------------- /Sources/tools/zert/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Parser.cpp -------------------------------------------------------------------------------- /Sources/tools/zert/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Parser.h -------------------------------------------------------------------------------- /Sources/tools/zert/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Type.cpp -------------------------------------------------------------------------------- /Sources/tools/zert/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Type.h -------------------------------------------------------------------------------- /Sources/tools/zert/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Writer.cpp -------------------------------------------------------------------------------- /Sources/tools/zert/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/Writer.h -------------------------------------------------------------------------------- /Sources/tools/zert/ZERT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Sources/tools/zert/ZERT.h -------------------------------------------------------------------------------- /Tools/BuildLibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Tools/BuildLibs -------------------------------------------------------------------------------- /Tools/BuildLibs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Tools/BuildLibs.bat -------------------------------------------------------------------------------- /Tools/CopyDLLs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Tools/CopyDLLs.bat -------------------------------------------------------------------------------- /Tools/CopyLibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Tools/CopyLibs -------------------------------------------------------------------------------- /Tools/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/Tools/vswhere.exe -------------------------------------------------------------------------------- /ZE.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zino2201/ZinoEngineOld/HEAD/imgui.ini --------------------------------------------------------------------------------