├── .editorconfig ├── .travis.yml ├── LICENSE.txt ├── docs ├── CHANGELOG.txt ├── README.md ├── TODO.txt ├── issue_template.md ├── pull_request_template.md └── zep.png ├── examples ├── .gitignore ├── README.txt ├── example_allegro5 │ ├── README.md │ ├── example_allegro5.vcxproj │ ├── example_allegro5.vcxproj.filters │ ├── imconfig_allegro5.h │ └── main.cpp ├── example_apple_metal │ ├── README.md │ ├── Shared │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Renderer.h │ │ ├── Renderer.mm │ │ ├── ViewController.h │ │ ├── ViewController.mm │ │ └── main.m │ ├── example_apple_metal.xcodeproj │ │ └── project.pbxproj │ ├── iOS │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Default-568h@2x.png │ │ ├── Info-iOS.plist │ │ └── Launch Screen.storyboard │ └── macOS │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ └── Info-macOS.plist ├── example_apple_opengl2 │ ├── example_apple_opengl2.xcodeproj │ │ └── project.pbxproj │ └── main.mm ├── example_emscripten │ ├── Makefile │ ├── README.md │ ├── main.cpp │ └── shell_minimal.html ├── 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 │ ├── gen_spv.sh │ ├── glsl_shader.frag │ ├── glsl_shader.vert │ └── 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_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 │ ├── 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 ├── imgui_impl_allegro5.cpp ├── imgui_impl_allegro5.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_win32.cpp ├── imgui_impl_win32.h └── 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_dock.h ├── imgui_dock.inl ├── imgui_draw.cpp ├── imgui_internal.h ├── imgui_orient.cpp ├── imgui_orient.h ├── imgui_scintilla.cpp ├── imgui_scintilla.h ├── imgui_user.h ├── imgui_user.inl ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h ├── imstb_truetype.h ├── misc ├── README.txt ├── cpp │ ├── README.txt │ ├── imgui_stdlib.cpp │ └── imgui_stdlib.h ├── fonts │ ├── Cousine-Regular.ttf │ ├── DroidSans.ttf │ ├── Karla-Regular.ttf │ ├── ProggyClean.ttf │ ├── ProggyTiny.ttf │ ├── README.txt │ ├── Roboto-Medium.ttf │ └── binary_to_compressed_c.cpp ├── freetype │ ├── README.md │ ├── imgui_freetype.cpp │ └── imgui_freetype.h └── natvis │ ├── README.txt │ └── imgui.natvis ├── src └── mcommon │ └── threadpool.h └── zep ├── .clang-format ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTES.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── TODO.md ├── appveyor.yml ├── cmake ├── Doxyfile.in ├── all.cmake ├── clang++.cmake ├── config_app.h.cmake ├── g++.cmake ├── linux.cmake ├── mac.cmake ├── msvc.cmake └── pc.cmake ├── codecov.yml ├── config.bat ├── config.sh ├── config_all.bat ├── config_all.sh ├── config_qt.bat ├── demo_imgui └── main.cpp ├── demo_qt ├── app.exe.manifest ├── app.qrc ├── app.rc ├── common-qt.cpp ├── common-qt.h ├── list.cmake ├── main-qt.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── qml.qrc ├── res │ ├── AppIcon.icns │ ├── AppIcon.ico │ ├── AppIcon128.png │ ├── AppIcon32.png │ ├── screwdriver.ico │ ├── textured-paper.png │ └── white-sand.png └── resource.h ├── deploy.bat ├── imgui.ini ├── m3rdparty ├── FileWatcher │ ├── FileWatcher.cpp │ ├── FileWatcher.h │ ├── FileWatcherImpl.h │ ├── FileWatcherLinux.cpp │ ├── FileWatcherLinux.h │ ├── FileWatcherOSX.cpp │ ├── FileWatcherOSX.h │ ├── FileWatcherWin32.cpp │ ├── FileWatcherWin32.h │ ├── License.txt │ ├── SimpleDemo.cpp │ └── watcher.h ├── cmake │ ├── config_shared.h.cmake │ └── copy_files.cmake ├── googletest │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── appveyor.yml │ ├── googlemock │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── DesignDoc.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ ├── KnownIssues.md │ │ │ ├── v1_5 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── v1_6 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ └── v1_7 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ └── gmock-port.h │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── 2005 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcproj │ │ │ │ ├── gmock_config.vsprops │ │ │ │ ├── gmock_main.vcproj │ │ │ │ └── gmock_test.vcproj │ │ │ ├── 2010 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ │ └── 2015 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ ├── scripts │ │ │ ├── fuse_gmock_files.py │ │ │ ├── generator │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.cppclean │ │ │ │ ├── cpp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ └── utils.py │ │ │ │ └── gmock_gen.py │ │ │ ├── gmock-config.in │ │ │ ├── gmock_doctor.py │ │ │ ├── upload.py │ │ │ └── upload_gmock.py │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-generated-actions_test.cc │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers_test.cc │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ ├── googletest │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── AdvancedGuide.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── Samples.md │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ ├── V1_5_Documentation.md │ │ │ ├── V1_5_FAQ.md │ │ │ ├── V1_5_Primer.md │ │ │ ├── V1_5_PumpManual.md │ │ │ ├── V1_5_XcodeGuide.md │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ ├── V1_6_Documentation.md │ │ │ ├── V1_6_FAQ.md │ │ │ ├── V1_6_Primer.md │ │ │ ├── V1_6_PumpManual.md │ │ │ ├── V1_6_Samples.md │ │ │ ├── V1_6_XcodeGuide.md │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ ├── V1_7_Documentation.md │ │ │ ├── V1_7_FAQ.md │ │ │ ├── V1_7_Primer.md │ │ │ ├── V1_7_PumpManual.md │ │ │ ├── V1_7_Samples.md │ │ │ ├── V1_7_XcodeGuide.md │ │ │ └── XcodeGuide.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── gtest.m4 │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── common.py │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ ├── release_docs.py │ │ │ ├── test │ │ │ │ └── Makefile │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ ├── test │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ ├── gtest-death-test_test.cc │ │ │ ├── gtest-filepath_test.cc │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ ├── gtest-listener_test.cc │ │ │ ├── gtest-message_test.cc │ │ │ ├── gtest-options_test.cc │ │ │ ├── gtest-param-test2_test.cc │ │ │ ├── gtest-param-test_test.cc │ │ │ ├── gtest-param-test_test.h │ │ │ ├── gtest-port_test.cc │ │ │ ├── gtest-printers_test.cc │ │ │ ├── gtest-test-part_test.cc │ │ │ ├── gtest-tuple_test.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ ├── gtest_color_test.py │ │ │ ├── gtest_color_test_.cc │ │ │ ├── gtest_env_var_test.py │ │ │ ├── gtest_env_var_test_.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_filter_unittest.py │ │ │ ├── gtest_filter_unittest_.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_list_tests_unittest.py │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_output_test.py │ │ │ ├── gtest_output_test_.cc │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_premature_exit_test.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_shuffle_test.py │ │ │ ├── gtest_shuffle_test_.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ ├── gtest_uninitialized_test.py │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ └── travis.sh ├── imgui │ ├── .editorconfig │ ├── .travis.yml │ ├── LICENSE.txt │ ├── docs │ │ ├── CHANGELOG.txt │ │ ├── README.md │ │ ├── TODO.txt │ │ ├── issue_template.md │ │ └── pull_request_template.md │ ├── examples │ │ ├── .gitignore │ │ ├── README.txt │ │ ├── example_allegro5 │ │ │ ├── README.md │ │ │ ├── example_allegro5.vcxproj │ │ │ ├── example_allegro5.vcxproj.filters │ │ │ ├── imconfig_allegro5.h │ │ │ └── main.cpp │ │ ├── example_apple_metal │ │ │ ├── README.md │ │ │ ├── Shared │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Renderer.h │ │ │ │ ├── Renderer.mm │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.mm │ │ │ │ └── main.m │ │ │ ├── example_apple_metal.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── iOS │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Info-iOS.plist │ │ │ │ └── Launch Screen.storyboard │ │ │ └── macOS │ │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ │ └── Info-macOS.plist │ │ ├── example_apple_opengl2 │ │ │ ├── example_apple_opengl2.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── main.mm │ │ ├── example_freeglut_opengl2 │ │ │ ├── example_freeglut_opengl2.vcxproj │ │ │ ├── example_freeglut_opengl2.vcxproj.filters │ │ │ └── main.cpp │ │ ├── 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 │ │ │ ├── gen_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ ├── glsl_shader.vert │ │ │ └── main.cpp │ │ ├── example_marmalade │ │ │ ├── data │ │ │ │ └── app.icf │ │ │ ├── main.cpp │ │ │ └── marmalade_example.mkb │ │ ├── example_null │ │ │ ├── build_win32.bat │ │ │ └── main.cpp │ │ ├── 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 │ │ │ ├── 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 │ │ ├── imgui_impl_allegro5.cpp │ │ ├── imgui_impl_allegro5.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_freeglut.cpp │ │ ├── imgui_impl_freeglut.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.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_win32.cpp │ │ ├── imgui_impl_win32.h │ │ └── 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_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc │ │ ├── README.txt │ │ ├── cpp │ │ ├── README.txt │ │ ├── imgui_stdlib.cpp │ │ └── imgui_stdlib.h │ │ ├── fonts │ │ ├── Cousine-Regular.ttf │ │ ├── DroidSans.ttf │ │ ├── Karla-Regular.ttf │ │ ├── ProggyClean.ttf │ │ ├── ProggyTiny.ttf │ │ ├── README.txt │ │ ├── Roboto-Medium.ttf │ │ └── binary_to_compressed_c.cpp │ │ ├── freetype │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h │ │ └── natvis │ │ ├── README.txt │ │ └── imgui.natvis ├── list.cmake ├── m3rdparty.h ├── sdl │ ├── .hgignore │ ├── .hgtags │ ├── Android.mk │ ├── BUGS.txt │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── CREDITS.txt │ ├── INSTALL.txt │ ├── Makefile.in │ ├── Makefile.minimal │ ├── Makefile.pandora │ ├── Makefile.psp │ ├── Makefile.wiz │ ├── README-SDL.txt │ ├── README.txt │ ├── SDL2.spec │ ├── SDL2.spec.in │ ├── 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 │ │ ├── WinPhone80_VS2012 │ │ │ ├── SDL-WinPhone80.sln │ │ │ ├── SDL-WinPhone80.vcxproj │ │ │ └── SDL-WinPhone80.vcxproj.filters │ │ ├── WinPhone81_VS2013 │ │ │ ├── SDL-WinPhone81.sln │ │ │ ├── SDL-WinPhone81.vcxproj │ │ │ └── SDL-WinPhone81.vcxproj.filters │ │ ├── WinRT80_VS2012 │ │ │ ├── SDL-WinRT80.sln │ │ │ ├── SDL-WinRT80.vcxproj │ │ │ └── SDL-WinRT80.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.html │ ├── VisualC │ │ ├── SDL.sln │ │ ├── SDL │ │ │ ├── SDL.vcxproj │ │ │ ├── SDL.vcxproj.filters │ │ │ └── SDL_VS2008.vcproj │ │ ├── SDL_VS2008.sln │ │ ├── SDLmain │ │ │ ├── SDLmain.vcxproj │ │ │ └── SDLmain_VS2008.vcproj │ │ ├── SDLtest │ │ │ ├── SDLtest.vcxproj │ │ │ └── SDLtest_VS2008.vcproj │ │ ├── clean.sh │ │ ├── tests │ │ │ ├── checkkeys │ │ │ │ ├── checkkeys.vcxproj │ │ │ │ └── checkkeys_VS2008.vcproj │ │ │ ├── controllermap │ │ │ │ ├── controllermap.vcxproj │ │ │ │ └── controllermap_VS2008.vcproj │ │ │ ├── loopwave │ │ │ │ ├── loopwave.vcxproj │ │ │ │ └── loopwave_VS2008.vcproj │ │ │ ├── testatomic │ │ │ │ ├── testatomic.vcxproj │ │ │ │ └── testatomic_VS2008.vcproj │ │ │ ├── testautomation │ │ │ │ ├── testautomation.vcxproj │ │ │ │ └── testautomation_VS2008.vcproj │ │ │ ├── testdraw2 │ │ │ │ ├── testdraw2.vcxproj │ │ │ │ └── testdraw2_VS2008.vcproj │ │ │ ├── testfile │ │ │ │ ├── testfile.vcxproj │ │ │ │ └── testfile_VS2008.vcproj │ │ │ ├── testgamecontroller │ │ │ │ ├── testgamecontroller.vcxproj │ │ │ │ └── testgamecontroller_VS2008.vcproj │ │ │ ├── testgesture │ │ │ │ ├── testgesture.vcxproj │ │ │ │ └── testgesture_VS2008.vcproj │ │ │ ├── testgl2 │ │ │ │ ├── testgl2.vcxproj │ │ │ │ └── testgl2_VS2008.vcproj │ │ │ ├── testgles2 │ │ │ │ ├── testgles2.vcxproj │ │ │ │ └── testgles2_VS2008.vcproj │ │ │ ├── testjoystick │ │ │ │ ├── testjoystick.vcxproj │ │ │ │ └── testjoystick_VS2008.vcproj │ │ │ ├── testoverlay2 │ │ │ │ ├── testoverlay2.vcxproj │ │ │ │ └── testoverlay2_VS2008.vcproj │ │ │ ├── testplatform │ │ │ │ ├── testplatform.vcxproj │ │ │ │ └── testplatform_VS2008.vcproj │ │ │ ├── testpower │ │ │ │ ├── testpower.vcxproj │ │ │ │ └── testpower_VS2008.vcproj │ │ │ ├── testrendertarget │ │ │ │ ├── testrendertarget.vcxproj │ │ │ │ └── testrendertarget_VS2008.vcproj │ │ │ ├── testrumble │ │ │ │ ├── testrumble.vcxproj │ │ │ │ └── testrumble_VS2008.vcproj │ │ │ ├── testscale │ │ │ │ ├── testscale.vcxproj │ │ │ │ └── testscale_VS2008.vcproj │ │ │ ├── testshape │ │ │ │ ├── testshape.vcxproj │ │ │ │ └── testshape_VS2008.vcproj │ │ │ ├── testsprite2 │ │ │ │ ├── testsprite2.vcxproj │ │ │ │ └── testsprite2_VS2008.vcproj │ │ │ └── testvulkan │ │ │ │ ├── testvulkan.vcproj │ │ │ │ └── testvulkan.vcxproj │ │ └── visualtest │ │ │ ├── unittest │ │ │ └── testquit │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ └── visualtest_VS2012.vcxproj │ ├── WhatsNew.txt │ ├── Xcode-iOS │ │ ├── Demos │ │ │ ├── Default.png │ │ │ ├── Demos.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ ├── xcshareddata │ │ │ │ │ │ └── Demos.xccheckout │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Accel.xcscheme │ │ │ │ │ ├── Fireworks.xcscheme │ │ │ │ │ ├── Happy.xcscheme │ │ │ │ │ ├── Keyboard.xcscheme │ │ │ │ │ ├── Mixer.xcscheme │ │ │ │ │ ├── Rectangles.xcscheme │ │ │ │ │ ├── Touch.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ ├── 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 │ │ ├── SDL │ │ │ └── SDL.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ ├── xcshareddata │ │ │ │ │ └── SDL.xccheckout │ │ │ │ └── xcuserdata │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── PrepareXcodeProjectTemplate.xcscheme │ │ │ │ ├── libSDL.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── SDLtest │ │ │ └── SDL2test.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ ├── xcshareddata │ │ │ │ │ └── SDL2test.xccheckout │ │ │ │ └── xcuserdata │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── SDL2test.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── Template │ │ │ └── SDL iOS Application │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── main.c │ │ └── Test │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ └── project.pbxproj │ ├── Xcode │ │ ├── SDL │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ ├── xcshareddata │ │ │ │ │ │ └── SDL.xccheckout │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Framework.xcscheme │ │ │ │ │ ├── Shared Library.xcscheme │ │ │ │ │ ├── Standard DMG.xcscheme │ │ │ │ │ ├── Static Library.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ └── pkg-support │ │ │ │ ├── SDL.info │ │ │ │ ├── resources │ │ │ │ ├── License.txt │ │ │ │ ├── ReadMe.txt │ │ │ │ └── SDL_DS_Store │ │ │ │ └── sdl_logo.pdf │ │ ├── SDLTest │ │ │ ├── SDLTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ ├── xcshareddata │ │ │ │ │ │ └── SDLTest.xccheckout │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ │ └── cmaughan.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── All.xcscheme │ │ │ │ │ ├── SDL_test.xcscheme │ │ │ │ │ ├── checkkeys.xcscheme │ │ │ │ │ ├── controllermap.xcscheme │ │ │ │ │ ├── loopwave.xcscheme │ │ │ │ │ ├── testatomic.xcscheme │ │ │ │ │ ├── testaudioinfo.xcscheme │ │ │ │ │ ├── testdraw2.xcscheme │ │ │ │ │ ├── testdrawchessboard.xcscheme │ │ │ │ │ ├── testdropfile.xcscheme │ │ │ │ │ ├── testerror.xcscheme │ │ │ │ │ ├── testfile.xcscheme │ │ │ │ │ ├── testfilesystem.xcscheme │ │ │ │ │ ├── testgamecontroller.xcscheme │ │ │ │ │ ├── testgesture.xcscheme │ │ │ │ │ ├── testgl2.xcscheme │ │ │ │ │ ├── testhaptic.xcscheme │ │ │ │ │ ├── testhotplug.xcscheme │ │ │ │ │ ├── testiconv.xcscheme │ │ │ │ │ ├── testime.xcscheme │ │ │ │ │ ├── testintersections.xcscheme │ │ │ │ │ ├── testjoystick.xcscheme │ │ │ │ │ ├── testkeys.xcscheme │ │ │ │ │ ├── testloadso.xcscheme │ │ │ │ │ ├── testlock.xcscheme │ │ │ │ │ ├── testmessage.xcscheme │ │ │ │ │ ├── testmultiaudio.xcscheme │ │ │ │ │ ├── testnative.xcscheme │ │ │ │ │ ├── testoverlay2.xcscheme │ │ │ │ │ ├── testplatform.xcscheme │ │ │ │ │ ├── testpower.xcscheme │ │ │ │ │ ├── testrelative.xcscheme │ │ │ │ │ ├── testrendercopyex.xcscheme │ │ │ │ │ ├── testrendertarget.xcscheme │ │ │ │ │ ├── testresample.xcscheme │ │ │ │ │ ├── testrumble.xcscheme │ │ │ │ │ ├── testscale.xcscheme │ │ │ │ │ ├── testsem.xcscheme │ │ │ │ │ ├── testshader.xcscheme │ │ │ │ │ ├── testshape.xcscheme │ │ │ │ │ ├── testsprite2.xcscheme │ │ │ │ │ ├── testspriteminimal.xcscheme │ │ │ │ │ ├── teststreaming.xcscheme │ │ │ │ │ ├── testthread.xcscheme │ │ │ │ │ ├── testtimer.xcscheme │ │ │ │ │ ├── testversion.xcscheme │ │ │ │ │ ├── testwm2.xcscheme │ │ │ │ │ ├── torturethread.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ └── TestDropFile-Info.plist │ │ └── XcodeDocSet │ │ │ └── Doxyfile │ ├── acinclude │ │ ├── ac_check_define.m4 │ │ ├── alsa.m4 │ │ ├── ax_check_compiler_flags.m4 │ │ ├── ax_gcc_archflag.m4 │ │ ├── ax_gcc_x86_cpuid.m4.htm │ │ ├── esd.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── android-project │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── build.properties │ │ ├── build.xml │ │ ├── default.properties │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── src │ │ │ │ ├── Android.mk │ │ │ │ └── Android_static.mk │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── libsdl │ │ │ └── app │ │ │ ├── SDL.java │ │ │ ├── SDLActivity.java │ │ │ ├── SDLAudioManager.java │ │ │ └── SDLControllerManager.java │ ├── autogen.sh │ ├── build-scripts │ │ ├── androidbuild.sh │ │ ├── androidbuildlibs.sh │ │ ├── checker-buildbot.sh │ │ ├── config.guess │ │ ├── config.sub │ │ ├── config.sub.patch │ │ ├── emscripten-buildbot.sh │ │ ├── g++-fat.sh │ │ ├── gcc-fat.sh │ │ ├── install-sh │ │ ├── iosbuild.sh │ │ ├── ltmain.sh │ │ ├── mkinstalldirs │ │ ├── nacl-buildbot.sh │ │ ├── naclbuild.sh │ │ ├── raspberrypi-buildbot.sh │ │ ├── showrev.sh │ │ ├── strip_fPIC.sh │ │ ├── update-copyright.sh │ │ ├── updaterev.sh │ │ ├── windows-buildbot-zipper.bat │ │ ├── winrtbuild.bat │ │ └── winrtbuild.ps1 │ ├── cmake │ │ ├── macros.cmake │ │ └── sdlchecks.cmake │ ├── cmake_uninstall.cmake.in │ ├── configure │ ├── configure.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── libsdl2-dev.install │ │ ├── libsdl2-dev.manpages │ │ ├── libsdl2.install │ │ ├── rules │ │ ├── sdl2-config.1 │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_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 │ ├── premake │ │ ├── Cygwin │ │ │ └── build-scripts │ │ │ │ ├── clean_premake.bat │ │ │ │ ├── cygwin.bat │ │ │ │ ├── make.debug.bat │ │ │ │ ├── make.release.bat │ │ │ │ ├── run.tests.debug.bat │ │ │ │ └── run.tests.release.bat │ │ ├── Linux │ │ │ ├── SDL_config_premake.h │ │ │ └── build-scripts │ │ │ │ ├── clean_premake.sh │ │ │ │ ├── gmake.sh │ │ │ │ ├── premake4 │ │ │ │ └── run.tests.sh │ │ ├── MinGW │ │ │ ├── SDL_config_premake.h │ │ │ └── build-scripts │ │ │ │ ├── clean_premake.bat │ │ │ │ ├── mingw.bat │ │ │ │ └── run.tests.bat │ │ ├── README-cygwin.txt │ │ ├── README-ios.txt │ │ ├── README-linux.txt │ │ ├── README-macosx.txt │ │ ├── README-mingw.txt │ │ ├── README-windows.txt │ │ ├── README.txt │ │ ├── VisualC │ │ │ ├── VS2008 │ │ │ │ ├── SDL.sln │ │ │ │ ├── SDL2 │ │ │ │ │ └── SDL2.vcproj │ │ │ │ ├── SDL2main │ │ │ │ │ └── SDL2main.vcproj │ │ │ │ ├── SDL2test │ │ │ │ │ └── SDL2test.vcproj │ │ │ │ ├── SDL_config_premake.h │ │ │ │ └── tests │ │ │ │ │ ├── checkkeys │ │ │ │ │ └── checkkeys.vcproj │ │ │ │ │ ├── loopwave │ │ │ │ │ └── loopwave.vcproj │ │ │ │ │ ├── testatomic │ │ │ │ │ └── testatomic.vcproj │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ └── testaudioinfo.vcproj │ │ │ │ │ ├── testautomation │ │ │ │ │ └── testautomation.vcproj │ │ │ │ │ ├── testchessboard │ │ │ │ │ └── testchessboard.vcproj │ │ │ │ │ ├── testdraw2 │ │ │ │ │ └── testdraw2.vcproj │ │ │ │ │ ├── testerror │ │ │ │ │ └── testerror.vcproj │ │ │ │ │ ├── testfile │ │ │ │ │ └── testfile.vcproj │ │ │ │ │ ├── testfilesystem │ │ │ │ │ └── testfilesystem.vcproj │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ └── testgamecontroller.vcproj │ │ │ │ │ ├── testgesture │ │ │ │ │ └── testgesture.vcproj │ │ │ │ │ ├── testgl2 │ │ │ │ │ └── testgl2.vcproj │ │ │ │ │ ├── testgles │ │ │ │ │ └── testgles.vcproj │ │ │ │ │ ├── testhaptic │ │ │ │ │ └── testhaptic.vcproj │ │ │ │ │ ├── testiconv │ │ │ │ │ └── testiconv.vcproj │ │ │ │ │ ├── testime │ │ │ │ │ └── testime.vcproj │ │ │ │ │ ├── testjoystick │ │ │ │ │ └── testjoystick.vcproj │ │ │ │ │ ├── testkeys │ │ │ │ │ └── testkeys.vcproj │ │ │ │ │ ├── testloadso │ │ │ │ │ └── testloadso.vcproj │ │ │ │ │ ├── testlock │ │ │ │ │ └── testlock.vcproj │ │ │ │ │ ├── testmessage │ │ │ │ │ └── testmessage.vcproj │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ └── testmultiaudio.vcproj │ │ │ │ │ ├── testnative │ │ │ │ │ └── testnative.vcproj │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ └── testoverlay2.vcproj │ │ │ │ │ ├── testplatform │ │ │ │ │ └── testplatform.vcproj │ │ │ │ │ ├── testpower │ │ │ │ │ └── testpower.vcproj │ │ │ │ │ ├── testrelative │ │ │ │ │ └── testrelative.vcproj │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ └── testrendercopyex.vcproj │ │ │ │ │ ├── testrendertarget │ │ │ │ │ └── testrendertarget.vcproj │ │ │ │ │ ├── testresample │ │ │ │ │ └── testresample.vcproj │ │ │ │ │ ├── testrumble │ │ │ │ │ └── testrumble.vcproj │ │ │ │ │ ├── testscale │ │ │ │ │ └── testscale.vcproj │ │ │ │ │ ├── testsem │ │ │ │ │ └── testsem.vcproj │ │ │ │ │ ├── testshader │ │ │ │ │ └── testshader.vcproj │ │ │ │ │ ├── testshape │ │ │ │ │ └── testshape.vcproj │ │ │ │ │ ├── testsprite2 │ │ │ │ │ └── testsprite2.vcproj │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ └── testspriteminimal.vcproj │ │ │ │ │ ├── teststreaming │ │ │ │ │ └── teststreaming.vcproj │ │ │ │ │ ├── testthread │ │ │ │ │ └── testthread.vcproj │ │ │ │ │ ├── testtimer │ │ │ │ │ └── testtimer.vcproj │ │ │ │ │ ├── testver │ │ │ │ │ └── testver.vcproj │ │ │ │ │ ├── testwm2 │ │ │ │ │ └── testwm2.vcproj │ │ │ │ │ └── torturethread │ │ │ │ │ └── torturethread.vcproj │ │ │ ├── VS2010 │ │ │ │ ├── SDL.sln │ │ │ │ ├── SDL2 │ │ │ │ │ ├── SDL2.vcxproj │ │ │ │ │ └── SDL2.vcxproj.filters │ │ │ │ ├── SDL2main │ │ │ │ │ ├── SDL2main.vcxproj │ │ │ │ │ └── SDL2main.vcxproj.filters │ │ │ │ ├── SDL2test │ │ │ │ │ ├── SDL2test.vcxproj │ │ │ │ │ └── SDL2test.vcxproj.filters │ │ │ │ ├── SDL_config_premake.h │ │ │ │ └── tests │ │ │ │ │ ├── checkkeys │ │ │ │ │ ├── checkkeys.vcxproj │ │ │ │ │ └── checkkeys.vcxproj.filters │ │ │ │ │ ├── loopwave │ │ │ │ │ ├── loopwave.vcxproj │ │ │ │ │ └── loopwave.vcxproj.filters │ │ │ │ │ ├── testatomic │ │ │ │ │ ├── testatomic.vcxproj │ │ │ │ │ └── testatomic.vcxproj.filters │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ ├── testaudioinfo.vcxproj │ │ │ │ │ └── testaudioinfo.vcxproj.filters │ │ │ │ │ ├── testautomation │ │ │ │ │ ├── testautomation.vcxproj │ │ │ │ │ └── testautomation.vcxproj.filters │ │ │ │ │ ├── testchessboard │ │ │ │ │ ├── testchessboard.vcxproj │ │ │ │ │ └── testchessboard.vcxproj.filters │ │ │ │ │ ├── testdraw2 │ │ │ │ │ ├── testdraw2.vcxproj │ │ │ │ │ └── testdraw2.vcxproj.filters │ │ │ │ │ ├── testerror │ │ │ │ │ ├── testerror.vcxproj │ │ │ │ │ └── testerror.vcxproj.filters │ │ │ │ │ ├── testfile │ │ │ │ │ ├── testfile.vcxproj │ │ │ │ │ └── testfile.vcxproj.filters │ │ │ │ │ ├── testfilesystem │ │ │ │ │ ├── testfilesystem.vcxproj │ │ │ │ │ └── testfilesystem.vcxproj.filters │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ ├── testgamecontroller.vcxproj │ │ │ │ │ └── testgamecontroller.vcxproj.filters │ │ │ │ │ ├── testgesture │ │ │ │ │ ├── testgesture.vcxproj │ │ │ │ │ └── testgesture.vcxproj.filters │ │ │ │ │ ├── testgl2 │ │ │ │ │ ├── testgl2.vcxproj │ │ │ │ │ └── testgl2.vcxproj.filters │ │ │ │ │ ├── testgles │ │ │ │ │ ├── testgles.vcxproj │ │ │ │ │ └── testgles.vcxproj.filters │ │ │ │ │ ├── testhaptic │ │ │ │ │ ├── testhaptic.vcxproj │ │ │ │ │ └── testhaptic.vcxproj.filters │ │ │ │ │ ├── testiconv │ │ │ │ │ ├── testiconv.vcxproj │ │ │ │ │ └── testiconv.vcxproj.filters │ │ │ │ │ ├── testime │ │ │ │ │ ├── testime.vcxproj │ │ │ │ │ └── testime.vcxproj.filters │ │ │ │ │ ├── testjoystick │ │ │ │ │ ├── testjoystick.vcxproj │ │ │ │ │ └── testjoystick.vcxproj.filters │ │ │ │ │ ├── testkeys │ │ │ │ │ ├── testkeys.vcxproj │ │ │ │ │ └── testkeys.vcxproj.filters │ │ │ │ │ ├── testloadso │ │ │ │ │ ├── testloadso.vcxproj │ │ │ │ │ └── testloadso.vcxproj.filters │ │ │ │ │ ├── testlock │ │ │ │ │ ├── testlock.vcxproj │ │ │ │ │ └── testlock.vcxproj.filters │ │ │ │ │ ├── testmessage │ │ │ │ │ ├── testmessage.vcxproj │ │ │ │ │ └── testmessage.vcxproj.filters │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ ├── testmultiaudio.vcxproj │ │ │ │ │ └── testmultiaudio.vcxproj.filters │ │ │ │ │ ├── testnative │ │ │ │ │ ├── testnative.vcxproj │ │ │ │ │ └── testnative.vcxproj.filters │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ ├── testoverlay2.vcxproj │ │ │ │ │ └── testoverlay2.vcxproj.filters │ │ │ │ │ ├── testplatform │ │ │ │ │ ├── testplatform.vcxproj │ │ │ │ │ └── testplatform.vcxproj.filters │ │ │ │ │ ├── testpower │ │ │ │ │ ├── testpower.vcxproj │ │ │ │ │ └── testpower.vcxproj.filters │ │ │ │ │ ├── testrelative │ │ │ │ │ ├── testrelative.vcxproj │ │ │ │ │ └── testrelative.vcxproj.filters │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ ├── testrendercopyex.vcxproj │ │ │ │ │ └── testrendercopyex.vcxproj.filters │ │ │ │ │ ├── testrendertarget │ │ │ │ │ ├── testrendertarget.vcxproj │ │ │ │ │ └── testrendertarget.vcxproj.filters │ │ │ │ │ ├── testresample │ │ │ │ │ ├── testresample.vcxproj │ │ │ │ │ └── testresample.vcxproj.filters │ │ │ │ │ ├── testrumble │ │ │ │ │ ├── testrumble.vcxproj │ │ │ │ │ └── testrumble.vcxproj.filters │ │ │ │ │ ├── testscale │ │ │ │ │ ├── testscale.vcxproj │ │ │ │ │ └── testscale.vcxproj.filters │ │ │ │ │ ├── testsem │ │ │ │ │ ├── testsem.vcxproj │ │ │ │ │ └── testsem.vcxproj.filters │ │ │ │ │ ├── testshader │ │ │ │ │ ├── testshader.vcxproj │ │ │ │ │ └── testshader.vcxproj.filters │ │ │ │ │ ├── testshape │ │ │ │ │ ├── testshape.vcxproj │ │ │ │ │ └── testshape.vcxproj.filters │ │ │ │ │ ├── testsprite2 │ │ │ │ │ ├── testsprite2.vcxproj │ │ │ │ │ └── testsprite2.vcxproj.filters │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ ├── testspriteminimal.vcxproj │ │ │ │ │ └── testspriteminimal.vcxproj.filters │ │ │ │ │ ├── teststreaming │ │ │ │ │ ├── teststreaming.vcxproj │ │ │ │ │ └── teststreaming.vcxproj.filters │ │ │ │ │ ├── testthread │ │ │ │ │ ├── testthread.vcxproj │ │ │ │ │ └── testthread.vcxproj.filters │ │ │ │ │ ├── testtimer │ │ │ │ │ ├── testtimer.vcxproj │ │ │ │ │ └── testtimer.vcxproj.filters │ │ │ │ │ ├── testver │ │ │ │ │ ├── testver.vcxproj │ │ │ │ │ └── testver.vcxproj.filters │ │ │ │ │ ├── testwm2 │ │ │ │ │ ├── testwm2.vcxproj │ │ │ │ │ └── testwm2.vcxproj.filters │ │ │ │ │ └── torturethread │ │ │ │ │ ├── torturethread.vcxproj │ │ │ │ │ └── torturethread.vcxproj.filters │ │ │ ├── VS2012 │ │ │ │ ├── SDL.sln │ │ │ │ ├── SDL2 │ │ │ │ │ ├── SDL2.vcxproj │ │ │ │ │ └── SDL2.vcxproj.filters │ │ │ │ ├── SDL2main │ │ │ │ │ ├── SDL2main.vcxproj │ │ │ │ │ └── SDL2main.vcxproj.filters │ │ │ │ ├── SDL2test │ │ │ │ │ ├── SDL2test.vcxproj │ │ │ │ │ └── SDL2test.vcxproj.filters │ │ │ │ ├── SDL_config_premake.h │ │ │ │ └── tests │ │ │ │ │ ├── checkkeys │ │ │ │ │ ├── checkkeys.vcxproj │ │ │ │ │ └── checkkeys.vcxproj.filters │ │ │ │ │ ├── loopwave │ │ │ │ │ ├── loopwave.vcxproj │ │ │ │ │ └── loopwave.vcxproj.filters │ │ │ │ │ ├── testatomic │ │ │ │ │ ├── testatomic.vcxproj │ │ │ │ │ └── testatomic.vcxproj.filters │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ ├── testaudioinfo.vcxproj │ │ │ │ │ └── testaudioinfo.vcxproj.filters │ │ │ │ │ ├── testautomation │ │ │ │ │ ├── testautomation.vcxproj │ │ │ │ │ └── testautomation.vcxproj.filters │ │ │ │ │ ├── testchessboard │ │ │ │ │ ├── testchessboard.vcxproj │ │ │ │ │ └── testchessboard.vcxproj.filters │ │ │ │ │ ├── testdraw2 │ │ │ │ │ ├── testdraw2.vcxproj │ │ │ │ │ └── testdraw2.vcxproj.filters │ │ │ │ │ ├── testerror │ │ │ │ │ ├── testerror.vcxproj │ │ │ │ │ └── testerror.vcxproj.filters │ │ │ │ │ ├── testfile │ │ │ │ │ ├── testfile.vcxproj │ │ │ │ │ └── testfile.vcxproj.filters │ │ │ │ │ ├── testfilesystem │ │ │ │ │ ├── testfilesystem.vcxproj │ │ │ │ │ └── testfilesystem.vcxproj.filters │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ ├── testgamecontroller.vcxproj │ │ │ │ │ └── testgamecontroller.vcxproj.filters │ │ │ │ │ ├── testgesture │ │ │ │ │ ├── testgesture.vcxproj │ │ │ │ │ └── testgesture.vcxproj.filters │ │ │ │ │ ├── testgl2 │ │ │ │ │ ├── testgl2.vcxproj │ │ │ │ │ └── testgl2.vcxproj.filters │ │ │ │ │ ├── testgles │ │ │ │ │ ├── testgles.vcxproj │ │ │ │ │ └── testgles.vcxproj.filters │ │ │ │ │ ├── testhaptic │ │ │ │ │ ├── testhaptic.vcxproj │ │ │ │ │ └── testhaptic.vcxproj.filters │ │ │ │ │ ├── testiconv │ │ │ │ │ ├── testiconv.vcxproj │ │ │ │ │ └── testiconv.vcxproj.filters │ │ │ │ │ ├── testime │ │ │ │ │ ├── testime.vcxproj │ │ │ │ │ └── testime.vcxproj.filters │ │ │ │ │ ├── testjoystick │ │ │ │ │ ├── testjoystick.vcxproj │ │ │ │ │ └── testjoystick.vcxproj.filters │ │ │ │ │ ├── testkeys │ │ │ │ │ ├── testkeys.vcxproj │ │ │ │ │ └── testkeys.vcxproj.filters │ │ │ │ │ ├── testloadso │ │ │ │ │ ├── testloadso.vcxproj │ │ │ │ │ └── testloadso.vcxproj.filters │ │ │ │ │ ├── testlock │ │ │ │ │ ├── testlock.vcxproj │ │ │ │ │ └── testlock.vcxproj.filters │ │ │ │ │ ├── testmessage │ │ │ │ │ ├── testmessage.vcxproj │ │ │ │ │ └── testmessage.vcxproj.filters │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ ├── testmultiaudio.vcxproj │ │ │ │ │ └── testmultiaudio.vcxproj.filters │ │ │ │ │ ├── testnative │ │ │ │ │ ├── testnative.vcxproj │ │ │ │ │ └── testnative.vcxproj.filters │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ ├── testoverlay2.vcxproj │ │ │ │ │ └── testoverlay2.vcxproj.filters │ │ │ │ │ ├── testplatform │ │ │ │ │ ├── testplatform.vcxproj │ │ │ │ │ └── testplatform.vcxproj.filters │ │ │ │ │ ├── testpower │ │ │ │ │ ├── testpower.vcxproj │ │ │ │ │ └── testpower.vcxproj.filters │ │ │ │ │ ├── testrelative │ │ │ │ │ ├── testrelative.vcxproj │ │ │ │ │ └── testrelative.vcxproj.filters │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ ├── testrendercopyex.vcxproj │ │ │ │ │ └── testrendercopyex.vcxproj.filters │ │ │ │ │ ├── testrendertarget │ │ │ │ │ ├── testrendertarget.vcxproj │ │ │ │ │ └── testrendertarget.vcxproj.filters │ │ │ │ │ ├── testresample │ │ │ │ │ ├── testresample.vcxproj │ │ │ │ │ └── testresample.vcxproj.filters │ │ │ │ │ ├── testrumble │ │ │ │ │ ├── testrumble.vcxproj │ │ │ │ │ └── testrumble.vcxproj.filters │ │ │ │ │ ├── testscale │ │ │ │ │ ├── testscale.vcxproj │ │ │ │ │ └── testscale.vcxproj.filters │ │ │ │ │ ├── testsem │ │ │ │ │ ├── testsem.vcxproj │ │ │ │ │ └── testsem.vcxproj.filters │ │ │ │ │ ├── testshader │ │ │ │ │ ├── testshader.vcxproj │ │ │ │ │ └── testshader.vcxproj.filters │ │ │ │ │ ├── testshape │ │ │ │ │ ├── testshape.vcxproj │ │ │ │ │ └── testshape.vcxproj.filters │ │ │ │ │ ├── testsprite2 │ │ │ │ │ ├── testsprite2.vcxproj │ │ │ │ │ └── testsprite2.vcxproj.filters │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ ├── testspriteminimal.vcxproj │ │ │ │ │ └── testspriteminimal.vcxproj.filters │ │ │ │ │ ├── teststreaming │ │ │ │ │ ├── teststreaming.vcxproj │ │ │ │ │ └── teststreaming.vcxproj.filters │ │ │ │ │ ├── testthread │ │ │ │ │ ├── testthread.vcxproj │ │ │ │ │ └── testthread.vcxproj.filters │ │ │ │ │ ├── testtimer │ │ │ │ │ ├── testtimer.vcxproj │ │ │ │ │ └── testtimer.vcxproj.filters │ │ │ │ │ ├── testver │ │ │ │ │ ├── testver.vcxproj │ │ │ │ │ └── testver.vcxproj.filters │ │ │ │ │ ├── testwm2 │ │ │ │ │ ├── testwm2.vcxproj │ │ │ │ │ └── testwm2.vcxproj.filters │ │ │ │ │ └── torturethread │ │ │ │ │ ├── torturethread.vcxproj │ │ │ │ │ └── torturethread.vcxproj.filters │ │ │ └── build-scripts │ │ │ │ ├── build.all.vs2010.bat │ │ │ │ ├── check.bin.compatibility.vs2010.bat │ │ │ │ ├── clean_premake.bat │ │ │ │ ├── generate.all.bat │ │ │ │ ├── run.tests.vs2010.bat │ │ │ │ ├── vs2008.bat │ │ │ │ ├── vs2010.bat │ │ │ │ └── vs2012.bat │ │ ├── Xcode-iOS │ │ │ ├── Demos │ │ │ │ ├── accelerometer │ │ │ │ │ └── accelerometer.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── fireworks │ │ │ │ │ └── fireworks.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── happy │ │ │ │ │ └── happy.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── keyboard │ │ │ │ │ └── keyboard.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── mixer │ │ │ │ │ └── mixer.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── rectangles │ │ │ │ │ └── rectangles.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ └── touch │ │ │ │ │ └── touch.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── SDL.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── SDL2 │ │ │ │ └── SDL2.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── SDL2main │ │ │ │ └── SDL2main.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── SDL2test │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── SDL_config_premake.h │ │ │ └── build-scripts │ │ │ │ ├── clean_premake.command │ │ │ │ ├── premake4 │ │ │ │ ├── xcode3.command │ │ │ │ └── xcode4.command │ │ ├── Xcode │ │ │ ├── Xcode3 │ │ │ │ ├── SDL2 │ │ │ │ │ └── SDL2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── SDL2main │ │ │ │ │ └── SDL2main.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── SDL2test │ │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── SDL_config_premake.h │ │ │ │ └── tests │ │ │ │ │ ├── checkkeys │ │ │ │ │ └── checkkeys.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── loopwave │ │ │ │ │ └── loopwave.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testatomic │ │ │ │ │ └── testatomic.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ └── testaudioinfo.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testautomation │ │ │ │ │ └── testautomation.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testchessboard │ │ │ │ │ └── testchessboard.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testdraw2 │ │ │ │ │ └── testdraw2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testerror │ │ │ │ │ └── testerror.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testfile │ │ │ │ │ └── testfile.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testfilesystem │ │ │ │ │ └── testfilesystem.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ └── testgamecontroller.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgesture │ │ │ │ │ └── testgesture.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgl2 │ │ │ │ │ └── testgl2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgles │ │ │ │ │ └── testgles.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testhaptic │ │ │ │ │ └── testhaptic.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testiconv │ │ │ │ │ └── testiconv.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testime │ │ │ │ │ └── testime.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testjoystick │ │ │ │ │ └── testjoystick.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testkeys │ │ │ │ │ └── testkeys.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testloadso │ │ │ │ │ └── testloadso.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testlock │ │ │ │ │ └── testlock.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testmessage │ │ │ │ │ └── testmessage.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ └── testmultiaudio.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testnative │ │ │ │ │ └── testnative.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ └── testoverlay2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testplatform │ │ │ │ │ └── testplatform.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testpower │ │ │ │ │ └── testpower.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrelative │ │ │ │ │ └── testrelative.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ └── testrendercopyex.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrendertarget │ │ │ │ │ └── testrendertarget.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testresample │ │ │ │ │ └── testresample.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrumble │ │ │ │ │ └── testrumble.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testscale │ │ │ │ │ └── testscale.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testsem │ │ │ │ │ └── testsem.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testshader │ │ │ │ │ └── testshader.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testshape │ │ │ │ │ └── testshape.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testsprite2 │ │ │ │ │ └── testsprite2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ └── testspriteminimal.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── teststreaming │ │ │ │ │ └── teststreaming.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testthread │ │ │ │ │ └── testthread.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testtimer │ │ │ │ │ └── testtimer.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testver │ │ │ │ │ └── testver.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testwm2 │ │ │ │ │ └── testwm2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── torturethread │ │ │ │ │ └── torturethread.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── Xcode4 │ │ │ │ ├── SDL.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── SDL2 │ │ │ │ │ └── SDL2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── SDL2main │ │ │ │ │ └── SDL2main.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── SDL2test │ │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── SDL_config_premake.h │ │ │ │ └── tests │ │ │ │ │ ├── checkkeys │ │ │ │ │ └── checkkeys.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── loopwave │ │ │ │ │ └── loopwave.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testatomic │ │ │ │ │ └── testatomic.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ └── testaudioinfo.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testautomation │ │ │ │ │ └── testautomation.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testchessboard │ │ │ │ │ └── testchessboard.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testdraw2 │ │ │ │ │ └── testdraw2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testerror │ │ │ │ │ └── testerror.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testfile │ │ │ │ │ └── testfile.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testfilesystem │ │ │ │ │ └── testfilesystem.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ └── testgamecontroller.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgesture │ │ │ │ │ └── testgesture.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgl2 │ │ │ │ │ └── testgl2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testgles │ │ │ │ │ └── testgles.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testhaptic │ │ │ │ │ └── testhaptic.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testiconv │ │ │ │ │ └── testiconv.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testime │ │ │ │ │ └── testime.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testjoystick │ │ │ │ │ └── testjoystick.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testkeys │ │ │ │ │ └── testkeys.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testloadso │ │ │ │ │ └── testloadso.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testlock │ │ │ │ │ └── testlock.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testmessage │ │ │ │ │ └── testmessage.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ └── testmultiaudio.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testnative │ │ │ │ │ └── testnative.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ └── testoverlay2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testplatform │ │ │ │ │ └── testplatform.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testpower │ │ │ │ │ └── testpower.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrelative │ │ │ │ │ └── testrelative.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ └── testrendercopyex.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrendertarget │ │ │ │ │ └── testrendertarget.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testresample │ │ │ │ │ └── testresample.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testrumble │ │ │ │ │ └── testrumble.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testscale │ │ │ │ │ └── testscale.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testsem │ │ │ │ │ └── testsem.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testshader │ │ │ │ │ └── testshader.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testshape │ │ │ │ │ └── testshape.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testsprite2 │ │ │ │ │ └── testsprite2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ └── testspriteminimal.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── teststreaming │ │ │ │ │ └── teststreaming.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testthread │ │ │ │ │ └── testthread.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testtimer │ │ │ │ │ └── testtimer.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testver │ │ │ │ │ └── testver.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── testwm2 │ │ │ │ │ └── testwm2.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── torturethread │ │ │ │ │ └── torturethread.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── build-scripts │ │ │ │ ├── build.all.xcode3.i386.command │ │ │ │ ├── build.all.xcode3.x86_64.command │ │ │ │ ├── build.all.xcode4.i386.command │ │ │ │ ├── build.all.xcode4.x86_64.command │ │ │ │ ├── clean_premake.command │ │ │ │ ├── premake4 │ │ │ │ ├── run.tests.command │ │ │ │ ├── xcode3.command │ │ │ │ └── xcode4.command │ │ ├── changelog │ │ ├── config │ │ │ ├── SDL_config_cygwin.template.h │ │ │ ├── SDL_config_iphoneos.template.h │ │ │ ├── SDL_config_linux.template.h │ │ │ ├── SDL_config_macosx.template.h │ │ │ ├── SDL_config_minimal.template.h │ │ │ └── SDL_config_windows.template.h │ │ ├── patches │ │ │ └── premake.patches.txt │ │ ├── premake4.lua │ │ ├── projects │ │ │ ├── SDL2.lua │ │ │ ├── SDL2main.lua │ │ │ ├── SDL2test.lua │ │ │ ├── accelerometer.lua │ │ │ ├── checkkeys.lua │ │ │ ├── fireworks.lua │ │ │ ├── happy.lua │ │ │ ├── keyboard.lua │ │ │ ├── loopwave.lua │ │ │ ├── mixer.lua │ │ │ ├── rectangles.lua │ │ │ ├── testatomic.lua │ │ │ ├── testaudioinfo.lua │ │ │ ├── testautomation.lua │ │ │ ├── testdraw2.lua │ │ │ ├── testdrawchessboard.lua │ │ │ ├── testerror.lua │ │ │ ├── testfile.lua │ │ │ ├── testfilesystem.lua │ │ │ ├── testgamecontroller.lua │ │ │ ├── testgesture.lua │ │ │ ├── testgl2.lua │ │ │ ├── testgles.lua │ │ │ ├── testhaptic.lua │ │ │ ├── testiconv.lua │ │ │ ├── testime.lua │ │ │ ├── testintersection.lua │ │ │ ├── testjoystick.lua │ │ │ ├── testkeys.lua │ │ │ ├── testloadso.lua │ │ │ ├── testlock.lua │ │ │ ├── testmessage.lua │ │ │ ├── testmultiaudio.lua │ │ │ ├── testnative.lua │ │ │ ├── testoverlay2.lua │ │ │ ├── testplatform.lua │ │ │ ├── testpower.lua │ │ │ ├── testrelative.lua │ │ │ ├── testrendercopyex.lua │ │ │ ├── testrendertarget.lua │ │ │ ├── testresample.lua │ │ │ ├── testrumble.lua │ │ │ ├── testscale.lua │ │ │ ├── testsem.lua │ │ │ ├── testshader.lua │ │ │ ├── testshape.lua │ │ │ ├── testsprite2.lua │ │ │ ├── testspriteminimal.lua │ │ │ ├── teststreaming.lua │ │ │ ├── testthread.lua │ │ │ ├── testtimer.lua │ │ │ ├── testver.lua │ │ │ ├── testwm2.lua │ │ │ ├── torturethread.lua │ │ │ └── touch.lua │ │ └── util │ │ │ ├── sdl_check_compile.lua │ │ │ ├── sdl_dependency_checkers.lua │ │ │ ├── sdl_depends.lua │ │ │ ├── sdl_file.lua │ │ │ ├── sdl_gen_config.lua │ │ │ ├── sdl_projects.lua │ │ │ └── sdl_string.lua │ ├── 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_internal.h │ │ ├── SDL_log.c │ │ ├── atomic │ │ │ ├── SDL_atomic.c │ │ │ └── SDL_spinlock.c │ │ ├── audio │ │ │ ├── SDL_audio.c │ │ │ ├── SDL_audio_c.h │ │ │ ├── SDL_audiocvt.c │ │ │ ├── SDL_audiodev.c │ │ │ ├── SDL_audiodev_c.h │ │ │ ├── SDL_audiomem.h │ │ │ ├── SDL_audiotypecvt.c │ │ │ ├── SDL_mixer.c │ │ │ ├── SDL_sysaudio.h │ │ │ ├── SDL_wave.c │ │ │ ├── SDL_wave.h │ │ │ ├── alsa │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ └── SDL_alsa_audio.h │ │ │ ├── android │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ └── SDL_androidaudio.h │ │ │ ├── arts │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ └── SDL_artsaudio.h │ │ │ ├── bsd │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ └── SDL_bsdaudio.h │ │ │ ├── coreaudio │ │ │ │ ├── SDL_coreaudio.c │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ └── 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 │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.h │ │ │ ├── psp │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ └── SDL_pspaudio.h │ │ │ ├── pulseaudio │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ └── SDL_pulseaudio.h │ │ │ ├── qsa │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ └── SDL_qsa_audio.h │ │ │ ├── sdlgenaudiocvt.pl │ │ │ ├── sndio │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ └── SDL_sndioaudio.h │ │ │ ├── sun │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ └── SDL_sunaudio.h │ │ │ ├── wasapi │ │ │ │ ├── SDL_wasapi.c │ │ │ │ └── SDL_wasapi.h │ │ │ ├── winmm │ │ │ │ ├── SDL_winmm.c │ │ │ │ └── SDL_winmm.h │ │ │ └── xaudio2 │ │ │ │ ├── SDL_xaudio2.c │ │ │ │ ├── SDL_xaudio2.h │ │ │ │ ├── SDL_xaudio2_winrthelpers.cpp │ │ │ │ └── SDL_xaudio2_winrthelpers.h │ │ ├── core │ │ │ ├── android │ │ │ │ ├── SDL_android.c │ │ │ │ └── SDL_android.h │ │ │ ├── linux │ │ │ │ ├── SDL_dbus.c │ │ │ │ ├── SDL_dbus.h │ │ │ │ ├── SDL_evdev.c │ │ │ │ ├── SDL_evdev.h │ │ │ │ ├── SDL_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_udev.c │ │ │ │ └── SDL_udev.h │ │ │ ├── unix │ │ │ │ ├── SDL_poll.c │ │ │ │ └── SDL_poll.h │ │ │ ├── windows │ │ │ │ ├── SDL_directx.h │ │ │ │ ├── SDL_windows.c │ │ │ │ ├── SDL_windows.h │ │ │ │ ├── SDL_xinput.c │ │ │ │ └── SDL_xinput.h │ │ │ └── winrt │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ └── SDL_winrtapp_xaml.h │ │ ├── cpuinfo │ │ │ └── SDL_cpuinfo.c │ │ ├── dynapi │ │ │ ├── SDL_dynapi.c │ │ │ ├── SDL_dynapi.h │ │ │ ├── SDL_dynapi_overrides.h │ │ │ ├── SDL_dynapi_procs.h │ │ │ └── gendynapi.pl │ │ ├── events │ │ │ ├── SDL_clipboardevents.c │ │ │ ├── SDL_clipboardevents_c.h │ │ │ ├── SDL_dropevents.c │ │ │ ├── SDL_dropevents_c.h │ │ │ ├── SDL_events.c │ │ │ ├── SDL_events_c.h │ │ │ ├── SDL_gesture.c │ │ │ ├── SDL_gesture_c.h │ │ │ ├── SDL_keyboard.c │ │ │ ├── SDL_keyboard_c.h │ │ │ ├── SDL_mouse.c │ │ │ ├── SDL_mouse_c.h │ │ │ ├── SDL_quit.c │ │ │ ├── SDL_sysevents.h │ │ │ ├── SDL_touch.c │ │ │ ├── SDL_touch_c.h │ │ │ ├── SDL_windowevents.c │ │ │ ├── SDL_windowevents_c.h │ │ │ ├── blank_cursor.h │ │ │ ├── default_cursor.h │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ └── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ ├── filesystem │ │ │ ├── android │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── cocoa │ │ │ │ └── SDL_sysfilesystem.m │ │ │ ├── dummy │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── emscripten │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ ├── nacl │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── unix │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── windows │ │ │ │ └── SDL_sysfilesystem.c │ │ │ └── winrt │ │ │ │ └── SDL_sysfilesystem.cpp │ │ ├── haptic │ │ │ ├── SDL_haptic.c │ │ │ ├── SDL_haptic_c.h │ │ │ ├── SDL_syshaptic.h │ │ │ ├── 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 │ │ ├── joystick │ │ │ ├── SDL_gamecontroller.c │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ ├── SDL_joystick.c │ │ │ ├── SDL_joystick_c.h │ │ │ ├── SDL_sysjoystick.h │ │ │ ├── android │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── bsd │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── darwin │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── emscripten │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── haiku │ │ │ │ └── SDL_haikujoystick.cc │ │ │ ├── iphoneos │ │ │ │ ├── SDL_sysjoystick.m │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── psp │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── sort_controllers.py │ │ │ ├── steam │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ └── SDL_steamcontroller.h │ │ │ └── windows │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ └── SDL_xinputjoystick_c.h │ │ ├── libm │ │ │ ├── e_atan2.c │ │ │ ├── e_log.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_sqrt.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── k_tan.c │ │ │ ├── math_libm.h │ │ │ ├── math_private.h │ │ │ ├── s_atan.c │ │ │ ├── s_copysign.c │ │ │ ├── s_cos.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_sin.c │ │ │ └── s_tan.c │ │ ├── loadso │ │ │ ├── dlopen │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysloadso.c │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.c │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ ├── haiku │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── nacl │ │ │ │ └── SDL_nacl_main.c │ │ │ ├── psp │ │ │ │ └── SDL_psp_main.c │ │ │ ├── windows │ │ │ │ ├── SDL_windows_main.c │ │ │ │ └── version.rc │ │ │ └── winrt │ │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ │ ├── SDL2-WinRTResources.rc │ │ │ │ └── SDL_winrt_main_NonXAML.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 │ │ │ ├── windows │ │ │ │ └── SDL_syspower.c │ │ │ └── winrt │ │ │ │ └── SDL_syspower.cpp │ │ ├── render │ │ │ ├── SDL_d3dmath.c │ │ │ ├── SDL_d3dmath.h │ │ │ ├── SDL_render.c │ │ │ ├── SDL_sysrender.h │ │ │ ├── SDL_yuv_mmx.c │ │ │ ├── SDL_yuv_mmx_c.h │ │ │ ├── SDL_yuv_sw.c │ │ │ ├── SDL_yuv_sw_c.h │ │ │ ├── direct3d │ │ │ │ └── SDL_render_d3d.c │ │ │ ├── direct3d11 │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ └── SDL_render_winrt.h │ │ │ ├── mmx.h │ │ │ ├── opengl │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ ├── SDL_render_gl.c │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ └── SDL_shaders_gl.h │ │ │ ├── opengles │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ └── SDL_render_gles.c │ │ │ ├── opengles2 │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ └── SDL_shaders_gles2.h │ │ │ ├── psp │ │ │ │ └── SDL_render_psp.c │ │ │ └── software │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ ├── SDL_blendline.c │ │ │ │ ├── SDL_blendline.h │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ ├── SDL_draw.h │ │ │ │ ├── SDL_drawline.c │ │ │ │ ├── SDL_drawline.h │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ ├── SDL_render_sw.c │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ ├── SDL_rotate.c │ │ │ │ └── SDL_rotate.h │ │ ├── stdlib │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ └── SDL_string.c │ │ ├── test │ │ │ ├── SDL_test_assert.c │ │ │ ├── SDL_test_common.c │ │ │ ├── SDL_test_compare.c │ │ │ ├── SDL_test_crc32.c │ │ │ ├── SDL_test_font.c │ │ │ ├── SDL_test_fuzzer.c │ │ │ ├── SDL_test_harness.c │ │ │ ├── SDL_test_imageBlit.c │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ ├── SDL_test_imageFace.c │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ ├── SDL_test_log.c │ │ │ ├── SDL_test_md5.c │ │ │ ├── SDL_test_memory.c │ │ │ └── SDL_test_random.c │ │ ├── thread │ │ │ ├── SDL_systhread.h │ │ │ ├── SDL_thread.c │ │ │ ├── SDL_thread_c.h │ │ │ ├── generic │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── psp │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── pthread │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── stdcpp │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ └── SDL_systhread_c.h │ │ │ └── windows │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ ├── timer │ │ │ ├── SDL_timer.c │ │ │ ├── SDL_timer_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_systimer.c │ │ │ ├── haiku │ │ │ │ └── SDL_systimer.c │ │ │ ├── psp │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── SDL_systimer.c │ │ │ └── windows │ │ │ │ └── SDL_systimer.c │ │ └── video │ │ │ ├── SDL_RLEaccel.c │ │ │ ├── SDL_RLEaccel_c.h │ │ │ ├── SDL_blit.c │ │ │ ├── SDL_blit.h │ │ │ ├── SDL_blit_0.c │ │ │ ├── SDL_blit_1.c │ │ │ ├── SDL_blit_A.c │ │ │ ├── SDL_blit_N.c │ │ │ ├── SDL_blit_auto.c │ │ │ ├── SDL_blit_auto.h │ │ │ ├── SDL_blit_copy.c │ │ │ ├── SDL_blit_copy.h │ │ │ ├── SDL_blit_slow.c │ │ │ ├── SDL_blit_slow.h │ │ │ ├── SDL_bmp.c │ │ │ ├── SDL_clipboard.c │ │ │ ├── SDL_egl.c │ │ │ ├── SDL_egl_c.h │ │ │ ├── SDL_fillrect.c │ │ │ ├── SDL_pixels.c │ │ │ ├── SDL_pixels_c.h │ │ │ ├── SDL_rect.c │ │ │ ├── SDL_rect_c.h │ │ │ ├── SDL_shape.c │ │ │ ├── SDL_shape_internals.h │ │ │ ├── SDL_stretch.c │ │ │ ├── SDL_surface.c │ │ │ ├── SDL_sysvideo.h │ │ │ ├── SDL_video.c │ │ │ ├── SDL_vulkan_internal.h │ │ │ ├── SDL_vulkan_utils.c │ │ │ ├── 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_cocoamousetap.h │ │ │ ├── SDL_cocoamousetap.m │ │ │ ├── SDL_cocoaopengl.h │ │ │ ├── SDL_cocoaopengl.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_window.c │ │ │ └── SDL_DirectFB_window.h │ │ │ ├── dummy │ │ │ ├── SDL_nullevents.c │ │ │ ├── SDL_nullevents_c.h │ │ │ ├── SDL_nullframebuffer.c │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ ├── SDL_nullvideo.c │ │ │ └── SDL_nullvideo.h │ │ │ ├── emscripten │ │ │ ├── SDL_emscriptenevents.c │ │ │ ├── SDL_emscriptenevents.h │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ ├── SDL_emscriptenmouse.c │ │ │ ├── SDL_emscriptenmouse.h │ │ │ ├── SDL_emscriptenopengles.c │ │ │ ├── SDL_emscriptenopengles.h │ │ │ ├── SDL_emscriptenvideo.c │ │ │ └── SDL_emscriptenvideo.h │ │ │ ├── haiku │ │ │ ├── SDL_BWin.h │ │ │ ├── SDL_bclipboard.cc │ │ │ ├── SDL_bclipboard.h │ │ │ ├── SDL_bevents.cc │ │ │ ├── SDL_bevents.h │ │ │ ├── SDL_bframebuffer.cc │ │ │ ├── SDL_bframebuffer.h │ │ │ ├── SDL_bkeyboard.cc │ │ │ ├── SDL_bkeyboard.h │ │ │ ├── SDL_bmodes.cc │ │ │ ├── SDL_bmodes.h │ │ │ ├── SDL_bopengl.cc │ │ │ ├── SDL_bopengl.h │ │ │ ├── SDL_bvideo.cc │ │ │ ├── SDL_bvideo.h │ │ │ ├── SDL_bwindow.cc │ │ │ └── SDL_bwindow.h │ │ │ ├── khronos │ │ │ ├── EGL │ │ │ │ ├── egl.h │ │ │ │ ├── eglext.h │ │ │ │ └── eglplatform.h │ │ │ ├── GLES2 │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ ├── KHR │ │ │ │ └── khrplatform.h │ │ │ └── vulkan │ │ │ │ ├── vk_platform.h │ │ │ │ └── vulkan.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 │ │ │ ├── mir │ │ │ ├── SDL_mirdyn.c │ │ │ ├── SDL_mirdyn.h │ │ │ ├── SDL_mirevents.c │ │ │ ├── SDL_mirevents.h │ │ │ ├── SDL_mirframebuffer.c │ │ │ ├── SDL_mirframebuffer.h │ │ │ ├── SDL_mirmouse.c │ │ │ ├── SDL_mirmouse.h │ │ │ ├── SDL_miropengl.c │ │ │ ├── SDL_miropengl.h │ │ │ ├── SDL_mirsym.h │ │ │ ├── SDL_mirvideo.c │ │ │ ├── SDL_mirvideo.h │ │ │ ├── SDL_mirvulkan.c │ │ │ ├── SDL_mirvulkan.h │ │ │ ├── SDL_mirwindow.c │ │ │ └── SDL_mirwindow.h │ │ │ ├── nacl │ │ │ ├── SDL_naclevents.c │ │ │ ├── SDL_naclevents_c.h │ │ │ ├── SDL_naclglue.c │ │ │ ├── SDL_naclopengles.c │ │ │ ├── SDL_naclopengles.h │ │ │ ├── SDL_naclvideo.c │ │ │ ├── SDL_naclvideo.h │ │ │ ├── SDL_naclwindow.c │ │ │ └── SDL_naclwindow.h │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.h │ │ │ ├── psp │ │ │ ├── SDL_pspevents.c │ │ │ ├── SDL_pspevents_c.h │ │ │ ├── SDL_pspgl.c │ │ │ ├── SDL_pspgl_c.h │ │ │ ├── SDL_pspmouse.c │ │ │ ├── SDL_pspmouse_c.h │ │ │ ├── SDL_pspvideo.c │ │ │ └── SDL_pspvideo.h │ │ │ ├── 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 │ │ │ ├── vivante │ │ │ ├── SDL_vivanteopengles.c │ │ │ ├── SDL_vivanteopengles.h │ │ │ ├── SDL_vivanteplatform.c │ │ │ ├── SDL_vivanteplatform.h │ │ │ ├── SDL_vivantevideo.c │ │ │ └── SDL_vivantevideo.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_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_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 │ ├── test │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── axis.bmp │ │ ├── button.bmp │ │ ├── checkkeys.c │ │ ├── configure │ │ ├── configure.in │ │ ├── controllermap.bmp │ │ ├── controllermap.c │ │ ├── emscripten │ │ │ └── joystick-pre.js │ │ ├── gcc-fat.sh │ │ ├── icon.bmp │ │ ├── loopwave.c │ │ ├── loopwavequeue.c │ │ ├── moose.dat │ │ ├── nacl │ │ │ ├── Makefile │ │ │ ├── background.js │ │ │ ├── common.js │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── picture.xbm │ │ ├── relative_mode.markdown │ │ ├── sample.bmp │ │ ├── sample.wav │ │ ├── shapes │ │ │ ├── p01_shape24.bmp │ │ │ ├── p01_shape32alpha.bmp │ │ │ ├── p01_shape8.bmp │ │ │ ├── p02_shape24.bmp │ │ │ ├── p02_shape32alpha.bmp │ │ │ ├── p02_shape8.bmp │ │ │ ├── p03_shape24.bmp │ │ │ ├── p03_shape8.bmp │ │ │ ├── p04_shape1.bmp │ │ │ ├── p04_shape24.bmp │ │ │ ├── p04_shape32alpha.bmp │ │ │ ├── p04_shape8.bmp │ │ │ ├── p05_shape8.bmp │ │ │ ├── p06_shape1alpha.bmp │ │ │ ├── p06_shape24.bmp │ │ │ ├── p06_shape32alpha.bmp │ │ │ ├── p06_shape8.bmp │ │ │ ├── p07_shape24.bmp │ │ │ ├── p07_shape32alpha.bmp │ │ │ ├── p07_shape8.bmp │ │ │ ├── p08_shape24.bmp │ │ │ ├── p08_shape32alpha.bmp │ │ │ ├── p08_shape8.bmp │ │ │ ├── p09_shape24.bmp │ │ │ ├── p09_shape32alpha.bmp │ │ │ ├── p09_shape8.bmp │ │ │ ├── p10_shape1.bmp │ │ │ ├── p10_shape24.bmp │ │ │ ├── p10_shape32alpha.bmp │ │ │ ├── p10_shape8.bmp │ │ │ ├── p11_shape24.bmp │ │ │ ├── p11_shape32alpha.bmp │ │ │ ├── p11_shape8.bmp │ │ │ ├── p12_shape24.bmp │ │ │ ├── p12_shape8.bmp │ │ │ ├── p13_shape24.bmp │ │ │ ├── p13_shape32alpha.bmp │ │ │ ├── p13_shape8.bmp │ │ │ ├── p14_shape24.bmp │ │ │ ├── p14_shape8.bmp │ │ │ ├── p15_shape24.bmp │ │ │ ├── p15_shape32alpha.bmp │ │ │ ├── p15_shape8.bmp │ │ │ ├── p16_shape1.bmp │ │ │ ├── p16_shape24.bmp │ │ │ ├── p16_shape8.bmp │ │ │ ├── trollface_24.bmp │ │ │ └── trollface_32alpha.bmp │ │ ├── testatomic.c │ │ ├── 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 │ │ ├── testfile.c │ │ ├── testfilesystem.c │ │ ├── testgamecontroller.c │ │ ├── testgesture.c │ │ ├── testgl2.c │ │ ├── testgles.c │ │ ├── testgles2.c │ │ ├── testhaptic.c │ │ ├── testhittesting.c │ │ ├── testhotplug.c │ │ ├── testiconv.c │ │ ├── testime.c │ │ ├── testintersections.c │ │ ├── testjoystick.c │ │ ├── testkeys.c │ │ ├── testloadso.c │ │ ├── testlock.c │ │ ├── testmessage.c │ │ ├── testmultiaudio.c │ │ ├── testnative.c │ │ ├── testnative.h │ │ ├── testnativecocoa.m │ │ ├── testnativew32.c │ │ ├── testnativex11.c │ │ ├── testoverlay2.c │ │ ├── testplatform.c │ │ ├── testpower.c │ │ ├── testqsort.c │ │ ├── testrelative.c │ │ ├── testrendercopyex.c │ │ ├── testrendertarget.c │ │ ├── testresample.c │ │ ├── testrumble.c │ │ ├── testscale.c │ │ ├── testsem.c │ │ ├── testshader.c │ │ ├── testshape.c │ │ ├── testsprite2.c │ │ ├── testspriteminimal.c │ │ ├── teststreaming.c │ │ ├── testthread.c │ │ ├── testtimer.c │ │ ├── testver.c │ │ ├── testviewport.c │ │ ├── testvulkan.c │ │ ├── testwm2.c │ │ ├── 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 ├── tclap │ ├── .gitignore │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autotools.sh │ ├── config │ │ ├── Makefile.am │ │ ├── ac_cxx_have_long_long.m4 │ │ ├── ac_cxx_have_sstream.m4 │ │ ├── ac_cxx_have_strstream.m4 │ │ ├── ac_cxx_namespaces.m4 │ │ ├── ac_cxx_warn_effective_cxx.m4 │ │ ├── bb_enable_doxygen.m4 │ │ ├── depcomp │ │ ├── install-sh │ │ ├── missing │ │ └── mkinstalldirs │ ├── docs │ │ ├── Makefile.am │ │ ├── README │ │ ├── index.html │ │ ├── manual.html │ │ ├── manual.xml │ │ └── style.css │ ├── examples │ │ ├── Makefile.am │ │ ├── test1.cpp │ │ ├── test10.cpp │ │ ├── test11.cpp │ │ ├── test12.cpp │ │ ├── test13.cpp │ │ ├── test14.cpp │ │ ├── test15.cpp │ │ ├── test16.cpp │ │ ├── test17-a.cpp │ │ ├── test17.cpp │ │ ├── test18.cpp │ │ ├── test19.cpp │ │ ├── test2.cpp │ │ ├── test20.cpp │ │ ├── test21.cpp │ │ ├── test22.cpp │ │ ├── test23.cpp │ │ ├── test3.cpp │ │ ├── test4.cpp │ │ ├── test5.cpp │ │ ├── test6.cpp │ │ ├── test7.cpp │ │ ├── test8.cpp │ │ └── test9.cpp │ ├── include │ │ ├── Makefile.am │ │ └── tclap │ │ │ ├── Arg.h │ │ │ ├── ArgException.h │ │ │ ├── ArgTraits.h │ │ │ ├── CmdLine.h │ │ │ ├── CmdLineInterface.h │ │ │ ├── CmdLineOutput.h │ │ │ ├── Constraint.h │ │ │ ├── DocBookOutput.h │ │ │ ├── HelpVisitor.h │ │ │ ├── IgnoreRestVisitor.h │ │ │ ├── Makefile.am │ │ │ ├── MultiArg.h │ │ │ ├── MultiSwitchArg.h │ │ │ ├── OptionalUnlabeledTracker.h │ │ │ ├── StandardTraits.h │ │ │ ├── StdOutput.h │ │ │ ├── SwitchArg.h │ │ │ ├── UnlabeledMultiArg.h │ │ │ ├── UnlabeledValueArg.h │ │ │ ├── ValueArg.h │ │ │ ├── ValuesConstraint.h │ │ │ ├── VersionVisitor.h │ │ │ ├── Visitor.h │ │ │ ├── XorHandler.h │ │ │ └── ZshCompletionOutput.h │ ├── msc │ │ ├── Makefile.am │ │ ├── README │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── test1.vcproj │ │ │ ├── test2.vcproj │ │ │ ├── test3.vcproj │ │ │ ├── test4.vcproj │ │ │ ├── test5.vcproj │ │ │ ├── test6.vcproj │ │ │ ├── test7.vcproj │ │ │ └── test8.vcproj │ │ ├── tclap-beta.sln │ │ └── tclap-beta.vcproj │ └── tests │ │ ├── Makefile.am │ │ ├── genOut.pl │ │ ├── runtests.sh │ │ ├── test1.out │ │ ├── test1.sh │ │ ├── test10.out │ │ ├── test10.sh │ │ ├── test11.out │ │ ├── test11.sh │ │ ├── test12.out │ │ ├── test12.sh │ │ ├── test13.out │ │ ├── test13.sh │ │ ├── test14.out │ │ ├── test14.sh │ │ ├── test15.out │ │ ├── test15.sh │ │ ├── test16.out │ │ ├── test16.sh │ │ ├── test17.out │ │ ├── test17.sh │ │ ├── test18.out │ │ ├── test18.sh │ │ ├── test19.out │ │ ├── test19.sh │ │ ├── test2.out │ │ ├── test2.sh │ │ ├── test20.out │ │ ├── test20.sh │ │ ├── test21.out │ │ ├── test21.sh │ │ ├── test22.out │ │ ├── test22.sh │ │ ├── test23.out │ │ ├── test23.sh │ │ ├── test24.out │ │ ├── test24.sh │ │ ├── test25.out │ │ ├── test25.sh │ │ ├── test26.out │ │ ├── test26.sh │ │ ├── test27.out │ │ ├── test27.sh │ │ ├── test28.out │ │ ├── test28.sh │ │ ├── test29.out │ │ ├── test29.sh │ │ ├── test3.out │ │ ├── test3.sh │ │ ├── test30.out │ │ ├── test30.sh │ │ ├── test31.out │ │ ├── test31.sh │ │ ├── test32.out │ │ ├── test32.sh │ │ ├── test33.out │ │ ├── test33.sh │ │ ├── test34.out │ │ ├── test34.sh │ │ ├── test35.out │ │ ├── test35.sh │ │ ├── test36.out │ │ ├── test36.sh │ │ ├── test37.out │ │ ├── test37.sh │ │ ├── test38.out │ │ ├── test38.sh │ │ ├── test39.out │ │ ├── test39.sh │ │ ├── test4.out │ │ ├── test4.sh │ │ ├── test40.out │ │ ├── test40.sh │ │ ├── test41.out │ │ ├── test41.sh │ │ ├── test42.out │ │ ├── test42.sh │ │ ├── test43.out │ │ ├── test43.sh │ │ ├── test44.out │ │ ├── test44.sh │ │ ├── test45.out │ │ ├── test45.sh │ │ ├── test46.out │ │ ├── test46.sh │ │ ├── test47.out │ │ ├── test47.sh │ │ ├── test48.out │ │ ├── test48.sh │ │ ├── test49.out │ │ ├── test49.sh │ │ ├── test5.out │ │ ├── test5.sh │ │ ├── test50.out │ │ ├── test50.sh │ │ ├── test51.out │ │ ├── test51.sh │ │ ├── test52.out │ │ ├── test52.sh │ │ ├── test53.out │ │ ├── test53.sh │ │ ├── test54.out │ │ ├── test54.sh │ │ ├── test55.out │ │ ├── test55.sh │ │ ├── test56.out │ │ ├── test56.sh │ │ ├── test57.out │ │ ├── test57.sh │ │ ├── test58.out │ │ ├── test58.sh │ │ ├── test59.out │ │ ├── test59.sh │ │ ├── test6.out │ │ ├── test6.sh │ │ ├── test60.out │ │ ├── test60.sh │ │ ├── test61.out │ │ ├── test61.sh │ │ ├── test62.out │ │ ├── test62.sh │ │ ├── test63.out │ │ ├── test63.sh │ │ ├── test64.out │ │ ├── test64.sh │ │ ├── test65.out │ │ ├── test65.sh │ │ ├── test66.out │ │ ├── test66.sh │ │ ├── test67.out │ │ ├── test67.sh │ │ ├── test68.out │ │ ├── test68.sh │ │ ├── test69.out │ │ ├── test69.sh │ │ ├── test7.out │ │ ├── test7.sh │ │ ├── test70.out │ │ ├── test70.sh │ │ ├── test71.out │ │ ├── test71.sh │ │ ├── test72.out │ │ ├── test72.sh │ │ ├── test73.out │ │ ├── test73.sh │ │ ├── test74.out │ │ ├── test74.sh │ │ ├── test75.out │ │ ├── test75.sh │ │ ├── test76.out │ │ ├── test76.sh │ │ ├── test77.out │ │ ├── test77.sh │ │ ├── test78.out │ │ ├── test78.sh │ │ ├── test79.out │ │ ├── test79.sh │ │ ├── test8.out │ │ ├── test8.sh │ │ ├── test80.out │ │ ├── test80.sh │ │ ├── test81.out │ │ ├── test81.sh │ │ ├── test82.out │ │ ├── test82.sh │ │ ├── test9.out │ │ ├── test9.sh │ │ └── testCheck.sh └── tfd │ ├── hello.c │ ├── hello_wchar_t.c │ ├── readme displayed below (extract from header file).txt │ ├── tinyfiledialogs.c │ ├── tinyfiledialogs.h │ ├── tinyfiledialogs_dll32.bat │ └── tinyfiledialogs_dll64.bat ├── screenshots ├── embedded.png ├── sample-light-qt.png ├── sample-qt.png └── sample.png ├── scripts ├── travis_install.sh ├── travis_script.sh └── travis_success.sh ├── src ├── buffer.cpp ├── buffer.h ├── commands.cpp ├── commands.h ├── display.cpp ├── display.h ├── editor.cpp ├── editor.h ├── filesystem.cpp ├── filesystem.h ├── gap_buffer.h ├── imgui.ini ├── imgui │ ├── console_imgui.h │ ├── display_imgui.cpp │ ├── display_imgui.h │ ├── editor_imgui.cpp │ ├── editor_imgui.h │ └── usb_hid_keys.h ├── list.cmake ├── mcommon │ ├── .gitignore │ ├── animation │ │ ├── timer.cpp │ │ └── timer.h │ ├── callback.h │ ├── file │ │ ├── archive.cpp │ │ ├── archive.h │ │ ├── path.cpp │ │ └── path.h │ ├── gsl-lite.hpp │ ├── logger.h │ ├── math │ │ └── math.h │ ├── platform.h │ ├── registrar.h │ ├── string │ │ ├── murmur_hash.cpp │ │ ├── murmur_hash.h │ │ ├── stringutils.cpp │ │ └── stringutils.h │ ├── threadpool.h │ └── threadutils.h ├── mode.cpp ├── mode.h ├── mode_search.cpp ├── mode_search.h ├── mode_standard.cpp ├── mode_standard.h ├── mode_vim.cpp ├── mode_vim.h ├── qt │ ├── zepdisplay_qt.cpp │ ├── zepdisplay_qt.h │ ├── zepwidget_qt.cpp │ └── zepwidget_qt.h ├── scroller.cpp ├── scroller.h ├── splits.cpp ├── splits.h ├── syntax.cpp ├── syntax.h ├── syntax_providers.cpp ├── syntax_providers.h ├── syntax_rainbow_brackets.cpp ├── syntax_rainbow_brackets.h ├── tab_window.cpp ├── tab_window.h ├── tests │ ├── buffer.test.cpp │ ├── gap_buffer.test.cpp │ ├── longtext.tt │ ├── mode_standard.test.cpp │ ├── mode_vim.test.cpp │ └── syntax.test.cpp ├── theme.cpp ├── theme.h ├── window.cpp ├── window.h ├── zep.h └── zep_config.h ├── test_area.txt ├── tests ├── list.cmake ├── main.cpp ├── test.lsp ├── test_empty.txt └── test_term0.txt └── zep.cfg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/docs/TODO.txt -------------------------------------------------------------------------------- /docs/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/docs/issue_template.md -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /docs/zep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/docs/zep.png -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/example_allegro5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_allegro5/README.md -------------------------------------------------------------------------------- /examples/example_allegro5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_allegro5/main.cpp -------------------------------------------------------------------------------- /examples/example_apple_metal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_apple_metal/README.md -------------------------------------------------------------------------------- /examples/example_apple_metal/Shared/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_apple_metal/Shared/main.m -------------------------------------------------------------------------------- /examples/example_apple_opengl2/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_apple_opengl2/main.mm -------------------------------------------------------------------------------- /examples/example_emscripten/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_emscripten/Makefile -------------------------------------------------------------------------------- /examples/example_emscripten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_emscripten/README.md -------------------------------------------------------------------------------- /examples/example_emscripten/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_emscripten/main.cpp -------------------------------------------------------------------------------- /examples/example_glfw_metal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_metal/Makefile -------------------------------------------------------------------------------- /examples/example_glfw_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_metal/main.mm -------------------------------------------------------------------------------- /examples/example_glfw_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_opengl2/Makefile -------------------------------------------------------------------------------- /examples/example_glfw_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_opengl2/main.cpp -------------------------------------------------------------------------------- /examples/example_glfw_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_opengl3/Makefile -------------------------------------------------------------------------------- /examples/example_glfw_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_opengl3/main.cpp -------------------------------------------------------------------------------- /examples/example_glfw_vulkan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_vulkan/CMakeLists.txt -------------------------------------------------------------------------------- /examples/example_glfw_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_vulkan/build_win32.bat -------------------------------------------------------------------------------- /examples/example_glfw_vulkan/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_vulkan/build_win64.bat -------------------------------------------------------------------------------- /examples/example_glfw_vulkan/gen_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_vulkan/gen_spv.sh -------------------------------------------------------------------------------- /examples/example_glfw_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glfw_vulkan/main.cpp -------------------------------------------------------------------------------- /examples/example_glut_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glut_opengl2/Makefile -------------------------------------------------------------------------------- /examples/example_glut_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_glut_opengl2/main.cpp -------------------------------------------------------------------------------- /examples/example_marmalade/data/app.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_marmalade/data/app.icf -------------------------------------------------------------------------------- /examples/example_marmalade/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_marmalade/main.cpp -------------------------------------------------------------------------------- /examples/example_null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_null/Makefile -------------------------------------------------------------------------------- /examples/example_null/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_null/build_win32.bat -------------------------------------------------------------------------------- /examples/example_null/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_null/main.cpp -------------------------------------------------------------------------------- /examples/example_sdl_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_directx11/main.cpp -------------------------------------------------------------------------------- /examples/example_sdl_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl2/Makefile -------------------------------------------------------------------------------- /examples/example_sdl_opengl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl2/README.md -------------------------------------------------------------------------------- /examples/example_sdl_opengl2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl2/build_win32.bat -------------------------------------------------------------------------------- /examples/example_sdl_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl2/main.cpp -------------------------------------------------------------------------------- /examples/example_sdl_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl3/Makefile -------------------------------------------------------------------------------- /examples/example_sdl_opengl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl3/README.md -------------------------------------------------------------------------------- /examples/example_sdl_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl3/build_win32.bat -------------------------------------------------------------------------------- /examples/example_sdl_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_opengl3/main.cpp -------------------------------------------------------------------------------- /examples/example_sdl_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_sdl_vulkan/main.cpp -------------------------------------------------------------------------------- /examples/example_win32_directx10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_win32_directx10/main.cpp -------------------------------------------------------------------------------- /examples/example_win32_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_win32_directx11/main.cpp -------------------------------------------------------------------------------- /examples/example_win32_directx12/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_win32_directx12/main.cpp -------------------------------------------------------------------------------- /examples/example_win32_directx9/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/example_win32_directx9/main.cpp -------------------------------------------------------------------------------- /examples/imgui_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_examples.sln -------------------------------------------------------------------------------- /examples/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /examples/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx10.h -------------------------------------------------------------------------------- /examples/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx11.h -------------------------------------------------------------------------------- /examples/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx12.h -------------------------------------------------------------------------------- /examples/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_dx9.h -------------------------------------------------------------------------------- /examples/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_glfw.h -------------------------------------------------------------------------------- /examples/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_glut.h -------------------------------------------------------------------------------- /examples/imgui_impl_marmalade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_marmalade.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_marmalade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_marmalade.h -------------------------------------------------------------------------------- /examples/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_metal.h -------------------------------------------------------------------------------- /examples/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_metal.mm -------------------------------------------------------------------------------- /examples/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /examples/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /examples/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_osx.h -------------------------------------------------------------------------------- /examples/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_osx.mm -------------------------------------------------------------------------------- /examples/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_sdl.h -------------------------------------------------------------------------------- /examples/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /examples/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /examples/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/imgui_impl_win32.h -------------------------------------------------------------------------------- /examples/libs/gl3w/GL/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/gl3w/GL/gl3w.c -------------------------------------------------------------------------------- /examples/libs/gl3w/GL/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/gl3w/GL/gl3w.h -------------------------------------------------------------------------------- /examples/libs/gl3w/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/gl3w/GL/glcorearb.h -------------------------------------------------------------------------------- /examples/libs/glfw/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/glfw/COPYING.txt -------------------------------------------------------------------------------- /examples/libs/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /examples/libs/glfw/lib-vc2010-32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/glfw/lib-vc2010-32/glfw3.lib -------------------------------------------------------------------------------- /examples/libs/glfw/lib-vc2010-64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/glfw/lib-vc2010-64/glfw3.lib -------------------------------------------------------------------------------- /examples/libs/usynergy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/usynergy/README.txt -------------------------------------------------------------------------------- /examples/libs/usynergy/uSynergy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/usynergy/uSynergy.c -------------------------------------------------------------------------------- /examples/libs/usynergy/uSynergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/examples/libs/usynergy/uSynergy.h -------------------------------------------------------------------------------- /imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imconfig.h -------------------------------------------------------------------------------- /imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui.cpp -------------------------------------------------------------------------------- /imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui.h -------------------------------------------------------------------------------- /imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_demo.cpp -------------------------------------------------------------------------------- /imgui_dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_dock.h -------------------------------------------------------------------------------- /imgui_dock.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_dock.inl -------------------------------------------------------------------------------- /imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_draw.cpp -------------------------------------------------------------------------------- /imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_internal.h -------------------------------------------------------------------------------- /imgui_orient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_orient.cpp -------------------------------------------------------------------------------- /imgui_orient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_orient.h -------------------------------------------------------------------------------- /imgui_scintilla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_scintilla.cpp -------------------------------------------------------------------------------- /imgui_scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_scintilla.h -------------------------------------------------------------------------------- /imgui_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_user.h -------------------------------------------------------------------------------- /imgui_user.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_user.inl -------------------------------------------------------------------------------- /imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imgui_widgets.cpp -------------------------------------------------------------------------------- /imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imstb_rectpack.h -------------------------------------------------------------------------------- /imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imstb_textedit.h -------------------------------------------------------------------------------- /imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/imstb_truetype.h -------------------------------------------------------------------------------- /misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/README.txt -------------------------------------------------------------------------------- /misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/cpp/README.txt -------------------------------------------------------------------------------- /misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /misc/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/README.txt -------------------------------------------------------------------------------- /misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/freetype/README.md -------------------------------------------------------------------------------- /misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /misc/natvis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/natvis/README.txt -------------------------------------------------------------------------------- /misc/natvis/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/misc/natvis/imgui.natvis -------------------------------------------------------------------------------- /src/mcommon/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/src/mcommon/threadpool.h -------------------------------------------------------------------------------- /zep/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/.clang-format -------------------------------------------------------------------------------- /zep/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /zep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/.gitignore -------------------------------------------------------------------------------- /zep/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/.travis.yml -------------------------------------------------------------------------------- /zep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/CMakeLists.txt -------------------------------------------------------------------------------- /zep/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /zep/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/CONTRIBUTING.md -------------------------------------------------------------------------------- /zep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/LICENSE -------------------------------------------------------------------------------- /zep/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/NOTES.md -------------------------------------------------------------------------------- /zep/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /zep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/README.md -------------------------------------------------------------------------------- /zep/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/TODO.md -------------------------------------------------------------------------------- /zep/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/appveyor.yml -------------------------------------------------------------------------------- /zep/cmake/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/Doxyfile.in -------------------------------------------------------------------------------- /zep/cmake/all.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/all.cmake -------------------------------------------------------------------------------- /zep/cmake/clang++.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/clang++.cmake -------------------------------------------------------------------------------- /zep/cmake/config_app.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/config_app.h.cmake -------------------------------------------------------------------------------- /zep/cmake/g++.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/g++.cmake -------------------------------------------------------------------------------- /zep/cmake/linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/linux.cmake -------------------------------------------------------------------------------- /zep/cmake/mac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/mac.cmake -------------------------------------------------------------------------------- /zep/cmake/msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/msvc.cmake -------------------------------------------------------------------------------- /zep/cmake/pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/cmake/pc.cmake -------------------------------------------------------------------------------- /zep/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/codecov.yml -------------------------------------------------------------------------------- /zep/config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/config.bat -------------------------------------------------------------------------------- /zep/config.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | source config_all.sh 4 | -------------------------------------------------------------------------------- /zep/config_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/config_all.bat -------------------------------------------------------------------------------- /zep/config_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/config_all.sh -------------------------------------------------------------------------------- /zep/config_qt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/config_qt.bat -------------------------------------------------------------------------------- /zep/demo_imgui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_imgui/main.cpp -------------------------------------------------------------------------------- /zep/demo_qt/app.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/app.exe.manifest -------------------------------------------------------------------------------- /zep/demo_qt/app.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/app.qrc -------------------------------------------------------------------------------- /zep/demo_qt/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/app.rc -------------------------------------------------------------------------------- /zep/demo_qt/common-qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/common-qt.cpp -------------------------------------------------------------------------------- /zep/demo_qt/common-qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/common-qt.h -------------------------------------------------------------------------------- /zep/demo_qt/list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/list.cmake -------------------------------------------------------------------------------- /zep/demo_qt/main-qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/main-qt.cpp -------------------------------------------------------------------------------- /zep/demo_qt/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/mainwindow.cpp -------------------------------------------------------------------------------- /zep/demo_qt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/mainwindow.h -------------------------------------------------------------------------------- /zep/demo_qt/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/mainwindow.ui -------------------------------------------------------------------------------- /zep/demo_qt/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/qml.qrc -------------------------------------------------------------------------------- /zep/demo_qt/res/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/res/AppIcon.icns -------------------------------------------------------------------------------- /zep/demo_qt/res/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/res/AppIcon.ico -------------------------------------------------------------------------------- /zep/demo_qt/res/AppIcon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/res/AppIcon128.png -------------------------------------------------------------------------------- /zep/demo_qt/res/AppIcon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/res/AppIcon32.png -------------------------------------------------------------------------------- /zep/demo_qt/res/screwdriver.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/res/screwdriver.ico -------------------------------------------------------------------------------- /zep/demo_qt/res/textured-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/res/textured-paper.png -------------------------------------------------------------------------------- /zep/demo_qt/res/white-sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/res/white-sand.png -------------------------------------------------------------------------------- /zep/demo_qt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/demo_qt/resource.h -------------------------------------------------------------------------------- /zep/deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/deploy.bat -------------------------------------------------------------------------------- /zep/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/imgui.ini -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/FileWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/FileWatcher.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/FileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/FileWatcher.h -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/FileWatcherImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/FileWatcherImpl.h -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/FileWatcherLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/FileWatcherLinux.h -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/FileWatcherOSX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/FileWatcherOSX.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/FileWatcherOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/FileWatcherOSX.h -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/FileWatcherWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/FileWatcherWin32.h -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/License.txt -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/SimpleDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/SimpleDemo.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/FileWatcher/watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/FileWatcher/watcher.h -------------------------------------------------------------------------------- /zep/m3rdparty/cmake/config_shared.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/cmake/config_shared.h.cmake -------------------------------------------------------------------------------- /zep/m3rdparty/cmake/copy_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/cmake/copy_files.cmake -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/.gitignore -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/.travis.yml -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/README.md -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/appveyor.yml -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googlemock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/googlemock/CHANGES -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/googlemock/LICENSE -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googletest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/googletest/CHANGES -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/googletest/LICENSE -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zep/m3rdparty/googletest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/googletest/travis.sh -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/.editorconfig -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/.travis.yml -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/LICENSE.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/docs/README.md -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/docs/TODO.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/docs/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/docs/issue_template.md -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/examples/.gitignore -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/examples/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imconfig.h -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imgui.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imgui.h -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imgui_internal.h -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/cpp/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/fonts/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/freetype/README.md -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/natvis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/natvis/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/imgui/misc/natvis/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/imgui/misc/natvis/imgui.natvis -------------------------------------------------------------------------------- /zep/m3rdparty/list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/list.cmake -------------------------------------------------------------------------------- /zep/m3rdparty/m3rdparty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/m3rdparty.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/.hgignore -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/.hgtags -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Android.mk -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/BUGS.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/CMakeLists.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/COPYING.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/CREDITS.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/INSTALL.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Makefile.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Makefile.minimal -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Makefile.pandora -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Makefile.psp -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Makefile.wiz -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/README-SDL.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/SDL2.spec -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/SDL2.spec.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/SDL2Config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/SDL2Targets.cmake") 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/TODO.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/VisualC.html -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/VisualC/SDL.sln -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/VisualC/SDL/SDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/VisualC/SDL/SDL.vcxproj -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/VisualC/SDL_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/VisualC/SDL_VS2008.sln -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/VisualC/clean.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/WhatsNew.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Xcode-iOS/Demos/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Xcode-iOS/Demos/Icon.png -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Xcode-iOS/Demos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Xcode-iOS/Demos/Info.plist -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Xcode-iOS/Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Xcode-iOS/Test/Info.plist -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Xcode-iOS/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Xcode-iOS/Test/README -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/Xcode/XcodeDocSet/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/Xcode/XcodeDocSet/Doxyfile -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/acinclude/alsa.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/acinclude/esd.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/acinclude/libtool.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/android-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/android-project/build.xml -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/autogen.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/build-scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/build-scripts/config.guess -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/build-scripts/config.sub -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/build-scripts/g++-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/build-scripts/g++-fat.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/build-scripts/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/build-scripts/gcc-fat.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/build-scripts/install-sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/cmake/macros.cmake -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/configure -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/configure.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/debian/changelog -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/debian/control -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/debian/copyright -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/debian/docs -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/libsdl2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/debian/libsdl2.install -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/debian/rules -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/sdl2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/debian/sdl2-config.1 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-android.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-cmake.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-directfb.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-dynapi.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-gesture.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-hg.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-ios.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-linux.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-macosx.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-nacl.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-pandora.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-porting.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-psp.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-touch.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-wince.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-windows.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README-winrt.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/README.md -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/docs/doxyfile -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_assert.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_atomic.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_audio.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_bits.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_blendmode.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_clipboard.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_config.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_config.h.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_copying.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_egl.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_endian.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_error.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_events.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_gesture.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_haptic.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_hints.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_joystick.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_keyboard.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_keycode.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_loadso.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_log.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_main.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_mouse.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_mutex.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_name.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_opengl.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_opengles.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_opengles2.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_pixels.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_platform.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_power.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_quit.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_rect.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_render.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_revision.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_rwops.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_scancode.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_shape.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_stdinc.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_surface.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_system.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_syswm.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_test.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_test_font.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_test_log.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_test_md5.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_thread.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_timer.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_touch.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_types.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_version.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_video.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/SDL_vulkan.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/begin_code.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/include/close_code.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/premake/README-ios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/premake/README-ios.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/premake/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/premake/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/premake/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/premake/changelog -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/premake/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/premake/premake4.lua -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/sdl2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/sdl2-config.cmake.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/sdl2-config.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/sdl2.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/sdl2.pc.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_assert.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_assert_c.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_dataqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_dataqueue.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_dataqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_dataqueue.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_error.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_error_c.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_hints.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_internal.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/SDL_log.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/dynapi/gendynapi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/dynapi/gendynapi.pl -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/events/SDL_events.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/events/SDL_quit.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/events/SDL_touch.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/e_atan2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/e_log.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/e_pow.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/k_cos.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/k_sin.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/k_tan.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/math_libm.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/math_private.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_atan.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_copysign.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_cos.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_fabs.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_floor.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_sin.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/libm/s_tan.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/power/SDL_power.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/render/SDL_render.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/render/mmx.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/test/SDL_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/test/SDL_test_log.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/test/SDL_test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/test/SDL_test_md5.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_blit.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_blit.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_egl.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_rect.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_shape.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_surface.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/SDL_video.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/qnx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/qnx/gl.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/qnx/sdl_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/qnx/sdl_qnx.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/qnx/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/qnx/video.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/src/video/x11/edid.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/COPYING -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/Makefile.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/README -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/acinclude.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/aclocal.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/autogen.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/axis.bmp -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/button.bmp -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/checkkeys.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/configure -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/configure.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/controllermap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/controllermap.bmp -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/controllermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/controllermap.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/gcc-fat.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/icon.bmp -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/loopwave.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/loopwavequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/loopwavequeue.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/moose.dat -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/nacl/Makefile -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/nacl/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/nacl/background.js -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/nacl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/nacl/common.js -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/nacl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/nacl/index.html -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/nacl/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/nacl/manifest.json -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/picture.xbm -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/sample.bmp -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/sample.wav -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testatomic.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testaudiocapture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testaudiocapture.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testaudiohotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testaudiohotplug.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testaudioinfo.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testautomation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testautomation.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testbounds.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testcustomcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testcustomcursor.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testdisplayinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testdisplayinfo.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testdraw2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testdropfile.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testerror.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testfile.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testfilesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testfilesystem.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testgesture.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testgl2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testgles.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testgles2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testhaptic.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testhittesting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testhittesting.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testhotplug.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testiconv.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testime.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testjoystick.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testkeys.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testloadso.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testlock.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testmessage.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testmultiaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testmultiaudio.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testnative.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testnative.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testnativecocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testnativecocoa.m -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testnativew32.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testnativex11.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testoverlay2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testplatform.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testpower.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testqsort.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testrelative.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testrendercopyex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testrendercopyex.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testrendertarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testrendertarget.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testresample.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testrumble.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testscale.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testsem.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testshader.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testshape.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testsprite2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/teststreaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/teststreaming.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testthread.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testtimer.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testver.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testviewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testviewport.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testvulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testvulkan.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/testwm2.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/torturethread.c -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/test/utf8.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/COPYING.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/Makefile.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/README.txt -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/acinclude.m4 -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/autogen.sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/compile: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/compile -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/config.h -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/config.h.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions: -------------------------------------------------------------------------------- 1 | 00:00:02 QUIT -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/configure -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/sdl/visualtest/configure.in -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/depcomp: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/depcomp -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/install-sh -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/missing -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/sdl/visualtest/unittest/testquit.actions: -------------------------------------------------------------------------------- 1 | 00:00:05 QUIT -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/.gitignore -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/AUTHORS -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/COPYING -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/ChangeLog -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/INSTALL -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/Makefile.am -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/NEWS -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/README -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/autotools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/autotools.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/config/Makefile.am -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/config/depcomp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/config/install-sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/config/missing -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/config/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/config/mkinstalldirs -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/docs/Makefile.am -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/docs/README -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/docs/index.html -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/docs/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/docs/manual.html -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/docs/manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/docs/manual.xml -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/docs/style.css -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/Makefile.am -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test1.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test10.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test11.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test12.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test13.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test14.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test15.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test16.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test17-a.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test17.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { } 4 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test18.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test19.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test2.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test20.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test21.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test22.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test23.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test3.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test4.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test5.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test6.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test7.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test8.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/examples/test9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/examples/test9.cpp -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = tclap 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/include/tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/include/tclap/Arg.h -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/msc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/msc/Makefile.am -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/msc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/msc/README -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/msc/tclap-beta.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/msc/tclap-beta.sln -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/msc/tclap-beta.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/msc/tclap-beta.vcproj -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/Makefile.am -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/genOut.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/genOut.pl -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/runtests.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test1.out: -------------------------------------------------------------------------------- 1 | My name (spelled backwards) is: ekim 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test1.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test10.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test10.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test11.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test11.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test11.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test12.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test12.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test12.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test13.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test13.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test13.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test14.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test14.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test14.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test15.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test15.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test15.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test16.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test16.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test17.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test17.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test17.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test17.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test18.out: -------------------------------------------------------------------------------- 1 | my failure message: 2 | -s -- Couldn't find match for argument 3 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test18.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test19.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test19.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test19.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test2.out: -------------------------------------------------------------------------------- 1 | My name is: mike 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test2.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test20.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test20.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test20.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test21.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test21.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test21.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test21.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test22.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test22.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test22.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test22.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test23.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test23.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test23.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test23.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test24.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test24.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test24.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test24.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test25.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test25.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test25.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test25.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test26.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test26.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test26.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test26.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test27.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test27.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test27.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test28.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test28.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test28.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test28.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test29.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test29.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test29.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test29.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test3.out: -------------------------------------------------------------------------------- 1 | My name (spelled backwards) is: ekim 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test3.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test30.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test30.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test30.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test30.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test31.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test31.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test31.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test31.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test32.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test32.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test32.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test33.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test33.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test33.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test33.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test34.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test34.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test34.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test35.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test35.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test35.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test35.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test36.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test36.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test36.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test36.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test37.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test37.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test37.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test37.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test38.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test38.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test38.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test38.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test39.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test39.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test39.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test39.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test4.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test4.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test40.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test40.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test40.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test40.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test41.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test41.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test41.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test41.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test42.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test42.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test42.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test42.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test43.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test43.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test43.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test43.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test44.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test44.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test44.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test44.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test45.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test45.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test45.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test45.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test46.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test46.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test46.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test46.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test47.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test47.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test47.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test47.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test48.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test48.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test48.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test48.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test49.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test49.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test49.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test5.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test5.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test50.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test50.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test50.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test51.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test51.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test51.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test51.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test52.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test52.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test52.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test52.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test53.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test53.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test53.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test53.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test54.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test54.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test54.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test54.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test55.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test55.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test55.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test55.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test56.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test56.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test56.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test57.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test57.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test57.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test57.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test58.out: -------------------------------------------------------------------------------- 1 | FORWARD 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test58.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test58.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test59.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test59.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test59.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test59.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test6.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test6.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test60.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test60.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test60.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test60.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test61.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test61.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test61.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test61.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test62.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test62.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test62.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test62.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test63.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test63.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test63.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test63.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test64.out: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test64.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test65.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test65.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test65.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test65.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test66.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test66.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test66.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test66.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test67.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test67.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test67.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test67.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test68.out: -------------------------------------------------------------------------------- 1 | module 2 | MultiSwtichArg was found 0 times. 3 | done... 4 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test68.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test69.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test69.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test69.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test69.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test7.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test7.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test7.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test70.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test70.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test70.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test70.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test71.out: -------------------------------------------------------------------------------- 1 | found int: 10 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test71.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test71.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test72.out: -------------------------------------------------------------------------------- 1 | found int: 10 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test72.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test72.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test73.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test73.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test73.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test73.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test74.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test74.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test74.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test74.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test75.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test75.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test75.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test75.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test76.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test76.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test76.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test76.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test77.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test77.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test77.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test77.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test78.out: -------------------------------------------------------------------------------- 1 | My name (spelled backwards) is: ekim 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test78.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test78.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test79.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test79.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test79.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test79.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test8.out: -------------------------------------------------------------------------------- 1 | 2 | ../examples/test2 version: 0.99 3 | 4 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test8.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test80.out: -------------------------------------------------------------------------------- 1 | My name is: mike 2 | -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test80.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test80.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test81.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test81.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test81.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test81.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test82.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test82.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test82.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test82.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test9.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test9.out -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/test9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/test9.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tclap/tests/testCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tclap/tests/testCheck.sh -------------------------------------------------------------------------------- /zep/m3rdparty/tfd/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tfd/hello.c -------------------------------------------------------------------------------- /zep/m3rdparty/tfd/hello_wchar_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tfd/hello_wchar_t.c -------------------------------------------------------------------------------- /zep/m3rdparty/tfd/tinyfiledialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tfd/tinyfiledialogs.c -------------------------------------------------------------------------------- /zep/m3rdparty/tfd/tinyfiledialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/m3rdparty/tfd/tinyfiledialogs.h -------------------------------------------------------------------------------- /zep/screenshots/embedded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/screenshots/embedded.png -------------------------------------------------------------------------------- /zep/screenshots/sample-light-qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/screenshots/sample-light-qt.png -------------------------------------------------------------------------------- /zep/screenshots/sample-qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/screenshots/sample-qt.png -------------------------------------------------------------------------------- /zep/screenshots/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/screenshots/sample.png -------------------------------------------------------------------------------- /zep/scripts/travis_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/scripts/travis_install.sh -------------------------------------------------------------------------------- /zep/scripts/travis_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/scripts/travis_script.sh -------------------------------------------------------------------------------- /zep/scripts/travis_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/scripts/travis_success.sh -------------------------------------------------------------------------------- /zep/src/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/buffer.cpp -------------------------------------------------------------------------------- /zep/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/buffer.h -------------------------------------------------------------------------------- /zep/src/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/commands.cpp -------------------------------------------------------------------------------- /zep/src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/commands.h -------------------------------------------------------------------------------- /zep/src/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/display.cpp -------------------------------------------------------------------------------- /zep/src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/display.h -------------------------------------------------------------------------------- /zep/src/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/editor.cpp -------------------------------------------------------------------------------- /zep/src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/editor.h -------------------------------------------------------------------------------- /zep/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/filesystem.cpp -------------------------------------------------------------------------------- /zep/src/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/filesystem.h -------------------------------------------------------------------------------- /zep/src/gap_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/gap_buffer.h -------------------------------------------------------------------------------- /zep/src/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/imgui.ini -------------------------------------------------------------------------------- /zep/src/imgui/console_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/imgui/console_imgui.h -------------------------------------------------------------------------------- /zep/src/imgui/display_imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/imgui/display_imgui.cpp -------------------------------------------------------------------------------- /zep/src/imgui/display_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/imgui/display_imgui.h -------------------------------------------------------------------------------- /zep/src/imgui/editor_imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/imgui/editor_imgui.cpp -------------------------------------------------------------------------------- /zep/src/imgui/editor_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/imgui/editor_imgui.h -------------------------------------------------------------------------------- /zep/src/imgui/usb_hid_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/imgui/usb_hid_keys.h -------------------------------------------------------------------------------- /zep/src/list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/list.cmake -------------------------------------------------------------------------------- /zep/src/mcommon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/.gitignore -------------------------------------------------------------------------------- /zep/src/mcommon/animation/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/animation/timer.cpp -------------------------------------------------------------------------------- /zep/src/mcommon/animation/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/animation/timer.h -------------------------------------------------------------------------------- /zep/src/mcommon/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/callback.h -------------------------------------------------------------------------------- /zep/src/mcommon/file/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/file/archive.cpp -------------------------------------------------------------------------------- /zep/src/mcommon/file/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/file/archive.h -------------------------------------------------------------------------------- /zep/src/mcommon/file/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/file/path.cpp -------------------------------------------------------------------------------- /zep/src/mcommon/file/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/file/path.h -------------------------------------------------------------------------------- /zep/src/mcommon/gsl-lite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/gsl-lite.hpp -------------------------------------------------------------------------------- /zep/src/mcommon/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/logger.h -------------------------------------------------------------------------------- /zep/src/mcommon/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/math/math.h -------------------------------------------------------------------------------- /zep/src/mcommon/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/platform.h -------------------------------------------------------------------------------- /zep/src/mcommon/registrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/registrar.h -------------------------------------------------------------------------------- /zep/src/mcommon/string/murmur_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/string/murmur_hash.cpp -------------------------------------------------------------------------------- /zep/src/mcommon/string/murmur_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/string/murmur_hash.h -------------------------------------------------------------------------------- /zep/src/mcommon/string/stringutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/string/stringutils.cpp -------------------------------------------------------------------------------- /zep/src/mcommon/string/stringutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/string/stringutils.h -------------------------------------------------------------------------------- /zep/src/mcommon/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/threadpool.h -------------------------------------------------------------------------------- /zep/src/mcommon/threadutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mcommon/threadutils.h -------------------------------------------------------------------------------- /zep/src/mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode.cpp -------------------------------------------------------------------------------- /zep/src/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode.h -------------------------------------------------------------------------------- /zep/src/mode_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode_search.cpp -------------------------------------------------------------------------------- /zep/src/mode_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode_search.h -------------------------------------------------------------------------------- /zep/src/mode_standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode_standard.cpp -------------------------------------------------------------------------------- /zep/src/mode_standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode_standard.h -------------------------------------------------------------------------------- /zep/src/mode_vim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode_vim.cpp -------------------------------------------------------------------------------- /zep/src/mode_vim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/mode_vim.h -------------------------------------------------------------------------------- /zep/src/qt/zepdisplay_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/qt/zepdisplay_qt.cpp -------------------------------------------------------------------------------- /zep/src/qt/zepdisplay_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/qt/zepdisplay_qt.h -------------------------------------------------------------------------------- /zep/src/qt/zepwidget_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/qt/zepwidget_qt.cpp -------------------------------------------------------------------------------- /zep/src/qt/zepwidget_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/qt/zepwidget_qt.h -------------------------------------------------------------------------------- /zep/src/scroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/scroller.cpp -------------------------------------------------------------------------------- /zep/src/scroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/scroller.h -------------------------------------------------------------------------------- /zep/src/splits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/splits.cpp -------------------------------------------------------------------------------- /zep/src/splits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/splits.h -------------------------------------------------------------------------------- /zep/src/syntax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/syntax.cpp -------------------------------------------------------------------------------- /zep/src/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/syntax.h -------------------------------------------------------------------------------- /zep/src/syntax_providers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/syntax_providers.cpp -------------------------------------------------------------------------------- /zep/src/syntax_providers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/syntax_providers.h -------------------------------------------------------------------------------- /zep/src/syntax_rainbow_brackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/syntax_rainbow_brackets.cpp -------------------------------------------------------------------------------- /zep/src/syntax_rainbow_brackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/syntax_rainbow_brackets.h -------------------------------------------------------------------------------- /zep/src/tab_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tab_window.cpp -------------------------------------------------------------------------------- /zep/src/tab_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tab_window.h -------------------------------------------------------------------------------- /zep/src/tests/buffer.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tests/buffer.test.cpp -------------------------------------------------------------------------------- /zep/src/tests/gap_buffer.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tests/gap_buffer.test.cpp -------------------------------------------------------------------------------- /zep/src/tests/longtext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tests/longtext.tt -------------------------------------------------------------------------------- /zep/src/tests/mode_standard.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tests/mode_standard.test.cpp -------------------------------------------------------------------------------- /zep/src/tests/mode_vim.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tests/mode_vim.test.cpp -------------------------------------------------------------------------------- /zep/src/tests/syntax.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/tests/syntax.test.cpp -------------------------------------------------------------------------------- /zep/src/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/theme.cpp -------------------------------------------------------------------------------- /zep/src/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/theme.h -------------------------------------------------------------------------------- /zep/src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/window.cpp -------------------------------------------------------------------------------- /zep/src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/window.h -------------------------------------------------------------------------------- /zep/src/zep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/zep.h -------------------------------------------------------------------------------- /zep/src/zep_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/src/zep_config.h -------------------------------------------------------------------------------- /zep/test_area.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/test_area.txt -------------------------------------------------------------------------------- /zep/tests/list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/tests/list.cmake -------------------------------------------------------------------------------- /zep/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/tests/main.cpp -------------------------------------------------------------------------------- /zep/tests/test.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/tests/test.lsp -------------------------------------------------------------------------------- /zep/tests/test_empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zep/tests/test_term0.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /zep/zep.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaughan/imgui/HEAD/zep/zep.cfg --------------------------------------------------------------------------------