├── .clang-format ├── .dir-locals.el ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── android.yml │ ├── cmake.yml │ ├── ios.yml │ ├── macos.yml │ ├── wasm.yml │ └── windows.yml ├── .gitignore ├── .idea ├── .name ├── binocle-c.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── editor.xml ├── fileTemplates │ └── includes │ │ └── C File Header.h ├── misc.xml ├── modules.xml └── vcs.xml ├── .readthedocs.yaml ├── .travis.yml ├── CMakeLists.txt ├── CMakeOptions.txt ├── LICENSE ├── README.md ├── assets ├── 2doutline.frag ├── 2doutline.vert ├── 8bit.ogg ├── DefaultBMFont.fnt ├── DefaultBMFont.png ├── Jump.wav ├── MainScene.dt ├── bg1-256-normal.png ├── bg1-256.png ├── bloom.frag ├── bloom2.frag ├── blue-64.png ├── cloud-256.png ├── dof.frag ├── dof.vert ├── enemy.png ├── font.fnt ├── font.png ├── font2.fnt ├── font2.png ├── friend.png ├── fxaa.frag ├── green-16.png ├── grey-16.png ├── heart.png ├── hg_sdf.glsl ├── index.html ├── main.lua ├── main.wren ├── maps │ └── example.ldtk ├── metal │ ├── default-fs.metal │ ├── default-metal-iphoneos.h │ ├── default-metal-macosx.h │ ├── default-vs.metal │ ├── screen-fs.metal │ ├── screen-metal-iphoneos.h │ ├── screen-metal-macosx.h │ ├── screen-vs.metal │ └── shader-compile.py ├── minecraftia.fnt ├── minecraftia.png ├── mobdebug.lua ├── outline.frag ├── outline.vert ├── pack.atlas ├── pack.png ├── player.png ├── primitives.frag ├── profiler.lua ├── sansation.ttf ├── shaders │ ├── dst │ │ ├── gl33 │ │ │ ├── default.glsl_default_glsl410_fs.glsl │ │ │ ├── default.glsl_default_glsl410_vs.glsl │ │ │ ├── flat.glsl_flat_glsl410_fs.glsl │ │ │ ├── flat.glsl_flat_glsl410_vs.glsl │ │ │ ├── screen.glsl_default_glsl410_fs.glsl │ │ │ └── screen.glsl_default_glsl410_vs.glsl │ │ ├── gles │ │ │ ├── default.glsl_default_glsl300es_fs.glsl │ │ │ ├── default.glsl_default_glsl300es_vs.glsl │ │ │ ├── flat.glsl_flat_glsl300es_fs.glsl │ │ │ ├── flat.glsl_flat_glsl300es_vs.glsl │ │ │ ├── screen.glsl_default_glsl300es_fs.glsl │ │ │ └── screen.glsl_default_glsl300es_vs.glsl │ │ ├── hlsl │ │ │ ├── default.glsl_default_hlsl4_fs.hlsl │ │ │ ├── default.glsl_default_hlsl4_vs.hlsl │ │ │ ├── flat.glsl_flat_hlsl4_fs.hlsl │ │ │ ├── flat.glsl_flat_hlsl4_vs.hlsl │ │ │ ├── screen.glsl_default_hlsl4_fs.hlsl │ │ │ └── screen.glsl_default_hlsl4_vs.hlsl │ │ ├── metal-ios │ │ │ ├── default.glsl_default_metal_ios_fs.metal │ │ │ ├── default.glsl_default_metal_ios_vs.metal │ │ │ ├── flat.glsl_flat_metal_ios_fs.metal │ │ │ ├── flat.glsl_flat_metal_ios_vs.metal │ │ │ ├── screen.glsl_default_metal_ios_fs.metal │ │ │ └── screen.glsl_default_metal_ios_vs.metal │ │ └── metal-macos │ │ │ ├── default.glsl_default_metal_macos_fs.metal │ │ │ ├── default.glsl_default_metal_macos_vs.metal │ │ │ ├── flat.glsl_flat_metal_macos_fs.metal │ │ │ ├── flat.glsl_flat_metal_macos_vs.metal │ │ │ ├── screen.glsl_default_metal_macos_fs.metal │ │ │ └── screen.glsl_default_metal_macos_vs.metal │ └── src │ │ ├── default.glsl │ │ ├── flat.glsl │ │ └── screen.glsl ├── sheets │ ├── entities.ase │ ├── entities.json │ ├── entities.png │ ├── tilemap-backgrounds.png │ ├── tilemap-characters.png │ └── tilemap.png ├── test.frag ├── test.lua ├── test.vert ├── test2.frag ├── test_ffi.lua ├── test_profiler.lua ├── test_simple.lua ├── test_simple2.lua ├── testatlas.json ├── testatlas.png ├── testatlas.tps ├── testlibgdx.png ├── testlibgdx.tps ├── testlibgdx.txt ├── tilemap.tmx ├── tileset_forTiled.png ├── tileset_forTiled.svg ├── tileset_forTiled.tsx └── wabbit_alpha.png ├── cmake ├── BinocleAndroid.cmake ├── BinocleDocs.cmake ├── BinocleIOS.cmake ├── BinocleMac.cmake ├── BinocleUtils.cmake ├── BinocleWatchOS.cmake ├── BinocleWeb.cmake ├── BinocleWindows.cmake ├── FindEGL.cmake ├── FindFLAC.cmake ├── FindFreetype.cmake ├── FindGLES.cmake ├── FindSFML.cmake ├── FindSphinx.cmake ├── FindUDev.cmake ├── FindVorbis.cmake ├── FindXCB.cmake ├── android-legacy.toolchain.cmake ├── android.toolchain.cmake └── emscripten.toolchain.cmake ├── docs ├── Doxyfile.in ├── _static │ └── .donotremove ├── api │ ├── app.rst │ ├── atlas.rst │ ├── audio.rst │ ├── bezier.rst │ ├── bitmapfont.rst │ ├── blend.rst │ ├── camera.rst │ ├── collision.rst │ ├── color.rst │ ├── easing.rst │ ├── ecs.rst │ ├── fs.rst │ ├── game.rst │ ├── gd.rst │ ├── image.rst │ ├── input.rst │ ├── log.rst │ ├── lua.rst │ ├── material.rst │ ├── math.rst │ ├── platform.rst │ ├── render_state.rst │ ├── sdl.rst │ ├── shader.rst │ ├── sprite.rst │ ├── subtexture.rst │ ├── texture.rst │ ├── timer.rst │ ├── viewport_adapter.rst │ ├── vpct.rst │ └── window.rst ├── apiref.rst ├── build.rst ├── conf.py ├── features.rst ├── index.rst ├── install.rst ├── make.bat └── requirements.txt ├── example ├── CMakeLists.txt ├── cLDtk.c ├── cLDtk.h ├── constants.h ├── gameplay │ ├── CMakeLists.txt │ ├── my_script.c │ └── my_script.h ├── main.c ├── my_game.c ├── my_game.h ├── physics.c └── physics.h ├── images ├── binocle-logo-full.png ├── binocle-logo-white-bg.png └── screenshots │ ├── binocle-demomaker-001.png │ ├── ld43-binocle-cover.png │ └── ld50-shadow-crash.gif ├── platform ├── android │ └── android-project │ │ ├── .gitignore │ │ ├── .idea │ │ ├── compiler.xml │ │ ├── deploymentTargetDropDown.xml │ │ ├── encodings.xml │ │ ├── jarRepositories.xml │ │ └── misc.xml │ │ ├── .java-version │ │ ├── app │ │ ├── build.gradle │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── src │ │ │ │ ├── Android.mk │ │ │ │ └── src │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── java │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── HIDDevice.java │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ └── SDLControllerManager.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── emscripten │ └── index.html ├── ios │ └── Info.plist └── macosx │ ├── cdogs-icon.icns │ ├── dmg_bg.png │ └── entitlements.plist ├── src ├── CMakeLists.txt ├── binocle │ ├── CMakeLists.txt │ └── core │ │ ├── PlayerPrefs.hpp │ │ ├── PlayerPrefs.mm │ │ ├── backend │ │ ├── CMakeLists.txt │ │ ├── binocle_blend.c │ │ ├── binocle_blend.h │ │ ├── binocle_color.c │ │ ├── binocle_color.h │ │ ├── binocle_material.c │ │ ├── binocle_material.h │ │ ├── binocle_vpct.c │ │ └── binocle_vpct.h │ │ ├── binocle.c │ │ ├── binocle_app.c │ │ ├── binocle_app.h │ │ ├── binocle_app_wrap.c │ │ ├── binocle_app_wrap.h │ │ ├── binocle_array.c │ │ ├── binocle_array.h │ │ ├── binocle_asset.c │ │ ├── binocle_asset.h │ │ ├── binocle_atlas.c │ │ ├── binocle_atlas.h │ │ ├── binocle_audio.c │ │ ├── binocle_audio.h │ │ ├── binocle_audio_wrap.c │ │ ├── binocle_audio_wrap.h │ │ ├── binocle_bezier.c │ │ ├── binocle_bezier.h │ │ ├── binocle_bitmapfont.c │ │ ├── binocle_bitmapfont.h │ │ ├── binocle_bitmapfont_wrap.c │ │ ├── binocle_bitmapfont_wrap.h │ │ ├── binocle_camera.c │ │ ├── binocle_camera.h │ │ ├── binocle_camera_wrap.c │ │ ├── binocle_camera_wrap.h │ │ ├── binocle_collision.c │ │ ├── binocle_collision.h │ │ ├── binocle_color_wrap.c │ │ ├── binocle_color_wrap.h │ │ ├── binocle_easing.c │ │ ├── binocle_easing.h │ │ ├── binocle_ecs.c │ │ ├── binocle_ecs.h │ │ ├── binocle_fs.c │ │ ├── binocle_fs.h │ │ ├── binocle_fs_wrap.c │ │ ├── binocle_fs_wrap.h │ │ ├── binocle_game.c │ │ ├── binocle_game.h │ │ ├── binocle_gd.c │ │ ├── binocle_gd.h │ │ ├── binocle_gd_wrap.c │ │ ├── binocle_gd_wrap.h │ │ ├── binocle_http.c │ │ ├── binocle_http.h │ │ ├── binocle_http_wrap.c │ │ ├── binocle_http_wrap.h │ │ ├── binocle_image.c │ │ ├── binocle_image.h │ │ ├── binocle_image_wrap.c │ │ ├── binocle_image_wrap.h │ │ ├── binocle_input.c │ │ ├── binocle_input.h │ │ ├── binocle_input_wrap.c │ │ ├── binocle_input_wrap.h │ │ ├── binocle_log.c │ │ ├── binocle_log.h │ │ ├── binocle_log_wrap.c │ │ ├── binocle_log_wrap.h │ │ ├── binocle_lua.c │ │ ├── binocle_lua.h │ │ ├── binocle_material_wrap.c │ │ ├── binocle_material_wrap.h │ │ ├── binocle_math.h │ │ ├── binocle_memory.c │ │ ├── binocle_memory.h │ │ ├── binocle_miniaudio.c │ │ ├── binocle_model.c │ │ ├── binocle_model.h │ │ ├── binocle_platform.h │ │ ├── binocle_pool.c │ │ ├── binocle_pool.h │ │ ├── binocle_render_state.c │ │ ├── binocle_render_state.h │ │ ├── binocle_sdl.c │ │ ├── binocle_sdl.h │ │ ├── binocle_sdl_wrap.c │ │ ├── binocle_sdl_wrap.h │ │ ├── binocle_sokol.c │ │ ├── binocle_sokol.h │ │ ├── binocle_sokol.m │ │ ├── binocle_sprite.c │ │ ├── binocle_sprite.h │ │ ├── binocle_sprite_wrap.c │ │ ├── binocle_sprite_wrap.h │ │ ├── binocle_subtexture.c │ │ ├── binocle_subtexture.h │ │ ├── binocle_subtexture_wrap.c │ │ ├── binocle_subtexture_wrap.h │ │ ├── binocle_texture_wrap.c │ │ ├── binocle_texture_wrap.h │ │ ├── binocle_timer.c │ │ ├── binocle_timer.h │ │ ├── binocle_ttfont.c │ │ ├── binocle_ttfont.h │ │ ├── binocle_ttfont_wrap.c │ │ ├── binocle_ttfont_wrap.h │ │ ├── binocle_viewport_adapter.c │ │ ├── binocle_viewport_adapter.h │ │ ├── binocle_viewport_adapter_wrap.c │ │ ├── binocle_viewport_adapter_wrap.h │ │ ├── binocle_window.c │ │ ├── binocle_window.h │ │ ├── binocle_window_wrap.c │ │ └── binocle_window_wrap.h ├── deps │ ├── CMakeLists.txt │ ├── chipmunk │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── chipmunk │ │ │ │ ├── chipmunk.h │ │ │ │ ├── chipmunk_ffi.h │ │ │ │ ├── chipmunk_private.h │ │ │ │ ├── chipmunk_structs.h │ │ │ │ ├── chipmunk_types.h │ │ │ │ ├── chipmunk_unsafe.h │ │ │ │ ├── cpArbiter.h │ │ │ │ ├── cpBB.h │ │ │ │ ├── cpBody.h │ │ │ │ ├── cpConstraint.h │ │ │ │ ├── cpDampedRotarySpring.h │ │ │ │ ├── cpDampedSpring.h │ │ │ │ ├── cpGearJoint.h │ │ │ │ ├── cpGrooveJoint.h │ │ │ │ ├── cpHastySpace.h │ │ │ │ ├── cpMarch.h │ │ │ │ ├── cpPinJoint.h │ │ │ │ ├── cpPivotJoint.h │ │ │ │ ├── cpPolyShape.h │ │ │ │ ├── cpPolyline.h │ │ │ │ ├── cpRatchetJoint.h │ │ │ │ ├── cpRobust.h │ │ │ │ ├── cpRotaryLimitJoint.h │ │ │ │ ├── cpShape.h │ │ │ │ ├── cpSimpleMotor.h │ │ │ │ ├── cpSlideJoint.h │ │ │ │ ├── cpSpace.h │ │ │ │ ├── cpSpatialIndex.h │ │ │ │ ├── cpTransform.h │ │ │ │ └── cpVect.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── chipmunk.c │ │ │ ├── cpArbiter.c │ │ │ ├── cpArray.c │ │ │ ├── cpBBTree.c │ │ │ ├── cpBody.c │ │ │ ├── cpCollision.c │ │ │ ├── cpConstraint.c │ │ │ ├── cpDampedRotarySpring.c │ │ │ ├── cpDampedSpring.c │ │ │ ├── cpGearJoint.c │ │ │ ├── cpGrooveJoint.c │ │ │ ├── cpHashSet.c │ │ │ ├── cpHastySpace.c │ │ │ ├── cpMarch.c │ │ │ ├── cpPinJoint.c │ │ │ ├── cpPivotJoint.c │ │ │ ├── cpPolyShape.c │ │ │ ├── cpPolyline.c │ │ │ ├── cpRatchetJoint.c │ │ │ ├── cpRobust.c │ │ │ ├── cpRotaryLimitJoint.c │ │ │ ├── cpShape.c │ │ │ ├── cpSimpleMotor.c │ │ │ ├── cpSlideJoint.c │ │ │ ├── cpSpace.c │ │ │ ├── cpSpaceComponent.c │ │ │ ├── cpSpaceDebug.c │ │ │ ├── cpSpaceHash.c │ │ │ ├── cpSpaceQuery.c │ │ │ ├── cpSpaceStep.c │ │ │ ├── cpSpatialIndex.c │ │ │ ├── cpSweep1D.c │ │ │ └── prime.h │ ├── curl │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── curl │ │ │ │ ├── curl.h │ │ │ │ ├── curlver.h │ │ │ │ ├── easy.h │ │ │ │ ├── header.h │ │ │ │ ├── mprintf.h │ │ │ │ ├── multi.h │ │ │ │ ├── options.h │ │ │ │ ├── stdcheaders.h │ │ │ │ ├── system.h │ │ │ │ ├── typecheck-gcc.h │ │ │ │ ├── urlapi.h │ │ │ │ └── websockets.h │ │ └── lib │ │ │ ├── .checksrc │ │ │ ├── altsvc.c │ │ │ ├── altsvc.h │ │ │ ├── amigaos.c │ │ │ ├── amigaos.h │ │ │ ├── arpa_telnet.h │ │ │ ├── asyn-ares.c │ │ │ ├── asyn-thread.c │ │ │ ├── asyn.h │ │ │ ├── base64.c │ │ │ ├── bufref.c │ │ │ ├── bufref.h │ │ │ ├── c-hyper.c │ │ │ ├── c-hyper.h │ │ │ ├── cf-https-connect.c │ │ │ ├── cf-https-connect.h │ │ │ ├── cf-socket.c │ │ │ ├── cf-socket.h │ │ │ ├── cfilters.c │ │ │ ├── cfilters.h │ │ │ ├── config-amigaos.h │ │ │ ├── config-dos.h │ │ │ ├── config-mac.h │ │ │ ├── config-os400.h │ │ │ ├── config-plan9.h │ │ │ ├── config-riscos.h │ │ │ ├── config-win32.h │ │ │ ├── config-win32ce.h │ │ │ ├── conncache.c │ │ │ ├── conncache.h │ │ │ ├── connect.c │ │ │ ├── connect.h │ │ │ ├── content_encoding.c │ │ │ ├── content_encoding.h │ │ │ ├── cookie.c │ │ │ ├── cookie.h │ │ │ ├── curl_addrinfo.c │ │ │ ├── curl_addrinfo.h │ │ │ ├── curl_base64.h │ │ │ ├── curl_config.h.cmake │ │ │ ├── curl_config.h.in │ │ │ ├── curl_ctype.h │ │ │ ├── curl_des.c │ │ │ ├── curl_des.h │ │ │ ├── curl_endian.c │ │ │ ├── curl_endian.h │ │ │ ├── curl_fnmatch.c │ │ │ ├── curl_fnmatch.h │ │ │ ├── curl_get_line.c │ │ │ ├── curl_get_line.h │ │ │ ├── curl_gethostname.c │ │ │ ├── curl_gethostname.h │ │ │ ├── curl_gssapi.c │ │ │ ├── curl_gssapi.h │ │ │ ├── curl_hmac.h │ │ │ ├── curl_krb5.h │ │ │ ├── curl_ldap.h │ │ │ ├── curl_log.c │ │ │ ├── curl_log.h │ │ │ ├── curl_md4.h │ │ │ ├── curl_md5.h │ │ │ ├── curl_memory.h │ │ │ ├── curl_memrchr.c │ │ │ ├── curl_memrchr.h │ │ │ ├── curl_multibyte.c │ │ │ ├── curl_multibyte.h │ │ │ ├── curl_ntlm_core.c │ │ │ ├── curl_ntlm_core.h │ │ │ ├── curl_ntlm_wb.c │ │ │ ├── curl_ntlm_wb.h │ │ │ ├── curl_path.c │ │ │ ├── curl_path.h │ │ │ ├── curl_printf.h │ │ │ ├── curl_range.c │ │ │ ├── curl_range.h │ │ │ ├── curl_rtmp.c │ │ │ ├── curl_rtmp.h │ │ │ ├── curl_sasl.c │ │ │ ├── curl_sasl.h │ │ │ ├── curl_setup.h │ │ │ ├── curl_setup_once.h │ │ │ ├── curl_sha256.h │ │ │ ├── curl_sspi.c │ │ │ ├── curl_sspi.h │ │ │ ├── curl_threads.c │ │ │ ├── curl_threads.h │ │ │ ├── curlx.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── doh.c │ │ │ ├── doh.h │ │ │ ├── dynbuf.c │ │ │ ├── dynbuf.h │ │ │ ├── easy.c │ │ │ ├── easy_lock.h │ │ │ ├── easygetopt.c │ │ │ ├── easyif.h │ │ │ ├── easyoptions.c │ │ │ ├── easyoptions.h │ │ │ ├── escape.c │ │ │ ├── escape.h │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ ├── fileinfo.c │ │ │ ├── fileinfo.h │ │ │ ├── fopen.c │ │ │ ├── fopen.h │ │ │ ├── formdata.c │ │ │ ├── formdata.h │ │ │ ├── ftp.c │ │ │ ├── ftp.h │ │ │ ├── ftplistparser.c │ │ │ ├── ftplistparser.h │ │ │ ├── functypes.h │ │ │ ├── getenv.c │ │ │ ├── getinfo.c │ │ │ ├── getinfo.h │ │ │ ├── gopher.c │ │ │ ├── gopher.h │ │ │ ├── h2h3.c │ │ │ ├── h2h3.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── headers.c │ │ │ ├── headers.h │ │ │ ├── hmac.c │ │ │ ├── hostasyn.c │ │ │ ├── hostip.c │ │ │ ├── hostip.h │ │ │ ├── hostip4.c │ │ │ ├── hostip6.c │ │ │ ├── hostsyn.c │ │ │ ├── hsts.c │ │ │ ├── hsts.h │ │ │ ├── http.c │ │ │ ├── http.h │ │ │ ├── http2.c │ │ │ ├── http2.h │ │ │ ├── http_aws_sigv4.c │ │ │ ├── http_aws_sigv4.h │ │ │ ├── http_chunks.c │ │ │ ├── http_chunks.h │ │ │ ├── http_digest.c │ │ │ ├── http_digest.h │ │ │ ├── http_negotiate.c │ │ │ ├── http_negotiate.h │ │ │ ├── http_ntlm.c │ │ │ ├── http_ntlm.h │ │ │ ├── http_proxy.c │ │ │ ├── http_proxy.h │ │ │ ├── idn.c │ │ │ ├── idn.h │ │ │ ├── if2ip.c │ │ │ ├── if2ip.h │ │ │ ├── imap.c │ │ │ ├── imap.h │ │ │ ├── inet_ntop.c │ │ │ ├── inet_ntop.h │ │ │ ├── inet_pton.c │ │ │ ├── inet_pton.h │ │ │ ├── krb5.c │ │ │ ├── ldap.c │ │ │ ├── libcurl.plist │ │ │ ├── libcurl.plist.in │ │ │ ├── libcurl.rc │ │ │ ├── libcurl.vers.in │ │ │ ├── llist.c │ │ │ ├── llist.h │ │ │ ├── md4.c │ │ │ ├── md5.c │ │ │ ├── memdebug.c │ │ │ ├── memdebug.h │ │ │ ├── mime.c │ │ │ ├── mime.h │ │ │ ├── mprintf.c │ │ │ ├── mqtt.c │ │ │ ├── mqtt.h │ │ │ ├── multi.c │ │ │ ├── multihandle.h │ │ │ ├── multiif.h │ │ │ ├── netrc.c │ │ │ ├── netrc.h │ │ │ ├── nonblock.c │ │ │ ├── nonblock.h │ │ │ ├── noproxy.c │ │ │ ├── noproxy.h │ │ │ ├── openldap.c │ │ │ ├── parsedate.c │ │ │ ├── parsedate.h │ │ │ ├── pingpong.c │ │ │ ├── pingpong.h │ │ │ ├── pop3.c │ │ │ ├── pop3.h │ │ │ ├── progress.c │ │ │ ├── progress.h │ │ │ ├── psl.c │ │ │ ├── psl.h │ │ │ ├── rand.c │ │ │ ├── rand.h │ │ │ ├── rename.c │ │ │ ├── rename.h │ │ │ ├── rtsp.c │ │ │ ├── rtsp.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── sendf.c │ │ │ ├── sendf.h │ │ │ ├── setopt.c │ │ │ ├── setopt.h │ │ │ ├── setup-os400.h │ │ │ ├── setup-vms.h │ │ │ ├── setup-win32.h │ │ │ ├── sha256.c │ │ │ ├── share.c │ │ │ ├── share.h │ │ │ ├── sigpipe.h │ │ │ ├── slist.c │ │ │ ├── slist.h │ │ │ ├── smb.c │ │ │ ├── smb.h │ │ │ ├── smtp.c │ │ │ ├── smtp.h │ │ │ ├── sockaddr.h │ │ │ ├── socketpair.c │ │ │ ├── socketpair.h │ │ │ ├── socks.c │ │ │ ├── socks.h │ │ │ ├── socks_gssapi.c │ │ │ ├── socks_sspi.c │ │ │ ├── speedcheck.c │ │ │ ├── speedcheck.h │ │ │ ├── splay.c │ │ │ ├── splay.h │ │ │ ├── strcase.c │ │ │ ├── strcase.h │ │ │ ├── strdup.c │ │ │ ├── strdup.h │ │ │ ├── strerror.c │ │ │ ├── strerror.h │ │ │ ├── strtok.c │ │ │ ├── strtok.h │ │ │ ├── strtoofft.c │ │ │ ├── strtoofft.h │ │ │ ├── system_win32.c │ │ │ ├── system_win32.h │ │ │ ├── telnet.c │ │ │ ├── telnet.h │ │ │ ├── tftp.c │ │ │ ├── tftp.h │ │ │ ├── timediff.c │ │ │ ├── timediff.h │ │ │ ├── timeval.c │ │ │ ├── timeval.h │ │ │ ├── transfer.c │ │ │ ├── transfer.h │ │ │ ├── url.c │ │ │ ├── url.h │ │ │ ├── urlapi-int.h │ │ │ ├── urlapi.c │ │ │ ├── urldata.h │ │ │ ├── vauth │ │ │ ├── cleartext.c │ │ │ ├── cram.c │ │ │ ├── digest.c │ │ │ ├── digest.h │ │ │ ├── digest_sspi.c │ │ │ ├── gsasl.c │ │ │ ├── krb5_gssapi.c │ │ │ ├── krb5_sspi.c │ │ │ ├── ntlm.c │ │ │ ├── ntlm.h │ │ │ ├── ntlm_sspi.c │ │ │ ├── oauth2.c │ │ │ ├── spnego_gssapi.c │ │ │ ├── spnego_sspi.c │ │ │ ├── vauth.c │ │ │ └── vauth.h │ │ │ ├── version.c │ │ │ ├── version_win32.c │ │ │ ├── version_win32.h │ │ │ ├── vquic │ │ │ ├── curl_msh3.c │ │ │ ├── curl_msh3.h │ │ │ ├── curl_ngtcp2.c │ │ │ ├── curl_ngtcp2.h │ │ │ ├── curl_quiche.c │ │ │ ├── curl_quiche.h │ │ │ ├── vquic.c │ │ │ ├── vquic.h │ │ │ └── vquic_int.h │ │ │ ├── vssh │ │ │ ├── libssh.c │ │ │ ├── libssh2.c │ │ │ ├── ssh.h │ │ │ └── wolfssh.c │ │ │ ├── vtls │ │ │ ├── bearssl.c │ │ │ ├── bearssl.h │ │ │ ├── gskit.c │ │ │ ├── gskit.h │ │ │ ├── gtls.c │ │ │ ├── gtls.h │ │ │ ├── hostcheck.c │ │ │ ├── hostcheck.h │ │ │ ├── keylog.c │ │ │ ├── keylog.h │ │ │ ├── mbedtls.c │ │ │ ├── mbedtls.h │ │ │ ├── mbedtls_threadlock.c │ │ │ ├── mbedtls_threadlock.h │ │ │ ├── nss.c │ │ │ ├── nssg.h │ │ │ ├── openssl.c │ │ │ ├── openssl.h │ │ │ ├── rustls.c │ │ │ ├── rustls.h │ │ │ ├── schannel.c │ │ │ ├── schannel.h │ │ │ ├── schannel_verify.c │ │ │ ├── sectransp.c │ │ │ ├── sectransp.h │ │ │ ├── vtls.c │ │ │ ├── vtls.h │ │ │ ├── vtls_int.h │ │ │ ├── wolfssl.c │ │ │ ├── wolfssl.h │ │ │ ├── x509asn1.c │ │ │ └── x509asn1.h │ │ │ ├── warnless.c │ │ │ ├── warnless.h │ │ │ ├── ws.c │ │ │ └── ws.h │ ├── cute_path │ │ └── cute_path.h │ ├── dg │ │ └── DG_dynarr.h │ ├── freetype │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── include │ │ │ ├── dlg │ │ │ │ ├── dlg.h │ │ │ │ └── output.h │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ ├── ftstdlib.h │ │ │ │ │ ├── integer-types.h │ │ │ │ │ ├── mac-support.h │ │ │ │ │ └── public-macros.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── ftcolor.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftfntfmt.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlogging.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftparams.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── cffotypes.h │ │ │ │ │ ├── cfftypes.h │ │ │ │ │ ├── compiler-macros.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdrv.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── fthash.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftmmtypes.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpsprop.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmetric.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ └── svwinfnt.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── svginterface.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ ├── tttypes.h │ │ │ │ │ └── wofftypes.h │ │ │ │ ├── otsvg.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ └── tttags.h │ │ │ └── ft2build.h │ │ └── src │ │ │ ├── autofit │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afws-decl.h │ │ │ ├── afws-iter.h │ │ │ ├── autofit.c │ │ │ ├── ft-hb.c │ │ │ ├── ft-hb.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── base │ │ │ ├── ftadvanc.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftcolor.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── fterrors.c │ │ │ ├── ftfntfmt.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── fthash.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpsprop.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftver.rc │ │ │ ├── ftwinfnt.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ │ ├── bdf │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── bzip2 │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ │ ├── cache │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ │ ├── cff │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cfftoken.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── cid │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ │ ├── dlg │ │ │ ├── dlg.c │ │ │ ├── dlgwrap.c │ │ │ └── rules.mk │ │ │ ├── gxvalid │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── gzip │ │ │ ├── README.freetype │ │ │ ├── adler32.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── ftgzip.c │ │ │ ├── ftzconf.h │ │ │ ├── gzguts.h │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── patches │ │ │ │ └── freetype-zlib.diff │ │ │ ├── rules.mk │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ │ ├── lzw │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ │ ├── otvalid │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ │ ├── pcf │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ │ ├── pfr │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ │ ├── psaux │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── cffdecode.c │ │ │ ├── cffdecode.h │ │ │ ├── module.mk │ │ │ ├── psarrst.c │ │ │ ├── psarrst.h │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psblues.c │ │ │ ├── psblues.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── pserror.c │ │ │ ├── pserror.h │ │ │ ├── psfixed.h │ │ │ ├── psfont.c │ │ │ ├── psfont.h │ │ │ ├── psft.c │ │ │ ├── psft.h │ │ │ ├── psglue.h │ │ │ ├── pshints.c │ │ │ ├── pshints.h │ │ │ ├── psintrp.c │ │ │ ├── psintrp.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── psread.c │ │ │ ├── psread.h │ │ │ ├── psstack.c │ │ │ ├── psstack.h │ │ │ ├── pstypes.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ │ ├── pshinter │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ │ ├── psnames │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ │ ├── raster │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ └── rules.mk │ │ │ ├── sdf │ │ │ ├── ftbsdf.c │ │ │ ├── ftsdf.c │ │ │ ├── ftsdf.h │ │ │ ├── ftsdfcommon.c │ │ │ ├── ftsdfcommon.h │ │ │ ├── ftsdferrs.h │ │ │ ├── ftsdfrend.c │ │ │ ├── ftsdfrend.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── sdf.c │ │ │ ├── sfnt │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── sfwoff.c │ │ │ ├── sfwoff.h │ │ │ ├── sfwoff2.c │ │ │ ├── sfwoff2.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttcolr.c │ │ │ ├── ttcolr.h │ │ │ ├── ttcpal.c │ │ │ ├── ttcpal.h │ │ │ ├── ttgpos.c │ │ │ ├── ttgpos.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ ├── ttsbit.h │ │ │ ├── ttsvg.c │ │ │ ├── ttsvg.h │ │ │ ├── woff2tags.c │ │ │ └── woff2tags.h │ │ │ ├── smooth │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ │ ├── svg │ │ │ ├── ftsvg.c │ │ │ ├── ftsvg.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── svg.c │ │ │ └── svgtypes.h │ │ │ ├── tools │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── ftrandom │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── make_distribution_archives.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ ├── update-copyright-year │ │ │ └── vms_shorten_symbol.c │ │ │ ├── truetype │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpload.c │ │ │ └── ttpload.h │ │ │ ├── type1 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ │ ├── type42 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ │ └── winfonts │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── glew │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ │ └── GL │ │ │ │ ├── eglew.h │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ └── src │ │ │ ├── glew.c │ │ │ ├── glewinfo.c │ │ │ └── visualinfo.c │ ├── kazmath │ │ ├── CMakeLists.txt │ │ ├── aabb2.c │ │ ├── aabb2.h │ │ ├── aabb3.c │ │ ├── aabb3.h │ │ ├── kazmath.h │ │ ├── lkazmath.c │ │ ├── lkazmath.h │ │ ├── mat3.c │ │ ├── mat3.h │ │ ├── mat4.c │ │ ├── mat4.h │ │ ├── plane.c │ │ ├── plane.h │ │ ├── quaternion.c │ │ ├── quaternion.h │ │ ├── ray2.c │ │ ├── ray2.h │ │ ├── ray3.c │ │ ├── ray3.h │ │ ├── utility.c │ │ ├── utility.h │ │ ├── vec2.c │ │ ├── vec2.h │ │ ├── vec3.c │ │ ├── vec3.h │ │ ├── vec4.c │ │ └── vec4.h │ ├── khash │ │ └── khash.h │ ├── ksort │ │ └── ksort.h │ ├── lua │ │ ├── CMakeLists.txt │ │ ├── COPYRIGHT │ │ ├── HISTORY │ │ ├── INSTALL │ │ ├── README │ │ ├── doc │ │ │ ├── contents.html │ │ │ ├── cover.png │ │ │ ├── logo.gif │ │ │ ├── lua.1 │ │ │ ├── lua.css │ │ │ ├── lua.html │ │ │ ├── luac.1 │ │ │ ├── luac.html │ │ │ ├── manual.css │ │ │ ├── manual.html │ │ │ └── readme.html │ │ ├── etc │ │ │ ├── README │ │ │ ├── all.c │ │ │ ├── lua.hpp │ │ │ ├── lua.ico │ │ │ ├── lua.pc │ │ │ ├── luavs.bat │ │ │ ├── min.c │ │ │ ├── noparser.c │ │ │ └── strict.lua │ │ ├── src │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.c │ │ │ ├── lua.h │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ └── print.c │ │ └── test │ │ │ ├── README │ │ │ ├── bisect.lua │ │ │ ├── cf.lua │ │ │ ├── echo.lua │ │ │ ├── env.lua │ │ │ ├── factorial.lua │ │ │ ├── fib.lua │ │ │ ├── fibfor.lua │ │ │ ├── globals.lua │ │ │ ├── hello.lua │ │ │ ├── life.lua │ │ │ ├── luac.lua │ │ │ ├── printf.lua │ │ │ ├── readonly.lua │ │ │ ├── sieve.lua │ │ │ ├── sort.lua │ │ │ ├── table.lua │ │ │ ├── trace-calls.lua │ │ │ ├── trace-globals.lua │ │ │ └── xd.lua │ ├── luajit-cmake │ │ ├── .gitignore │ │ ├── Bundle.cmake │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── LuaJIT.cmake │ │ ├── Modules │ │ │ ├── DetectArchitecture.c │ │ │ ├── DetectArchitecture.cmake │ │ │ ├── DetectFPUApi.cmake │ │ │ ├── DetectFpuAbi.c │ │ │ └── FindUnwind.cmake │ │ ├── Utils │ │ │ ├── Darwin.wine.cmake │ │ │ ├── host.toolchain.cmake │ │ │ ├── ios.toolchain.cmake │ │ │ ├── windows.toolchain.cmake │ │ │ └── zig.toolchain.cmake │ │ ├── host │ │ │ ├── buildvm │ │ │ │ └── CMakeLists.txt │ │ │ └── minilua │ │ │ │ └── CMakeLists.txt │ │ ├── lua.cmake │ │ ├── lua2c.lua │ │ ├── luauser.h │ │ └── readme.md │ ├── luajit │ │ ├── .gitignore │ │ ├── COPYRIGHT │ │ ├── README │ │ ├── doc │ │ │ ├── bluequad-print.css │ │ │ ├── bluequad.css │ │ │ ├── contact.html │ │ │ ├── ext_buffer.html │ │ │ ├── ext_c_api.html │ │ │ ├── ext_ffi.html │ │ │ ├── ext_ffi_api.html │ │ │ ├── ext_ffi_semantics.html │ │ │ ├── ext_ffi_tutorial.html │ │ │ ├── ext_jit.html │ │ │ ├── ext_profiler.html │ │ │ ├── extensions.html │ │ │ ├── faq.html │ │ │ ├── img │ │ │ │ └── contact.png │ │ │ ├── install.html │ │ │ ├── luajit.html │ │ │ ├── running.html │ │ │ └── status.html │ │ ├── dynasm │ │ │ ├── dasm_arm.h │ │ │ ├── dasm_arm.lua │ │ │ ├── dasm_arm64.h │ │ │ ├── dasm_arm64.lua │ │ │ ├── dasm_mips.h │ │ │ ├── dasm_mips.lua │ │ │ ├── dasm_mips64.lua │ │ │ ├── dasm_ppc.h │ │ │ ├── dasm_ppc.lua │ │ │ ├── dasm_proto.h │ │ │ ├── dasm_x64.lua │ │ │ ├── dasm_x86.h │ │ │ ├── dasm_x86.lua │ │ │ └── dynasm.lua │ │ ├── etc │ │ │ ├── luajit.1 │ │ │ └── luajit.pc │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile.dep │ │ │ ├── host │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── buildvm.c │ │ │ ├── buildvm.h │ │ │ ├── buildvm_asm.c │ │ │ ├── buildvm_fold.c │ │ │ ├── buildvm_lib.c │ │ │ ├── buildvm_libbc.h │ │ │ ├── buildvm_peobj.c │ │ │ ├── genlibbc.lua │ │ │ ├── genminilua.lua │ │ │ └── minilua.c │ │ │ ├── jit │ │ │ ├── .gitignore │ │ │ ├── bc.lua │ │ │ ├── bcsave.lua │ │ │ ├── dis_arm.lua │ │ │ ├── dis_arm64.lua │ │ │ ├── dis_arm64be.lua │ │ │ ├── dis_mips.lua │ │ │ ├── dis_mips64.lua │ │ │ ├── dis_mips64el.lua │ │ │ ├── dis_mips64r6.lua │ │ │ ├── dis_mips64r6el.lua │ │ │ ├── dis_mipsel.lua │ │ │ ├── dis_ppc.lua │ │ │ ├── dis_x64.lua │ │ │ ├── dis_x86.lua │ │ │ ├── dump.lua │ │ │ ├── p.lua │ │ │ ├── v.lua │ │ │ └── zone.lua │ │ │ ├── lauxlib.h │ │ │ ├── lib_aux.c │ │ │ ├── lib_base.c │ │ │ ├── lib_bit.c │ │ │ ├── lib_buffer.c │ │ │ ├── lib_debug.c │ │ │ ├── lib_ffi.c │ │ │ ├── lib_init.c │ │ │ ├── lib_io.c │ │ │ ├── lib_jit.c │ │ │ ├── lib_math.c │ │ │ ├── lib_os.c │ │ │ ├── lib_package.c │ │ │ ├── lib_string.c │ │ │ ├── lib_table.c │ │ │ ├── lj_alloc.c │ │ │ ├── lj_alloc.h │ │ │ ├── lj_api.c │ │ │ ├── lj_arch.h │ │ │ ├── lj_asm.c │ │ │ ├── lj_asm.h │ │ │ ├── lj_asm_arm.h │ │ │ ├── lj_asm_arm64.h │ │ │ ├── lj_asm_mips.h │ │ │ ├── lj_asm_ppc.h │ │ │ ├── lj_asm_x86.h │ │ │ ├── lj_assert.c │ │ │ ├── lj_bc.c │ │ │ ├── lj_bc.h │ │ │ ├── lj_bcdump.h │ │ │ ├── lj_bcread.c │ │ │ ├── lj_bcwrite.c │ │ │ ├── lj_buf.c │ │ │ ├── lj_buf.h │ │ │ ├── lj_carith.c │ │ │ ├── lj_carith.h │ │ │ ├── lj_ccall.c │ │ │ ├── lj_ccall.h │ │ │ ├── lj_ccallback.c │ │ │ ├── lj_ccallback.h │ │ │ ├── lj_cconv.c │ │ │ ├── lj_cconv.h │ │ │ ├── lj_cdata.c │ │ │ ├── lj_cdata.h │ │ │ ├── lj_char.c │ │ │ ├── lj_char.h │ │ │ ├── lj_clib.c │ │ │ ├── lj_clib.h │ │ │ ├── lj_cparse.c │ │ │ ├── lj_cparse.h │ │ │ ├── lj_crecord.c │ │ │ ├── lj_crecord.h │ │ │ ├── lj_ctype.c │ │ │ ├── lj_ctype.h │ │ │ ├── lj_debug.c │ │ │ ├── lj_debug.h │ │ │ ├── lj_def.h │ │ │ ├── lj_dispatch.c │ │ │ ├── lj_dispatch.h │ │ │ ├── lj_emit_arm.h │ │ │ ├── lj_emit_arm64.h │ │ │ ├── lj_emit_mips.h │ │ │ ├── lj_emit_ppc.h │ │ │ ├── lj_emit_x86.h │ │ │ ├── lj_err.c │ │ │ ├── lj_err.h │ │ │ ├── lj_errmsg.h │ │ │ ├── lj_ff.h │ │ │ ├── lj_ffrecord.c │ │ │ ├── lj_ffrecord.h │ │ │ ├── lj_frame.h │ │ │ ├── lj_func.c │ │ │ ├── lj_func.h │ │ │ ├── lj_gc.c │ │ │ ├── lj_gc.h │ │ │ ├── lj_gdbjit.c │ │ │ ├── lj_gdbjit.h │ │ │ ├── lj_ir.c │ │ │ ├── lj_ir.h │ │ │ ├── lj_ircall.h │ │ │ ├── lj_iropt.h │ │ │ ├── lj_jit.h │ │ │ ├── lj_lex.c │ │ │ ├── lj_lex.h │ │ │ ├── lj_lib.c │ │ │ ├── lj_lib.h │ │ │ ├── lj_load.c │ │ │ ├── lj_mcode.c │ │ │ ├── lj_mcode.h │ │ │ ├── lj_meta.c │ │ │ ├── lj_meta.h │ │ │ ├── lj_obj.c │ │ │ ├── lj_obj.h │ │ │ ├── lj_opt_dce.c │ │ │ ├── lj_opt_fold.c │ │ │ ├── lj_opt_loop.c │ │ │ ├── lj_opt_mem.c │ │ │ ├── lj_opt_narrow.c │ │ │ ├── lj_opt_sink.c │ │ │ ├── lj_opt_split.c │ │ │ ├── lj_parse.c │ │ │ ├── lj_parse.h │ │ │ ├── lj_prng.c │ │ │ ├── lj_prng.h │ │ │ ├── lj_profile.c │ │ │ ├── lj_profile.h │ │ │ ├── lj_record.c │ │ │ ├── lj_record.h │ │ │ ├── lj_serialize.c │ │ │ ├── lj_serialize.h │ │ │ ├── lj_snap.c │ │ │ ├── lj_snap.h │ │ │ ├── lj_state.c │ │ │ ├── lj_state.h │ │ │ ├── lj_str.c │ │ │ ├── lj_str.h │ │ │ ├── lj_strfmt.c │ │ │ ├── lj_strfmt.h │ │ │ ├── lj_strfmt_num.c │ │ │ ├── lj_strscan.c │ │ │ ├── lj_strscan.h │ │ │ ├── lj_tab.c │ │ │ ├── lj_tab.h │ │ │ ├── lj_target.h │ │ │ ├── lj_target_arm.h │ │ │ ├── lj_target_arm64.h │ │ │ ├── lj_target_mips.h │ │ │ ├── lj_target_ppc.h │ │ │ ├── lj_target_x86.h │ │ │ ├── lj_trace.c │ │ │ ├── lj_trace.h │ │ │ ├── lj_traceerr.h │ │ │ ├── lj_udata.c │ │ │ ├── lj_udata.h │ │ │ ├── lj_vm.h │ │ │ ├── lj_vmevent.c │ │ │ ├── lj_vmevent.h │ │ │ ├── lj_vmmath.c │ │ │ ├── ljamalg.c │ │ │ ├── lua.h │ │ │ ├── lua.hpp │ │ │ ├── luaconf.h │ │ │ ├── luajit.c │ │ │ ├── luajit.h │ │ │ ├── lualib.h │ │ │ ├── msvcbuild.bat │ │ │ ├── nxbuild.bat │ │ │ ├── ps4build.bat │ │ │ ├── ps5build.bat │ │ │ ├── psvitabuild.bat │ │ │ ├── vm_arm.dasc │ │ │ ├── vm_arm64.dasc │ │ │ ├── vm_mips.dasc │ │ │ ├── vm_mips64.dasc │ │ │ ├── vm_ppc.dasc │ │ │ ├── vm_x64.dasc │ │ │ ├── vm_x86.dasc │ │ │ ├── xb1build.bat │ │ │ └── xedkbuild.bat │ ├── luasocket │ │ ├── CMakeLists.txt │ │ ├── auxiliar.c │ │ ├── auxiliar.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── compat.c │ │ ├── compat.h │ │ ├── except.c │ │ ├── except.h │ │ ├── ftp.lua │ │ ├── headers.lua │ │ ├── http.lua │ │ ├── inet.c │ │ ├── inet.h │ │ ├── io.c │ │ ├── io.h │ │ ├── ltn12.lua │ │ ├── luasocket.c │ │ ├── luasocket.h │ │ ├── mbox.lua │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mime.lua │ │ ├── options.c │ │ ├── options.h │ │ ├── pierror.h │ │ ├── select.c │ │ ├── select.h │ │ ├── serial.c │ │ ├── smtp.lua │ │ ├── socket.h │ │ ├── socket.lua │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── timeout.c │ │ ├── timeout.h │ │ ├── tp.lua │ │ ├── udp.c │ │ ├── udp.h │ │ ├── unix.c │ │ ├── unix.h │ │ ├── unixdgram.c │ │ ├── unixdgram.h │ │ ├── unixstream.c │ │ ├── unixstream.h │ │ ├── url.lua │ │ ├── usocket.c │ │ ├── usocket.h │ │ ├── wsocket.c │ │ └── wsocket.h │ ├── miniaudio │ │ ├── dr_flac.h │ │ ├── dr_mp3.h │ │ ├── dr_wav.h │ │ ├── jar_mod.h │ │ ├── jar_xm.h │ │ ├── miniaudio.h │ │ └── stb_vorbis.h │ ├── newton │ │ ├── CMakeLists.txt │ │ ├── dAnimation │ │ │ ├── CMakeLists.txt │ │ │ ├── dAnimationBlendTreeNode.cpp │ │ │ ├── dAnimationBlendTreeNode.h │ │ │ ├── dAnimationKeyframesTrack.cpp │ │ │ ├── dAnimationKeyframesTrack.h │ │ │ ├── dAnimationPose.cpp │ │ │ ├── dAnimationPose.h │ │ │ ├── dAnimationSequence.cpp │ │ │ ├── dAnimationSequence.h │ │ │ ├── dAnimationSequencePlayer.cpp │ │ │ ├── dAnimationSequencePlayer.h │ │ │ ├── dAnimationStdAfx.cpp │ │ │ ├── dAnimationStdAfx.h │ │ │ ├── dAnimationTwoWayBlend.cpp │ │ │ └── dAnimationTwoWayBlend.h │ │ ├── dCompilerKit │ │ │ ├── dAssembler │ │ │ │ ├── dAssembler.cpp │ │ │ │ └── tests │ │ │ │ │ └── test0.asm │ │ │ ├── dCompilerCore │ │ │ │ ├── dAutomataState.cpp │ │ │ │ ├── dAutomataState.h │ │ │ │ ├── dChatertSetMap.cpp │ │ │ │ ├── dChatertSetMap.h │ │ │ │ ├── dDeterministicFiniteAutonata.cpp │ │ │ │ ├── dDeterministicFiniteAutonata.h │ │ │ │ ├── dFiniteAutomata.cpp │ │ │ │ ├── dFiniteAutomata.h │ │ │ │ ├── dNonDeterministicFiniteAutonata.cpp │ │ │ │ └── dNonDeterministicFiniteAutonata.h │ │ │ ├── dFiniteAutomata │ │ │ │ ├── dAutomataState.cpp │ │ │ │ ├── dAutomataState.h │ │ │ │ ├── dChatertSetMap.cpp │ │ │ │ ├── dChatertSetMap.h │ │ │ │ ├── dDeterministicFiniteAutonata.cpp │ │ │ │ ├── dDeterministicFiniteAutonata.h │ │ │ │ ├── dFiniteAutomata.cpp │ │ │ │ ├── dFiniteAutomata.h │ │ │ │ ├── dNonDeterministicFiniteAutonata.cpp │ │ │ │ └── dNonDeterministicFiniteAutonata.h │ │ │ ├── dIntermediateLanguage │ │ │ │ ├── dBasicBlocksGraph.cpp │ │ │ │ ├── dBasicBlocksGraph.h │ │ │ │ ├── dCIL.cpp │ │ │ │ ├── dCIL.h │ │ │ │ ├── dCILInstr.cpp │ │ │ │ ├── dCILInstr.h │ │ │ │ ├── dCILInstrArithmetic.h │ │ │ │ ├── dCILInstrAritmetic.cpp │ │ │ │ ├── dCILInstrBranch.cpp │ │ │ │ ├── dCILInstrBranch.h │ │ │ │ ├── dCILInstrLoadStore.cpp │ │ │ │ ├── dCILInstrLoadStore.h │ │ │ │ ├── dCILInstrMiscellaneous.cpp │ │ │ │ ├── dCILInstrMiscellaneous.h │ │ │ │ ├── dCILstdafx.cpp │ │ │ │ ├── dCILstdafx.h │ │ │ │ ├── dConditionalConstantPropagationSolver.cpp │ │ │ │ ├── dConditionalConstantPropagationSolver.h │ │ │ │ ├── dConvertToSSASolver.cpp │ │ │ │ ├── dConvertToSSASolver.h │ │ │ │ ├── dRegisterInterferenceGraph.cpp │ │ │ │ └── dRegisterInterferenceGraph.h │ │ │ ├── dLexicalGenerator │ │ │ │ ├── dLexCompiler.cpp │ │ │ │ ├── dLexCompiler.h │ │ │ │ ├── dLexScannerGenerator.cpp │ │ │ │ ├── dLexScannerGenerator.h │ │ │ │ ├── dLexicalMain.cpp │ │ │ │ ├── templates │ │ │ │ │ ├── dLexicalTemplate_cpp.txt │ │ │ │ │ └── dLexicalTemplate_h.txt │ │ │ │ └── tests │ │ │ │ │ ├── dAssemblerLexical.cpp │ │ │ │ │ ├── dAssemblerLexical.h │ │ │ │ │ ├── dAssemblerLexical.lex │ │ │ │ │ ├── dNewtonScriptLexical.cpp │ │ │ │ │ ├── dNewtonScriptLexical.h │ │ │ │ │ ├── dNewtonScriptLexical.lex │ │ │ │ │ ├── dParcerLexical.cpp │ │ │ │ │ ├── dParcerLexical.h │ │ │ │ │ ├── dParcerLexical.lex │ │ │ │ │ ├── java.lex │ │ │ │ │ └── test0.lex │ │ │ ├── dLittleScriptLanguage │ │ │ │ ├── dLSCstdafx.cpp │ │ │ │ ├── dLSCstdafx.h │ │ │ │ ├── dLittleScriptCompiler.cpp │ │ │ │ ├── dLittleScriptCompiler.h │ │ │ │ ├── dLittleScriptLexical.cpp │ │ │ │ ├── dLittleScriptLexical.h │ │ │ │ ├── dLittleScriptLexical.lex │ │ │ │ ├── dLittleScriptParser.cpp │ │ │ │ ├── dLittleScriptParser.grm │ │ │ │ ├── dLittleScriptParser.h │ │ │ │ ├── dLittleScriptParserOld.grm │ │ │ │ ├── dScriptClass.cpp │ │ │ │ ├── dScriptClass.h │ │ │ │ ├── dScriptPackage.cpp │ │ │ │ └── dScriptPackage.h │ │ │ ├── dNewtonLua │ │ │ │ ├── dNewtonLua.cpp │ │ │ │ ├── dNewtonLuaCompiler.cpp │ │ │ │ ├── dNewtonLuaCompiler.h │ │ │ │ ├── dNewtonLuaGrammar.grm │ │ │ │ ├── dNewtonLuaLex.cpp │ │ │ │ ├── dNewtonLuaLex.h │ │ │ │ ├── dNewtonLuaLex.lex │ │ │ │ ├── dNewtonLuaParcer.cpp │ │ │ │ ├── dNewtonLuaParcer.grm │ │ │ │ ├── dNewtonLuaParcer.h │ │ │ │ ├── dNewtonLuaParcerOld.grm │ │ │ │ ├── dNewtonLuaStdafx.cpp │ │ │ │ ├── dNewtonLuaStdafx.h │ │ │ │ └── tests │ │ │ │ │ ├── complianceTest.lua │ │ │ │ │ ├── constantPropagation.lua │ │ │ │ │ ├── factorial.lua │ │ │ │ │ ├── fibonacci.lua │ │ │ │ │ ├── helloWorld.lua │ │ │ │ │ └── liveInliveOut.lua │ │ │ ├── dNewtonScriptCompiler │ │ │ │ ├── dScriptCompiler.cpp │ │ │ │ ├── demos │ │ │ │ │ ├── coalescing.lsl │ │ │ │ │ ├── constantFolding.lsl │ │ │ │ │ ├── fibonacci.lsl │ │ │ │ │ ├── fractions.lsl │ │ │ │ │ ├── helloWorld.lsl │ │ │ │ │ ├── insertPhy.lsl │ │ │ │ │ ├── nbody.lsl │ │ │ │ │ ├── qsort.lsl │ │ │ │ │ ├── semanticTest.lsl │ │ │ │ │ ├── sieve.lsl │ │ │ │ │ └── testDominatorFrontier.lsl │ │ │ │ └── stdlib │ │ │ │ │ └── string.lsl │ │ │ ├── dParserGenerator │ │ │ │ ├── dParserCompiler.cpp │ │ │ │ ├── dParserCompiler.h │ │ │ │ ├── dParserGenerator.cpp │ │ │ │ ├── dParserLexical.cpp │ │ │ │ ├── dParserLexical.h │ │ │ │ ├── dParserLexical.lex │ │ │ │ ├── templates │ │ │ │ │ ├── dParserTemplate _cpp.txt │ │ │ │ │ ├── dParserTemplate_h.txt │ │ │ │ │ └── dParserUserVariableTemplate_cpp.txt │ │ │ │ └── tests │ │ │ │ │ ├── ambiguous.grm │ │ │ │ │ ├── ansi-c.grm │ │ │ │ │ ├── csharp.grm │ │ │ │ │ ├── dAssemblerParser.cpp │ │ │ │ │ ├── dAssemblerParser.grm │ │ │ │ │ ├── dAssemblerParser.h │ │ │ │ │ ├── dLittleScriptParser.grm │ │ │ │ │ ├── java.grm │ │ │ │ │ ├── test0.cpp │ │ │ │ │ ├── test0.grm │ │ │ │ │ ├── test0.h │ │ │ │ │ ├── test1.cpp │ │ │ │ │ ├── test1.grm │ │ │ │ │ ├── test1.h │ │ │ │ │ ├── test2.cpp │ │ │ │ │ ├── test2.grm │ │ │ │ │ ├── test2.h │ │ │ │ │ ├── test3.grm │ │ │ │ │ ├── test4.cpp │ │ │ │ │ ├── test4.grm │ │ │ │ │ ├── test4.h │ │ │ │ │ ├── test5.cpp │ │ │ │ │ ├── test5.grm │ │ │ │ │ ├── test5.h │ │ │ │ │ ├── test6.cpp │ │ │ │ │ ├── test6.grm │ │ │ │ │ ├── test6.h │ │ │ │ │ ├── test7.cpp │ │ │ │ │ ├── test7.grm │ │ │ │ │ └── test7.h │ │ │ ├── dVirtualAssembler │ │ │ │ ├── dAssemblerCompiler.cpp │ │ │ │ ├── dAssemblerCompiler.h │ │ │ │ ├── dAssemblerLexical.cpp │ │ │ │ ├── dAssemblerLexical.h │ │ │ │ ├── dAssemblerLexical.lex │ │ │ │ ├── dAssemblerParser.cpp │ │ │ │ ├── dAssemblerParser.grm │ │ │ │ └── dAssemblerParser.h │ │ │ ├── dVirtualMachine │ │ │ │ ├── dVirtualMachine.cpp │ │ │ │ └── dVirtualMachine.h │ │ │ ├── vs_2013_mt │ │ │ │ ├── CompilerKit.sln │ │ │ │ ├── dAssembleCompiler.vcxproj │ │ │ │ ├── dAssembler.vcxproj │ │ │ │ ├── dFiniteAutomata.vcxproj │ │ │ │ ├── dIntermediateLanguage.vcxproj │ │ │ │ ├── dLexicalGenerator.vcxproj │ │ │ │ ├── dLittleScriptLanguage.vcxproj │ │ │ │ ├── dLittleScriptLanguage.vcxproj.filters │ │ │ │ ├── dNewtonLua.vcxproj │ │ │ │ ├── dNewtonLua.vcxproj.filters │ │ │ │ ├── dNewtonScriptCompiler.vcxproj │ │ │ │ ├── dParcerGenerator.vcxproj │ │ │ │ └── dVirtualMachine.vcxproj │ │ │ └── vs_2015_mt │ │ │ │ ├── CompilerKit.sln │ │ │ │ ├── dAssembleCompiler.vcxproj │ │ │ │ ├── dAssembler.vcxproj │ │ │ │ ├── dFiniteAutomata.vcxproj │ │ │ │ ├── dIntermediateLanguage.vcxproj │ │ │ │ ├── dLexicalGenerator.vcxproj │ │ │ │ ├── dLittleScriptLanguage.vcxproj │ │ │ │ ├── dLittleScriptLanguage.vcxproj.filters │ │ │ │ ├── dNewtonLua.vcxproj │ │ │ │ ├── dNewtonLua.vcxproj.filters │ │ │ │ ├── dNewtonScriptCompiler.vcxproj │ │ │ │ ├── dParcerGenerator.vcxproj │ │ │ │ └── dVirtualMachine.vcxproj │ │ ├── dContainers │ │ │ ├── CMakeLists.txt │ │ │ ├── dArray.h │ │ │ ├── dBaseHierarchy.cpp │ │ │ ├── dBaseHierarchy.h │ │ │ ├── dBezierSpline.cpp │ │ │ ├── dBezierSpline.h │ │ │ ├── dCRC.cpp │ │ │ ├── dCRC.h │ │ │ ├── dClassInfo.cpp │ │ │ ├── dClassInfo.h │ │ │ ├── dContainersAlloc.cpp │ │ │ ├── dContainersAlloc.h │ │ │ ├── dContainersStdAfx.cpp │ │ │ ├── dContainersStdAfx.h │ │ │ ├── dHeap.h │ │ │ ├── dList.h │ │ │ ├── dMap.h │ │ │ ├── dPointer.h │ │ │ ├── dRefCounter.cpp │ │ │ ├── dRefCounter.h │ │ │ ├── dRtti.h │ │ │ ├── dString.cpp │ │ │ ├── dString.h │ │ │ ├── dTree.cpp │ │ │ └── dTree.h │ │ ├── dCustomJoints │ │ │ ├── CMakeLists.txt │ │ │ ├── dCustomAlloc.cpp │ │ │ ├── dCustomAlloc.h │ │ │ ├── dCustomBallAndSocket.cpp │ │ │ ├── dCustomBallAndSocket.h │ │ │ ├── dCustomCorkScrew.cpp │ │ │ ├── dCustomCorkScrew.h │ │ │ ├── dCustomDoubleHinge.cpp │ │ │ ├── dCustomDoubleHinge.h │ │ │ ├── dCustomDoubleHingeActuator.cpp │ │ │ ├── dCustomDoubleHingeActuator.h │ │ │ ├── dCustomDryRollingFriction.cpp │ │ │ ├── dCustomDryRollingFriction.h │ │ │ ├── dCustomFixDistance.cpp │ │ │ ├── dCustomFixDistance.h │ │ │ ├── dCustomGear.cpp │ │ │ ├── dCustomGear.h │ │ │ ├── dCustomHinge.cpp │ │ │ ├── dCustomHinge.h │ │ │ ├── dCustomHingeActuator.cpp │ │ │ ├── dCustomHingeActuator.h │ │ │ ├── dCustomJoint.cpp │ │ │ ├── dCustomJoint.h │ │ │ ├── dCustomJointLibraryStdAfx.cpp │ │ │ ├── dCustomJointLibraryStdAfx.h │ │ │ ├── dCustomKinematicController.cpp │ │ │ ├── dCustomKinematicController.h │ │ │ ├── dCustomListener.cpp │ │ │ ├── dCustomListener.h │ │ │ ├── dCustomMotor.cpp │ │ │ ├── dCustomMotor.h │ │ │ ├── dCustomPathFollow.cpp │ │ │ ├── dCustomPathFollow.h │ │ │ ├── dCustomPlane.cpp │ │ │ ├── dCustomPlane.h │ │ │ ├── dCustomPulley.cpp │ │ │ ├── dCustomPulley.h │ │ │ ├── dCustomRackAndPinion.cpp │ │ │ ├── dCustomRackAndPinion.h │ │ │ ├── dCustomSixdof.cpp │ │ │ ├── dCustomSixdof.h │ │ │ ├── dCustomSlider.cpp │ │ │ ├── dCustomSlider.h │ │ │ ├── dCustomSliderActuator.cpp │ │ │ ├── dCustomSliderActuator.h │ │ │ ├── dCustomSlidingContact.cpp │ │ │ ├── dCustomSlidingContact.h │ │ │ ├── dCustomTriggerManager.cpp │ │ │ ├── dCustomTriggerManager.h │ │ │ ├── dCustomUpVector.cpp │ │ │ ├── dCustomUpVector.h │ │ │ ├── dCustomWheel.cpp │ │ │ └── dCustomWheel.h │ │ ├── dLanguageBinding │ │ │ ├── bindingTemplate │ │ │ │ ├── bindingTemplate.cpp │ │ │ │ ├── bindingTemplate.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── languageBinding.sln │ │ │ ├── languageBinding.vcproj │ │ │ ├── lexical.cpp │ │ │ ├── lexical.h │ │ │ ├── lexical.lex │ │ │ ├── newtonBinding.cpp │ │ │ ├── newtonBinding.h │ │ │ ├── newtonGrammar.cpp │ │ │ ├── newtonGrammar.grm │ │ │ ├── newtonGrammar.h │ │ │ ├── objectiveC │ │ │ │ ├── iosNewton.h │ │ │ │ ├── objectiveC.cpp │ │ │ │ ├── objectiveC.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── stdAfx.cpp │ │ │ └── stdAfx.h │ │ ├── dMath │ │ │ ├── CMakeLists.txt │ │ │ ├── dLinearAlgebra.cpp │ │ │ ├── dLinearAlgebra.h │ │ │ ├── dMathDefines.cpp │ │ │ ├── dMathDefines.h │ │ │ ├── dMatrix.cpp │ │ │ ├── dMatrix.h │ │ │ ├── dQuaternion.cpp │ │ │ ├── dQuaternion.h │ │ │ ├── dStdAfxMath.cpp │ │ │ ├── dStdAfxMath.h │ │ │ ├── dVector.cpp │ │ │ └── dVector.h │ │ ├── dModel │ │ │ ├── CMakeLists.txt │ │ │ ├── dModelAnimTree.h │ │ │ ├── dModelAnimTreePose.h │ │ │ ├── dModelAnimTreePoseBlender.h │ │ │ ├── dModelManager.cpp │ │ │ ├── dModelManager.h │ │ │ ├── dModelNode.cpp │ │ │ ├── dModelNode.h │ │ │ ├── dModelRootNode.cpp │ │ │ ├── dModelRootNode.h │ │ │ ├── dModelStdAfx.cpp │ │ │ └── dModelStdAfx.h │ │ ├── dNewton │ │ │ ├── CMakeLists.txt │ │ │ ├── dMaterialPairManager.cpp │ │ │ ├── dMaterialPairManager.h │ │ │ ├── dNewton.cpp │ │ │ ├── dNewton.h │ │ │ ├── dNewtonActuatorJoints.cpp │ │ │ ├── dNewtonActuatorJoints.h │ │ │ ├── dNewtonAlloc.cpp │ │ │ ├── dNewtonAlloc.h │ │ │ ├── dNewtonBody.cpp │ │ │ ├── dNewtonBody.h │ │ │ ├── dNewtonCollision.cpp │ │ │ ├── dNewtonCollision.h │ │ │ ├── dNewtonDynamicBody.cpp │ │ │ ├── dNewtonDynamicBody.h │ │ │ ├── dNewtonJoint.cpp │ │ │ ├── dNewtonJoint.h │ │ │ ├── dNewtonKinematicBody.cpp │ │ │ ├── dNewtonKinematicBody.h │ │ │ ├── dNewtonMaterial.cpp │ │ │ ├── dNewtonMaterial.h │ │ │ ├── dNewtonMesh.cpp │ │ │ ├── dNewtonMesh.h │ │ │ ├── dNewtonPlayerManager.cpp │ │ │ ├── dNewtonPlayerManager.h │ │ │ ├── dNewtonRayCast.cpp │ │ │ ├── dNewtonRayCast.h │ │ │ ├── dNewtonScopeBuffer.cpp │ │ │ ├── dNewtonScopeBuffer.h │ │ │ ├── dNewtonTransformLerp.cpp │ │ │ ├── dNewtonTransformLerp.h │ │ │ ├── dNewtonTriggerManager.cpp │ │ │ ├── dNewtonTriggerManager.h │ │ │ ├── dStdAfxNewton.cpp │ │ │ └── dStdAfxNewton.h │ │ ├── dProfiler │ │ │ ├── CMakeLists.txt │ │ │ ├── Tracy.exe │ │ │ ├── dProfiler.cpp │ │ │ ├── dProfiler.h │ │ │ ├── dllmain.cpp │ │ │ └── imgui.ini │ │ ├── dScene │ │ │ ├── CMakeLists.txt │ │ │ ├── dAnimationTake.cpp │ │ │ ├── dAnimationTake.h │ │ │ ├── dAnimationTrack.cpp │ │ │ ├── dAnimationTrack.h │ │ │ ├── dBoneNodeInfo.cpp │ │ │ ├── dBoneNodeInfo.h │ │ │ ├── dCollisionBoxNodeInfo.cpp │ │ │ ├── dCollisionBoxNodeInfo.h │ │ │ ├── dCollisionCapsuleNodeInfo.cpp │ │ │ ├── dCollisionCapsuleNodeInfo.h │ │ │ ├── dCollisionChamferCylinderNodeInfo.cpp │ │ │ ├── dCollisionChamferCylinderNodeInfo.h │ │ │ ├── dCollisionCompoundNodeInfo.cpp │ │ │ ├── dCollisionCompoundNodeInfo.h │ │ │ ├── dCollisionConeNodeInfo.cpp │ │ │ ├── dCollisionConeNodeInfo.h │ │ │ ├── dCollisionConvexHullNodeInfo.cpp │ │ │ ├── dCollisionConvexHullNodeInfo.h │ │ │ ├── dCollisionCylinderNodeInfo.cpp │ │ │ ├── dCollisionCylinderNodeInfo.h │ │ │ ├── dCollisionNodeInfo.cpp │ │ │ ├── dCollisionNodeInfo.h │ │ │ ├── dCollisionSphereNodeInfo.cpp │ │ │ ├── dCollisionSphereNodeInfo.h │ │ │ ├── dCollisionTreeNodeInfo.cpp │ │ │ ├── dCollisionTreeNodeInfo.h │ │ │ ├── dDrawUtils.cpp │ │ │ ├── dDrawUtils.h │ │ │ ├── dGeometryNodeInfo.cpp │ │ │ ├── dGeometryNodeInfo.h │ │ │ ├── dGeometryNodeModifierInfo.cpp │ │ │ ├── dGeometryNodeModifierInfo.h │ │ │ ├── dGeometryNodeSkinClusterInfo.cpp │ │ │ ├── dGeometryNodeSkinClusterInfo.h │ │ │ ├── dLineNodeInfo.cpp │ │ │ ├── dLineNodeInfo.h │ │ │ ├── dMaterialNodeInfo.cpp │ │ │ ├── dMaterialNodeInfo.h │ │ │ ├── dMeshNodeInfo.cpp │ │ │ ├── dMeshNodeInfo.h │ │ │ ├── dNodeInfo.cpp │ │ │ ├── dNodeInfo.h │ │ │ ├── dRigidbodyNodeInfo.cpp │ │ │ ├── dRigidbodyNodeInfo.h │ │ │ ├── dRootNodeInfo.cpp │ │ │ ├── dRootNodeInfo.h │ │ │ ├── dScene.cpp │ │ │ ├── dScene.h │ │ │ ├── dSceneCacheInfo.cpp │ │ │ ├── dSceneCacheInfo.h │ │ │ ├── dSceneGraph.cpp │ │ │ ├── dSceneGraph.h │ │ │ ├── dSceneModelInfo.cpp │ │ │ ├── dSceneModelInfo.h │ │ │ ├── dSceneNodeInfo.cpp │ │ │ ├── dSceneNodeInfo.h │ │ │ ├── dSceneRender.cpp │ │ │ ├── dSceneRender.h │ │ │ ├── dSceneStdafx.cpp │ │ │ ├── dSceneStdafx.h │ │ │ ├── dTextureNodeInfo.cpp │ │ │ ├── dTextureNodeInfo.h │ │ │ ├── dUndoRedo.cpp │ │ │ ├── dUndoRedo.h │ │ │ ├── dVariable.cpp │ │ │ └── dVariable.h │ │ ├── dVehicle │ │ │ ├── CMakeLists.txt │ │ │ ├── dMultiBodyVehicle │ │ │ │ ├── dMultiBodyVehicle.cpp │ │ │ │ ├── dMultiBodyVehicle.h │ │ │ │ ├── dMultiBodyVehicleCollisionNode.cpp │ │ │ │ ├── dMultiBodyVehicleCollisionNode.h │ │ │ │ ├── dMultiBodyVehicleDashControl.cpp │ │ │ │ ├── dMultiBodyVehicleDashControl.h │ │ │ │ ├── dMultiBodyVehicleDifferential.cpp │ │ │ │ ├── dMultiBodyVehicleDifferential.h │ │ │ │ ├── dMultiBodyVehicleEngine.cpp │ │ │ │ ├── dMultiBodyVehicleEngine.h │ │ │ │ ├── dMultiBodyVehicleTire.cpp │ │ │ │ ├── dMultiBodyVehicleTire.h │ │ │ │ ├── dMultiBodyVehicleTireContact.cpp │ │ │ │ └── dMultiBodyVehicleTireContact.h │ │ │ ├── dPlayerController │ │ │ │ ├── dPlayerController.cpp │ │ │ │ ├── dPlayerController.h │ │ │ │ ├── dPlayerControllerContactSolver.cpp │ │ │ │ ├── dPlayerControllerContactSolver.h │ │ │ │ ├── dPlayerControllerImpulseSolver.cpp │ │ │ │ ├── dPlayerControllerImpulseSolver.h │ │ │ │ ├── dPlayerIKNode.cpp │ │ │ │ ├── dPlayerIKNode.h │ │ │ │ ├── dPlayerIKNodeJoint.cpp │ │ │ │ ├── dPlayerIKNodeJoint.h │ │ │ │ ├── dPlayerIKPoseModifier.cpp │ │ │ │ └── dPlayerIKPoseModifier.h │ │ │ ├── dStdafxVehicle.cpp │ │ │ ├── dStdafxVehicle.h │ │ │ ├── dVehicle.cpp │ │ │ ├── dVehicle.h │ │ │ ├── dVehicleLoopJoint.cpp │ │ │ ├── dVehicleLoopJoint.h │ │ │ ├── dVehicleManager.cpp │ │ │ ├── dVehicleManager.h │ │ │ ├── dVehicleNode.cpp │ │ │ ├── dVehicleNode.h │ │ │ ├── dVehicleSolver.cpp │ │ │ └── dVehicleSolver.h │ │ ├── dWrappers │ │ │ ├── csharp │ │ │ │ ├── CustomJoints.cpp │ │ │ │ ├── IUnityInterface.h │ │ │ │ ├── NewtonWrapper.cpp │ │ │ │ ├── NewtonWrapper.h │ │ │ │ ├── NewtonWrapper.vcxproj │ │ │ │ ├── NewtonWrapper.vcxproj.filters │ │ │ │ ├── Vehicle.cpp │ │ │ │ ├── dNewtonContact.cpp │ │ │ │ ├── dNewtonContact.h │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── newton.i │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ └── wrapperSdk │ │ │ │ │ ├── dAlloc.cpp │ │ │ │ │ ├── dAlloc.h │ │ │ │ │ ├── dNewtonBody.cpp │ │ │ │ │ ├── dNewtonBody.h │ │ │ │ │ ├── dNewtonCollision.cpp │ │ │ │ │ ├── dNewtonCollision.h │ │ │ │ │ ├── dNewtonJoint.cpp │ │ │ │ │ ├── dNewtonJoint.h │ │ │ │ │ ├── dNewtonJointBallAndSocket.cpp │ │ │ │ │ ├── dNewtonJointBallAndSocket.h │ │ │ │ │ ├── dNewtonJointDoubleHinge.cpp │ │ │ │ │ ├── dNewtonJointDoubleHinge.h │ │ │ │ │ ├── dNewtonJointHinge.cpp │ │ │ │ │ ├── dNewtonJointHinge.h │ │ │ │ │ ├── dNewtonJointPlane.cpp │ │ │ │ │ ├── dNewtonJointPlane.h │ │ │ │ │ ├── dNewtonJointRelational.cpp │ │ │ │ │ ├── dNewtonJointRelational.h │ │ │ │ │ ├── dNewtonJointSlider.cpp │ │ │ │ │ ├── dNewtonJointSlider.h │ │ │ │ │ ├── dNewtonJointSlidingHinge.cpp │ │ │ │ │ ├── dNewtonJointSlidingHinge.h │ │ │ │ │ ├── dNewtonVehicle.cpp │ │ │ │ │ ├── dNewtonVehicle.h │ │ │ │ │ ├── dNewtonVehicleManager.cpp │ │ │ │ │ ├── dNewtonVehicleManager.h │ │ │ │ │ ├── dNewtonWorld.cpp │ │ │ │ │ └── dNewtonWorld.h │ │ │ ├── projects │ │ │ │ ├── dWrappers.sln │ │ │ │ ├── dWrappers.vcxproj │ │ │ │ └── python.vcxproj │ │ │ └── python │ │ │ │ ├── CustomJoints.cpp │ │ │ │ ├── NewtonWrapper.py │ │ │ │ ├── Vehicle.cpp │ │ │ │ ├── dNewtonContact.cpp │ │ │ │ ├── dNewtonContact.h │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── newton.i │ │ │ │ ├── newton_wrap.cxx │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ └── wrapperSdk │ │ │ │ ├── dAlloc.cpp │ │ │ │ ├── dAlloc.h │ │ │ │ ├── dNewtonBody.cpp │ │ │ │ ├── dNewtonBody.h │ │ │ │ ├── dNewtonCollision.cpp │ │ │ │ ├── dNewtonCollision.h │ │ │ │ ├── dNewtonJoint.cpp │ │ │ │ ├── dNewtonJoint.h │ │ │ │ ├── dNewtonJointBallAndSocket.cpp │ │ │ │ ├── dNewtonJointBallAndSocket.h │ │ │ │ ├── dNewtonJointDoubleHinge.cpp │ │ │ │ ├── dNewtonJointDoubleHinge.h │ │ │ │ ├── dNewtonJointHinge.cpp │ │ │ │ ├── dNewtonJointHinge.h │ │ │ │ ├── dNewtonJointPlane.cpp │ │ │ │ ├── dNewtonJointPlane.h │ │ │ │ ├── dNewtonJointRelational.cpp │ │ │ │ ├── dNewtonJointRelational.h │ │ │ │ ├── dNewtonJointSlider.cpp │ │ │ │ ├── dNewtonJointSlider.h │ │ │ │ ├── dNewtonJointSlidingHinge.cpp │ │ │ │ ├── dNewtonJointSlidingHinge.h │ │ │ │ ├── dNewtonVehicle.cpp │ │ │ │ ├── dNewtonVehicle.h │ │ │ │ ├── dNewtonVehicleManager.cpp │ │ │ │ ├── dNewtonVehicleManager.h │ │ │ │ ├── dNewtonWorld.cpp │ │ │ │ └── dNewtonWorld.h │ │ ├── dgCore │ │ │ ├── CMakeLists.txt │ │ │ ├── dg.cpp │ │ │ ├── dg.h │ │ │ ├── dgAABBPolygonSoup.cpp │ │ │ ├── dgAABBPolygonSoup.h │ │ │ ├── dgArray.h │ │ │ ├── dgCRC.cpp │ │ │ ├── dgCRC.h │ │ │ ├── dgConvexHull3d.cpp │ │ │ ├── dgConvexHull3d.h │ │ │ ├── dgConvexHull4d.cpp │ │ │ ├── dgConvexHull4d.h │ │ │ ├── dgDebug.cpp │ │ │ ├── dgDebug.h │ │ │ ├── dgDelaunayTetrahedralization.cpp │ │ │ ├── dgDelaunayTetrahedralization.h │ │ │ ├── dgFastQueue.h │ │ │ ├── dgGeneralMatrix.cpp │ │ │ ├── dgGeneralMatrix.h │ │ │ ├── dgGeneralVector.cpp │ │ │ ├── dgGeneralVector.h │ │ │ ├── dgGoogol.cpp │ │ │ ├── dgGoogol.h │ │ │ ├── dgGraph.h │ │ │ ├── dgHeap.h │ │ │ ├── dgIntersections.cpp │ │ │ ├── dgIntersections.h │ │ │ ├── dgList.h │ │ │ ├── dgMatrix.cpp │ │ │ ├── dgMatrix.h │ │ │ ├── dgMemory.cpp │ │ │ ├── dgMemory.h │ │ │ ├── dgMutexThread.cpp │ │ │ ├── dgMutexThread.h │ │ │ ├── dgNode.cpp │ │ │ ├── dgNode.h │ │ │ ├── dgObb.cpp │ │ │ ├── dgObb.h │ │ │ ├── dgPathFinder.h │ │ │ ├── dgPlane.h │ │ │ ├── dgPolygonSoupBuilder.cpp │ │ │ ├── dgPolygonSoupBuilder.h │ │ │ ├── dgPolygonSoupDatabase.cpp │ │ │ ├── dgPolygonSoupDatabase.h │ │ │ ├── dgPolyhedra.cpp │ │ │ ├── dgPolyhedra.h │ │ │ ├── dgPolyhedraMassProperties.cpp │ │ │ ├── dgPolyhedraMassProperties.h │ │ │ ├── dgProfiler.cpp │ │ │ ├── dgProfiler.h │ │ │ ├── dgQuaternion.cpp │ │ │ ├── dgQuaternion.h │ │ │ ├── dgRandom.cpp │ │ │ ├── dgRandom.h │ │ │ ├── dgRef.cpp │ │ │ ├── dgRef.h │ │ │ ├── dgRefCounter.cpp │ │ │ ├── dgRefCounter.h │ │ │ ├── dgRtti.h │ │ │ ├── dgSmallDeterminant.cpp │ │ │ ├── dgSmallDeterminant.h │ │ │ ├── dgSort.h │ │ │ ├── dgStack.h │ │ │ ├── dgStdafx.h │ │ │ ├── dgThread.cpp │ │ │ ├── dgThread.h │ │ │ ├── dgThreadHive.cpp │ │ │ ├── dgThreadHive.h │ │ │ ├── dgTree.cpp │ │ │ ├── dgTree.h │ │ │ ├── dgTypes.cpp │ │ │ ├── dgTypes.h │ │ │ ├── dgVector.h │ │ │ ├── dgVectorArmNeon.h │ │ │ ├── dgVectorScalar.h │ │ │ └── dgVectorSimd.h │ │ ├── dgMeshUtil │ │ │ ├── dgMeshEffect.h │ │ │ ├── dgMeshEffect1.cpp │ │ │ ├── dgMeshEffect2.cpp │ │ │ ├── dgMeshEffect3.cpp │ │ │ ├── dgMeshEffect4.cpp │ │ │ ├── dgMeshEffect5.cpp │ │ │ └── dgMeshEffect6.cpp │ │ ├── dgNewton │ │ │ ├── CMakeLists.txt │ │ │ ├── Newton.cpp │ │ │ ├── Newton.h │ │ │ ├── NewtonClass.cpp │ │ │ ├── NewtonClass.h │ │ │ └── NewtonStdAfx.h │ │ ├── dgNewtonAvx │ │ │ ├── CMakeLists.txt │ │ │ ├── dgNewtonPluginStdafx.cpp │ │ │ ├── dgNewtonPluginStdafx.h │ │ │ ├── dgSolver.cpp │ │ │ ├── dgSolver.h │ │ │ ├── dgWorldBase.cpp │ │ │ ├── dgWorldBase.h │ │ │ └── dllmain.cpp │ │ ├── dgNewtonAvx2 │ │ │ ├── CMakeLists.txt │ │ │ ├── dgNewtonPluginStdafx.cpp │ │ │ ├── dgNewtonPluginStdafx.h │ │ │ ├── dgSolver.cpp │ │ │ ├── dgSolver.h │ │ │ ├── dgWorldBase.cpp │ │ │ ├── dgWorldBase.h │ │ │ └── dllmain.cpp │ │ ├── dgNewtonReferenceGPU │ │ │ ├── CMakeLists.txt │ │ │ ├── dgNewtonPluginStdafx.cpp │ │ │ ├── dgNewtonPluginStdafx.h │ │ │ ├── dgSolver.cpp │ │ │ ├── dgSolver.h │ │ │ ├── dgWorldBase.cpp │ │ │ ├── dgWorldBase.h │ │ │ └── dllmain.cpp │ │ ├── dgNewtonSse4.2 │ │ │ ├── CMakeLists.txt │ │ │ ├── dgNewtonPluginStdafx.cpp │ │ │ ├── dgNewtonPluginStdafx.h │ │ │ ├── dgSolver.cpp │ │ │ ├── dgSolver.h │ │ │ ├── dgWorldBase.cpp │ │ │ ├── dgWorldBase.h │ │ │ └── dllmain.cpp │ │ ├── dgNewtonVulkan │ │ │ ├── CMakeLists.txt │ │ │ ├── dgNewtonPluginStdafx.cpp │ │ │ ├── dgNewtonPluginStdafx.h │ │ │ ├── dgSolver.cpp │ │ │ ├── dgSolver.h │ │ │ ├── dgVulcanContext.cpp │ │ │ ├── dgVulcanContext.h │ │ │ ├── dgVulcanShader.cpp │ │ │ ├── dgVulcanShader.h │ │ │ ├── dgVulcanVector.h │ │ │ ├── dgWorldBase.cpp │ │ │ ├── dgWorldBase.h │ │ │ ├── dllmain.cpp │ │ │ ├── shaders │ │ │ │ └── InitBodyArray.comp │ │ │ └── vulkanSDK │ │ │ │ └── 1.1.106.0 │ │ │ │ ├── Include │ │ │ │ ├── shaderc │ │ │ │ │ ├── env.h │ │ │ │ │ ├── shaderc.h │ │ │ │ │ ├── shaderc.hpp │ │ │ │ │ ├── status.h │ │ │ │ │ └── visibility.h │ │ │ │ └── vulkan │ │ │ │ │ ├── GLSL.std.450.h │ │ │ │ │ ├── spirv.h │ │ │ │ │ ├── spirv.hpp │ │ │ │ │ ├── spirv.hpp11 │ │ │ │ │ ├── spirv.lua │ │ │ │ │ ├── spirv.py │ │ │ │ │ ├── vk_icd.h │ │ │ │ │ ├── vk_layer.h │ │ │ │ │ ├── vk_platform.h │ │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ │ ├── vulkan.h │ │ │ │ │ ├── vulkan.hpp │ │ │ │ │ ├── vulkan_android.h │ │ │ │ │ ├── vulkan_core.h │ │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ │ ├── vulkan_ggp.h │ │ │ │ │ ├── vulkan_ios.h │ │ │ │ │ ├── vulkan_macos.h │ │ │ │ │ ├── vulkan_metal.h │ │ │ │ │ ├── vulkan_vi.h │ │ │ │ │ ├── vulkan_wayland.h │ │ │ │ │ ├── vulkan_win32.h │ │ │ │ │ ├── vulkan_xcb.h │ │ │ │ │ ├── vulkan_xlib.h │ │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Lib │ │ │ │ └── vulkan-1.lib │ │ │ │ ├── Lib32 │ │ │ │ └── vulkan-1.lib │ │ │ │ ├── SDK_LICENSE.rtf │ │ │ │ ├── glslang │ │ │ │ └── glslangValidator.exe │ │ │ │ ├── vulkan.bmp │ │ │ │ └── vulkan.ico │ │ └── dgPhysics │ │ │ ├── CMakeLists.txt │ │ │ ├── dgBallConstraint.cpp │ │ │ ├── dgBallConstraint.h │ │ │ ├── dgBilateralConstraint.cpp │ │ │ ├── dgBilateralConstraint.h │ │ │ ├── dgBody.cpp │ │ │ ├── dgBody.h │ │ │ ├── dgBodyMasterList.cpp │ │ │ ├── dgBodyMasterList.h │ │ │ ├── dgBroadPhase.cpp │ │ │ ├── dgBroadPhase.h │ │ │ ├── dgBroadPhaseAggregate.cpp │ │ │ ├── dgBroadPhaseAggregate.h │ │ │ ├── dgBroadPhaseMixed.cpp │ │ │ ├── dgBroadPhaseMixed.h │ │ │ ├── dgBroadPhaseSegregated.cpp │ │ │ ├── dgBroadPhaseSegregated.h │ │ │ ├── dgCollision.cpp │ │ │ ├── dgCollision.h │ │ │ ├── dgCollisionBVH.cpp │ │ │ ├── dgCollisionBVH.h │ │ │ ├── dgCollisionBox.cpp │ │ │ ├── dgCollisionBox.h │ │ │ ├── dgCollisionCapsule.cpp │ │ │ ├── dgCollisionCapsule.h │ │ │ ├── dgCollisionChamferCylinder.cpp │ │ │ ├── dgCollisionChamferCylinder.h │ │ │ ├── dgCollisionCompound.cpp │ │ │ ├── dgCollisionCompound.h │ │ │ ├── dgCollisionCompoundFractured.cpp │ │ │ ├── dgCollisionCompoundFractured.h │ │ │ ├── dgCollisionCone.cpp │ │ │ ├── dgCollisionCone.h │ │ │ ├── dgCollisionConvex.cpp │ │ │ ├── dgCollisionConvex.h │ │ │ ├── dgCollisionConvexHull.cpp │ │ │ ├── dgCollisionConvexHull.h │ │ │ ├── dgCollisionConvexPolygon.cpp │ │ │ ├── dgCollisionConvexPolygon.h │ │ │ ├── dgCollisionCylinder.cpp │ │ │ ├── dgCollisionCylinder.h │ │ │ ├── dgCollisionDeformableMesh.cpp │ │ │ ├── dgCollisionDeformableMesh.h │ │ │ ├── dgCollisionDeformableSolidMesh.cpp │ │ │ ├── dgCollisionDeformableSolidMesh.h │ │ │ ├── dgCollisionHeightField.cpp │ │ │ ├── dgCollisionHeightField.h │ │ │ ├── dgCollisionIncompressibleParticles.cpp │ │ │ ├── dgCollisionIncompressibleParticles.h │ │ │ ├── dgCollisionInstance.cpp │ │ │ ├── dgCollisionInstance.h │ │ │ ├── dgCollisionLumpedMassParticles.cpp │ │ │ ├── dgCollisionLumpedMassParticles.h │ │ │ ├── dgCollisionMassSpringDamperSystem.cpp │ │ │ ├── dgCollisionMassSpringDamperSystem.h │ │ │ ├── dgCollisionMesh.cpp │ │ │ ├── dgCollisionMesh.h │ │ │ ├── dgCollisionNull.cpp │ │ │ ├── dgCollisionNull.h │ │ │ ├── dgCollisionScene.cpp │ │ │ ├── dgCollisionScene.h │ │ │ ├── dgCollisionSphere.cpp │ │ │ ├── dgCollisionSphere.h │ │ │ ├── dgCollisionUserMesh.cpp │ │ │ ├── dgCollisionUserMesh.h │ │ │ ├── dgConstraint.cpp │ │ │ ├── dgConstraint.h │ │ │ ├── dgContact.cpp │ │ │ ├── dgContact.h │ │ │ ├── dgContactSolver.cpp │ │ │ ├── dgContactSolver.h │ │ │ ├── dgCorkscrewConstraint.cpp │ │ │ ├── dgCorkscrewConstraint.h │ │ │ ├── dgDynamicBody.cpp │ │ │ ├── dgDynamicBody.h │ │ │ ├── dgHingeConstraint.cpp │ │ │ ├── dgHingeConstraint.h │ │ │ ├── dgKinematicBody.cpp │ │ │ ├── dgKinematicBody.h │ │ │ ├── dgNarrowPhaseCollision.cpp │ │ │ ├── dgPhysics.h │ │ │ ├── dgPhysicsStdafx.h │ │ │ ├── dgSkeletonContainer.cpp │ │ │ ├── dgSkeletonContainer.h │ │ │ ├── dgSlidingConstraint.cpp │ │ │ ├── dgSlidingConstraint.h │ │ │ ├── dgUniversalConstraint.cpp │ │ │ ├── dgUniversalConstraint.h │ │ │ ├── dgUpVectorConstraint.cpp │ │ │ ├── dgUpVectorConstraint.h │ │ │ ├── dgUserConstraint.cpp │ │ │ ├── dgUserConstraint.h │ │ │ ├── dgWorld.cpp │ │ │ ├── dgWorld.h │ │ │ ├── dgWorldDynamicUpdate.cpp │ │ │ ├── dgWorldDynamicUpdate.h │ │ │ ├── dgWorldDynamicsParallelSolver.cpp │ │ │ ├── dgWorldDynamicsParallelSolver.h │ │ │ ├── dgWorldDynamicsSimpleSolver.cpp │ │ │ ├── dgWorldPlugins.cpp │ │ │ └── dgWorldPlugins.h │ ├── ogg │ │ ├── CMakeLists.txt │ │ ├── files.xml │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ └── src │ │ │ ├── bitwise.c │ │ │ └── framing.c │ ├── parson │ │ ├── CMakeLists.txt │ │ ├── parson.c │ │ └── parson.h │ ├── physfs │ │ ├── CMakeLists.txt │ │ ├── physfs.c │ │ ├── physfs.h │ │ ├── physfs_archiver_7z.c │ │ ├── physfs_archiver_dir.c │ │ ├── physfs_archiver_grp.c │ │ ├── physfs_archiver_hog.c │ │ ├── physfs_archiver_iso9660.c │ │ ├── physfs_archiver_mvl.c │ │ ├── physfs_archiver_qpak.c │ │ ├── physfs_archiver_slb.c │ │ ├── physfs_archiver_unpacked.c │ │ ├── physfs_archiver_vdf.c │ │ ├── physfs_archiver_wad.c │ │ ├── physfs_archiver_zip.c │ │ ├── physfs_byteorder.c │ │ ├── physfs_casefolding.h │ │ ├── physfs_internal.h │ │ ├── physfs_lzmasdk.h │ │ ├── physfs_miniz.h │ │ ├── physfs_platform_apple.m │ │ ├── physfs_platform_haiku.cpp │ │ ├── physfs_platform_os2.c │ │ ├── physfs_platform_posix.c │ │ ├── physfs_platform_qnx.c │ │ ├── physfs_platform_unix.c │ │ ├── physfs_platform_windows.c │ │ ├── physfs_platform_winrt.cpp │ │ ├── physfs_platforms.h │ │ └── physfs_unicode.c │ ├── rxi_map │ │ ├── CMakeLists.txt │ │ ├── map.c │ │ └── map.h │ ├── sdl │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .editorconfig │ │ ├── .git-hash │ │ ├── .wikiheaders-options │ │ ├── Android.mk │ │ ├── BUGS.txt │ │ ├── CMakeLists.txt │ │ ├── CREDITS.md │ │ ├── INSTALL.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── REVISION.txt │ │ ├── VisualC-GDK │ │ │ ├── SDL.sln │ │ │ ├── SDL │ │ │ │ ├── SDL.vcxproj │ │ │ │ └── SDL.vcxproj.filters │ │ │ ├── SDL_test │ │ │ │ └── SDL_test.vcxproj │ │ │ ├── clean.sh │ │ │ ├── logos │ │ │ │ ├── Logo100x100.png │ │ │ │ ├── Logo150x150.png │ │ │ │ ├── Logo44x44.png │ │ │ │ ├── Logo480x480.png │ │ │ │ └── SplashScreenImage.png │ │ │ └── tests │ │ │ │ ├── testcontroller │ │ │ │ ├── PackageLayout.xml │ │ │ │ ├── testcontroller.vcxproj │ │ │ │ ├── testcontroller.vcxproj.filters │ │ │ │ ├── wingdk │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── xboxone │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── xboxseries │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── testgdk │ │ │ │ ├── PackageLayout.xml │ │ │ │ ├── src │ │ │ │ │ └── testgdk.cpp │ │ │ │ ├── testgdk.vcxproj │ │ │ │ ├── testgdk.vcxproj.filters │ │ │ │ ├── wingdk │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── xboxone │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── xboxseries │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── testsprite │ │ │ │ ├── PackageLayout.xml │ │ │ │ ├── testsprite.vcxproj │ │ │ │ ├── testsprite.vcxproj.filters │ │ │ │ ├── wingdk │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── xboxone │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── xboxseries │ │ │ │ └── MicrosoftGame.config │ │ ├── VisualC │ │ │ ├── SDL.sln │ │ │ ├── SDL │ │ │ │ ├── SDL.vcxproj │ │ │ │ └── SDL.vcxproj.filters │ │ │ ├── SDL_test │ │ │ │ └── SDL_test.vcxproj │ │ │ ├── VisualC │ │ │ │ └── examples │ │ │ │ │ ├── audio │ │ │ │ │ ├── 01-simple-playback │ │ │ │ │ │ └── 01-simple-playback.vcxproj │ │ │ │ │ ├── 02-simple-playback-callback │ │ │ │ │ │ └── 02-simple-playback-callback.vcxproj │ │ │ │ │ └── 03-load-wav │ │ │ │ │ │ └── 03-load-wav.vcxproj │ │ │ │ │ ├── camera │ │ │ │ │ └── 01-read-and-draw │ │ │ │ │ │ └── 01-read-and-draw.vcxproj │ │ │ │ │ ├── game │ │ │ │ │ └── 01-snake │ │ │ │ │ │ └── 01-snake.vcxproj │ │ │ │ │ ├── pen │ │ │ │ │ └── 01-drawing-lines │ │ │ │ │ │ └── 01-drawing-lines.vcxproj │ │ │ │ │ └── renderer │ │ │ │ │ ├── 01-clear │ │ │ │ │ └── 01-clear.vcxproj │ │ │ │ │ ├── 02-primitives │ │ │ │ │ └── 02-primitives.vcxproj │ │ │ │ │ ├── 03-lines │ │ │ │ │ └── 03-lines.vcxproj │ │ │ │ │ ├── 04-points │ │ │ │ │ └── 04-points.vcxproj │ │ │ │ │ ├── 05-rectangles │ │ │ │ │ └── 05-rectangles.vcxproj │ │ │ │ │ ├── 06-textures │ │ │ │ │ └── 06-textures.vcxproj │ │ │ │ │ ├── 07-streaming-textures │ │ │ │ │ └── 07-streaming-textures.vcxproj │ │ │ │ │ ├── 08-rotating-textures │ │ │ │ │ └── 08-rotating-textures.vcxproj │ │ │ │ │ ├── 09-scaling-textures │ │ │ │ │ └── 09-scaling-textures.vcxproj │ │ │ │ │ ├── 10-geometry │ │ │ │ │ └── 10-geometry.vcxproj │ │ │ │ │ ├── 11-color-mods │ │ │ │ │ └── 11-color-mods.vcxproj │ │ │ │ │ ├── 14-viewport │ │ │ │ │ └── 14-viewport.vcxproj │ │ │ │ │ ├── 15-cliprect │ │ │ │ │ └── 15-cliprect.vcxproj │ │ │ │ │ ├── 17-read-pixels │ │ │ │ │ └── 17-read-pixels.vcxproj │ │ │ │ │ └── 18-debug-text │ │ │ │ │ └── 18-debug-text.vcxproj │ │ │ ├── clean.sh │ │ │ ├── examples │ │ │ │ ├── Directory.Build.props │ │ │ │ ├── audio │ │ │ │ │ ├── 01-simple-playback │ │ │ │ │ │ └── 01-simple-playback.vcxproj │ │ │ │ │ ├── 02-simple-playback-callback │ │ │ │ │ │ └── 02-simple-playback-callback.vcxproj │ │ │ │ │ └── 03-load-wav │ │ │ │ │ │ └── 03-load-wav.vcxproj │ │ │ │ ├── camera │ │ │ │ │ └── 01-read-and-draw │ │ │ │ │ │ └── 01-read-and-draw.vcxproj │ │ │ │ ├── demo │ │ │ │ │ ├── 01-snake │ │ │ │ │ │ └── 01-snake.vcxproj │ │ │ │ │ ├── 02-woodeneye-008 │ │ │ │ │ │ └── 02-woodeneye-008.vcxproj │ │ │ │ │ └── 03-infinite-monkeys │ │ │ │ │ │ └── 03-infinite-monkeys.vcxproj │ │ │ │ ├── generate.py │ │ │ │ ├── pen │ │ │ │ │ └── 01-drawing-lines │ │ │ │ │ │ └── 01-drawing-lines.vcxproj │ │ │ │ └── renderer │ │ │ │ │ ├── 01-clear │ │ │ │ │ └── 01-clear.vcxproj │ │ │ │ │ ├── 02-primitives │ │ │ │ │ └── 02-primitives.vcxproj │ │ │ │ │ ├── 03-lines │ │ │ │ │ └── 03-lines.vcxproj │ │ │ │ │ ├── 04-points │ │ │ │ │ └── 04-points.vcxproj │ │ │ │ │ ├── 05-rectangles │ │ │ │ │ └── 05-rectangles.vcxproj │ │ │ │ │ ├── 06-textures │ │ │ │ │ └── 06-textures.vcxproj │ │ │ │ │ ├── 07-streaming-textures │ │ │ │ │ └── 07-streaming-textures.vcxproj │ │ │ │ │ ├── 08-rotating-textures │ │ │ │ │ └── 08-rotating-textures.vcxproj │ │ │ │ │ ├── 09-scaling-textures │ │ │ │ │ └── 09-scaling-textures.vcxproj │ │ │ │ │ ├── 10-geometry │ │ │ │ │ └── 10-geometry.vcxproj │ │ │ │ │ ├── 11-color-mods │ │ │ │ │ └── 11-color-mods.vcxproj │ │ │ │ │ ├── 14-viewport │ │ │ │ │ └── 14-viewport.vcxproj │ │ │ │ │ ├── 15-cliprect │ │ │ │ │ └── 15-cliprect.vcxproj │ │ │ │ │ ├── 17-read-pixels │ │ │ │ │ └── 17-read-pixels.vcxproj │ │ │ │ │ └── 18-debug-text │ │ │ │ │ └── 18-debug-text.vcxproj │ │ │ └── tests │ │ │ │ ├── checkkeys │ │ │ │ └── checkkeys.vcxproj │ │ │ │ ├── loopwave │ │ │ │ └── loopwave.vcxproj │ │ │ │ ├── testatomic │ │ │ │ └── testatomic.vcxproj │ │ │ │ ├── testautomation │ │ │ │ └── testautomation.vcxproj │ │ │ │ ├── testcontroller │ │ │ │ └── testcontroller.vcxproj │ │ │ │ ├── testdialog │ │ │ │ └── testdialog.vcxproj │ │ │ │ ├── testdraw │ │ │ │ └── testdraw.vcxproj │ │ │ │ ├── testfile │ │ │ │ └── testfile.vcxproj │ │ │ │ ├── testgl │ │ │ │ └── testgl.vcxproj │ │ │ │ ├── testgles2 │ │ │ │ └── testgles2.vcxproj │ │ │ │ ├── testoverlay │ │ │ │ └── testoverlay.vcxproj │ │ │ │ ├── testpen │ │ │ │ └── testpen.vcxproj │ │ │ │ ├── testplatform │ │ │ │ └── testplatform.vcxproj │ │ │ │ ├── testpower │ │ │ │ └── testpower.vcxproj │ │ │ │ ├── testrendertarget │ │ │ │ └── testrendertarget.vcxproj │ │ │ │ ├── testrumble │ │ │ │ └── testrumble.vcxproj │ │ │ │ ├── testscale │ │ │ │ └── testscale.vcxproj │ │ │ │ ├── testsensor │ │ │ │ └── testsensor.vcxproj │ │ │ │ ├── testshape │ │ │ │ └── testshape.vcxproj │ │ │ │ ├── testsprite │ │ │ │ └── testsprite.vcxproj │ │ │ │ ├── testsurround │ │ │ │ └── testsurround.vcxproj │ │ │ │ ├── testvulkan │ │ │ │ └── testvulkan.vcxproj │ │ │ │ ├── testwm │ │ │ │ └── testwm.vcxproj │ │ │ │ └── testyuv │ │ │ │ └── testyuv.vcxproj │ │ ├── WhatsNew.txt │ │ ├── Xcode │ │ │ ├── SDL │ │ │ │ ├── Info-Framework.plist │ │ │ │ ├── SDL.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── SDL3 │ │ │ │ │ └── Info.plist │ │ │ │ ├── config.xcconfig │ │ │ │ └── pkg-support │ │ │ │ │ ├── SDL.info │ │ │ │ │ ├── build.xcconfig │ │ │ │ │ ├── resources │ │ │ │ │ ├── INSTALL.md │ │ │ │ │ ├── SDL_DS_Store │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── SDL3Config.cmake │ │ │ │ │ │ └── SDL3ConfigVersion.cmake │ │ │ │ │ └── framework │ │ │ │ │ │ └── INSTALL.md │ │ │ │ │ ├── sdl_logo.pdf │ │ │ │ │ └── share │ │ │ │ │ └── cmake │ │ │ │ │ └── SDL3 │ │ │ │ │ ├── SDL3Config.cmake │ │ │ │ │ └── SDL3ConfigVersion.cmake │ │ │ ├── SDLTest │ │ │ │ ├── SDLTest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── config.xcconfig │ │ │ └── XcodeDocSet │ │ │ │ └── Doxyfile │ │ ├── android-project │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Application.mk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── src │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── YourSourceHere.c │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libsdl │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ │ ├── SDL.java │ │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ │ ├── SDLControllerManager.java │ │ │ │ │ │ ├── SDLDummyEdit.java │ │ │ │ │ │ ├── SDLInputConnection.java │ │ │ │ │ │ └── SDLSurface.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── build-scripts │ │ │ ├── SDL_migration.cocci │ │ │ ├── add-source-to-projects.pl │ │ │ ├── androidbuildlibs.sh │ │ │ ├── build-release.py │ │ │ ├── build-web-examples.pl │ │ │ ├── casefolding.txt │ │ │ ├── check_android_jni.py │ │ │ ├── check_stdlib_usage.py │ │ │ ├── clang-format-src.sh │ │ │ ├── cmake-toolchain-mingw64-i686.cmake │ │ │ ├── cmake-toolchain-mingw64-x86_64.cmake │ │ │ ├── cmake-toolchain-qnx-aarch64le.cmake │ │ │ ├── cmake-toolchain-qnx-x86_64.cmake │ │ │ ├── codechecker-buildbot.sh │ │ │ ├── create-android-project.py │ │ │ ├── create-release.py │ │ │ ├── fnsince.pl │ │ │ ├── gen_audio_channel_conversion.c │ │ │ ├── git-pre-push-hook.pl │ │ │ ├── makecasefoldhashtable.pl │ │ │ ├── mkinstalldirs │ │ │ ├── pkg-support │ │ │ │ ├── android │ │ │ │ │ ├── INSTALL.md.in │ │ │ │ │ └── aar │ │ │ │ │ │ ├── __main__.py.in │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── SDL3Config.cmake │ │ │ │ │ │ └── SDL3ConfigVersion.cmake.in │ │ │ │ │ │ └── description.json.in │ │ │ │ ├── mingw │ │ │ │ │ ├── INSTALL.md │ │ │ │ │ └── cmake │ │ │ │ │ │ ├── SDL3Config.cmake │ │ │ │ │ │ └── SDL3ConfigVersion.cmake │ │ │ │ ├── msvc │ │ │ │ │ ├── Directory.Build.props │ │ │ │ │ ├── INSTALL.md │ │ │ │ │ ├── arm64 │ │ │ │ │ │ └── INSTALL.md.in │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── SDL3Config.cmake.in │ │ │ │ │ │ └── SDL3ConfigVersion.cmake.in │ │ │ │ │ ├── x64 │ │ │ │ │ │ └── INSTALL.md.in │ │ │ │ │ └── x86 │ │ │ │ │ │ └── INSTALL.md.in │ │ │ │ └── source │ │ │ │ │ ├── SDL_revision.h.cmake.in │ │ │ │ │ └── SDL_revision.h.in │ │ │ ├── release-info.json │ │ │ ├── rename_api.py │ │ │ ├── rename_headers.py │ │ │ ├── rename_macros.py │ │ │ ├── rename_symbols.py │ │ │ ├── rename_types.py │ │ │ ├── setup-gdk-desktop.py │ │ │ ├── showrev.sh │ │ │ ├── strip_fPIC.sh │ │ │ ├── test-versioning.sh │ │ │ ├── update-copyright.sh │ │ │ ├── update-version.sh │ │ │ ├── updaterev.sh │ │ │ └── wikiheaders.pl │ │ ├── cmake │ │ │ ├── 3rdparty.cmake │ │ │ ├── CPackProjectConfig.cmake.in │ │ │ ├── FindFFmpeg.cmake │ │ │ ├── FindLibUSB.cmake │ │ │ ├── GetGitRevisionDescription.cmake │ │ │ ├── GetGitRevisionDescription.cmake.in │ │ │ ├── PkgConfigHelper.cmake │ │ │ ├── PreseedEmscriptenCache.cmake │ │ │ ├── PreseedMSVCCache.cmake │ │ │ ├── SDL3Config.cmake.in │ │ │ ├── SDL3jarTargets.cmake.in │ │ │ ├── android │ │ │ │ ├── FindSdlAndroid.cmake │ │ │ │ ├── FindSdlAndroidBuildTools.cmake │ │ │ │ ├── FindSdlAndroidPlatform.cmake │ │ │ │ ├── SdlAndroidFunctions.cmake │ │ │ │ └── SdlAndroidScript.cmake │ │ │ ├── cmake_uninstall.cmake.in │ │ │ ├── macros.cmake │ │ │ ├── sdl3.pc.in │ │ │ ├── sdlchecks.cmake │ │ │ ├── sdlcompilers.cmake │ │ │ ├── sdlcpu.cmake │ │ │ ├── sdlmanpages.cmake │ │ │ ├── sdlplatform.cmake │ │ │ ├── sdltargets.cmake │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc_sdl_slash.c │ │ │ │ ├── main.swift │ │ │ │ ├── main_cli.c │ │ │ │ ├── main_gui.c │ │ │ │ ├── main_lib.c │ │ │ │ ├── sdltest.c │ │ │ │ ├── swift │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── shim.h │ │ │ │ └── test_pkgconfig.sh │ │ │ └── xxd.py │ │ ├── docs │ │ │ ├── INTRO-androidstudio.md │ │ │ ├── INTRO-cmake.md │ │ │ ├── INTRO-emscripten.md │ │ │ ├── INTRO-visualstudio.md │ │ │ ├── INTRO-xcode.md │ │ │ ├── README-android.md │ │ │ ├── README-bsd.md │ │ │ ├── README-cmake.md │ │ │ ├── README-contributing.md │ │ │ ├── README-documentation-rules.md │ │ │ ├── README-dynapi.md │ │ │ ├── README-emscripten.md │ │ │ ├── README-gdk.md │ │ │ ├── README-haiku.md │ │ │ ├── README-highdpi.md │ │ │ ├── README-ios.md │ │ │ ├── README-kmsbsd.md │ │ │ ├── README-linux.md │ │ │ ├── README-macos.md │ │ │ ├── README-main-functions.md │ │ │ ├── README-migration.md │ │ │ ├── README-n3ds.md │ │ │ ├── README-ngage.md │ │ │ ├── README-platforms.md │ │ │ ├── README-porting.md │ │ │ ├── README-ps2.md │ │ │ ├── README-ps4.md │ │ │ ├── README-ps5.md │ │ │ ├── README-psp.md │ │ │ ├── README-riscos.md │ │ │ ├── README-steamos.md │ │ │ ├── README-strings.md │ │ │ ├── README-switch.md │ │ │ ├── README-touch.md │ │ │ ├── README-versions.md │ │ │ ├── README-vita.md │ │ │ ├── README-wayland.md │ │ │ ├── README-windows.md │ │ │ ├── README.md │ │ │ ├── doxyfile │ │ │ ├── hello.c │ │ │ └── release_checklist.md │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── asyncio │ │ │ │ ├── 01-load-bitmaps │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── load-bitmaps.c │ │ │ │ │ └── thumbnail.png │ │ │ │ └── description.txt │ │ │ ├── audio │ │ │ │ ├── 01-simple-playback │ │ │ │ │ ├── README.txt │ │ │ │ │ └── simple-playback.c │ │ │ │ ├── 02-simple-playback-callback │ │ │ │ │ ├── README.txt │ │ │ │ │ └── simple-playback-callback.c │ │ │ │ ├── 03-load-wav │ │ │ │ │ ├── README.txt │ │ │ │ │ └── load-wav.c │ │ │ │ ├── 04-multiple-streams │ │ │ │ │ ├── README.txt │ │ │ │ │ └── multiple-streams.c │ │ │ │ ├── onmouseover.webp │ │ │ │ └── thumbnail.png │ │ │ ├── camera │ │ │ │ └── 01-read-and-draw │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── read-and-draw.c │ │ │ │ │ └── thumbnail.png │ │ │ ├── categories.txt │ │ │ ├── demo │ │ │ │ ├── 01-snake │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── snake.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 02-woodeneye-008 │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ └── woodeneye-008.c │ │ │ │ ├── 03-infinite-monkeys │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── infinite-monkeys.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 04-bytepusher │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── bytepusher.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ └── description.txt │ │ │ ├── highlight-plugin.lua │ │ │ ├── input │ │ │ │ ├── 01-joystick-polling │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── joystick-polling.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ └── 02-joystick-events │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── joystick-events.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ ├── pen │ │ │ │ └── 01-drawing-lines │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── drawing-lines.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ ├── renderer │ │ │ │ ├── 01-clear │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── clear.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 02-primitives │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── primitives.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 03-lines │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── lines.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 04-points │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── points.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 05-rectangles │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── rectangles.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 06-textures │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── textures.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 07-streaming-textures │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── streaming-textures.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 08-rotating-textures │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── rotating-textures.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 09-scaling-textures │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── scaling-textures.c │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 10-geometry │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── geometry.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 11-color-mods │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── color-mods.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 14-viewport │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ └── viewport.c │ │ │ │ ├── 15-cliprect │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── cliprect.c │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── 17-read-pixels │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── onmouseover.webp │ │ │ │ │ ├── read-pixels.c │ │ │ │ │ └── thumbnail.png │ │ │ │ └── 18-debug-text │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── debug-text.c │ │ │ │ │ └── thumbnail.png │ │ │ ├── template-category.html │ │ │ ├── template-homepage.html │ │ │ ├── template-placeholder.png │ │ │ ├── template.c │ │ │ ├── template.css │ │ │ └── template.html │ │ ├── include │ │ │ ├── SDL3 │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_asyncio.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_begin_code.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_camera.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_close_code.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_dialog.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamepad.h │ │ │ │ ├── SDL_gpu.h │ │ │ │ ├── SDL_guid.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hidapi.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_init.h │ │ │ │ ├── SDL_intrin.h │ │ │ │ ├── SDL_iostream.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_locale.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_main_impl.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_metal.h │ │ │ │ ├── SDL_misc.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_oldnames.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_pen.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_platform_defines.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_process.h │ │ │ │ ├── SDL_properties.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_sensor.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_storage.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.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_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_time.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_tray.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ └── SDL_vulkan.h │ │ │ └── build_config │ │ │ │ ├── SDL_build_config.h │ │ │ │ ├── SDL_build_config.h.cmake │ │ │ │ ├── SDL_build_config_android.h │ │ │ │ ├── SDL_build_config_ios.h │ │ │ │ ├── SDL_build_config_macos.h │ │ │ │ ├── SDL_build_config_minimal.h │ │ │ │ ├── SDL_build_config_windows.h │ │ │ │ ├── SDL_build_config_wingdk.h │ │ │ │ ├── SDL_build_config_xbox.h │ │ │ │ └── SDL_revision.h.cmake │ │ ├── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_guid.c │ │ │ ├── SDL_hashtable.c │ │ │ ├── SDL_hashtable.h │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_hints_c.h │ │ │ ├── SDL_internal.h │ │ │ ├── SDL_list.c │ │ │ ├── SDL_list.h │ │ │ ├── SDL_log.c │ │ │ ├── SDL_log_c.h │ │ │ ├── SDL_properties.c │ │ │ ├── SDL_properties_c.h │ │ │ ├── SDL_utils.c │ │ │ ├── SDL_utils_c.h │ │ │ ├── atomic │ │ │ │ ├── SDL_atomic.c │ │ │ │ └── SDL_spinlock.c │ │ │ ├── audio │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audio_channel_converters.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audioqueue.c │ │ │ │ ├── SDL_audioqueue.h │ │ │ │ ├── SDL_audioresample.c │ │ │ │ ├── SDL_audioresample.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ ├── aaudio │ │ │ │ │ ├── SDL_aaudio.c │ │ │ │ │ ├── SDL_aaudio.h │ │ │ │ │ └── SDL_aaudiofuncs.h │ │ │ │ ├── alsa │ │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ │ └── SDL_alsa_audio.h │ │ │ │ ├── coreaudio │ │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ │ └── SDL_coreaudio.m │ │ │ │ ├── directsound │ │ │ │ │ ├── SDL_directsound.c │ │ │ │ │ └── SDL_directsound.h │ │ │ │ ├── disk │ │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ │ └── SDL_diskaudio.h │ │ │ │ ├── dsp │ │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ │ └── SDL_dspaudio.h │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ │ └── SDL_dummyaudio.h │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ │ └── SDL_haikuaudio.h │ │ │ │ ├── jack │ │ │ │ │ ├── SDL_jackaudio.c │ │ │ │ │ └── SDL_jackaudio.h │ │ │ │ ├── n3ds │ │ │ │ │ ├── SDL_n3dsaudio.c │ │ │ │ │ └── SDL_n3dsaudio.h │ │ │ │ ├── netbsd │ │ │ │ │ ├── SDL_netbsdaudio.c │ │ │ │ │ └── SDL_netbsdaudio.h │ │ │ │ ├── openslES │ │ │ │ │ ├── SDL_openslES.c │ │ │ │ │ └── SDL_openslES.h │ │ │ │ ├── pipewire │ │ │ │ │ ├── SDL_pipewire.c │ │ │ │ │ └── SDL_pipewire.h │ │ │ │ ├── ps2 │ │ │ │ │ ├── SDL_ps2audio.c │ │ │ │ │ └── SDL_ps2audio.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ │ └── SDL_pspaudio.h │ │ │ │ ├── pulseaudio │ │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ │ └── SDL_pulseaudio.h │ │ │ │ ├── qnx │ │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ │ └── SDL_qsa_audio.h │ │ │ │ ├── sndio │ │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ │ └── SDL_sndioaudio.h │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_vitaaudio.c │ │ │ │ │ └── SDL_vitaaudio.h │ │ │ │ └── wasapi │ │ │ │ │ ├── SDL_wasapi.c │ │ │ │ │ └── SDL_wasapi.h │ │ │ ├── camera │ │ │ │ ├── SDL_camera.c │ │ │ │ ├── SDL_camera_c.h │ │ │ │ ├── SDL_syscamera.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_camera_android.c │ │ │ │ ├── coremedia │ │ │ │ │ └── SDL_camera_coremedia.m │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_camera_dummy.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_camera_emscripten.c │ │ │ │ ├── mediafoundation │ │ │ │ │ └── SDL_camera_mediafoundation.c │ │ │ │ ├── pipewire │ │ │ │ │ └── SDL_camera_pipewire.c │ │ │ │ ├── v4l2 │ │ │ │ │ └── SDL_camera_v4l2.c │ │ │ │ └── vita │ │ │ │ │ └── SDL_camera_vita.c │ │ │ ├── core │ │ │ │ ├── SDL_core_unsupported.c │ │ │ │ ├── android │ │ │ │ │ ├── SDL_android.c │ │ │ │ │ └── SDL_android.h │ │ │ │ ├── freebsd │ │ │ │ │ ├── SDL_evdev_kbd_default_keyaccmap.h │ │ │ │ │ └── SDL_evdev_kbd_freebsd.c │ │ │ │ ├── gdk │ │ │ │ │ ├── SDL_gdk.cpp │ │ │ │ │ └── SDL_gdk.h │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_BApp.h │ │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ │ └── SDL_BeApp.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_dbus.c │ │ │ │ │ ├── SDL_dbus.h │ │ │ │ │ ├── SDL_evdev.c │ │ │ │ │ ├── SDL_evdev.h │ │ │ │ │ ├── SDL_evdev_capabilities.c │ │ │ │ │ ├── SDL_evdev_capabilities.h │ │ │ │ │ ├── SDL_evdev_kbd.c │ │ │ │ │ ├── SDL_evdev_kbd.h │ │ │ │ │ ├── SDL_evdev_kbd_default_accents.h │ │ │ │ │ ├── SDL_evdev_kbd_default_keymap.h │ │ │ │ │ ├── SDL_fcitx.c │ │ │ │ │ ├── SDL_fcitx.h │ │ │ │ │ ├── SDL_ibus.c │ │ │ │ │ ├── SDL_ibus.h │ │ │ │ │ ├── SDL_ime.c │ │ │ │ │ ├── SDL_ime.h │ │ │ │ │ ├── SDL_system_theme.c │ │ │ │ │ ├── SDL_system_theme.h │ │ │ │ │ ├── SDL_threadprio.c │ │ │ │ │ ├── SDL_udev.c │ │ │ │ │ └── SDL_udev.h │ │ │ │ ├── openbsd │ │ │ │ │ ├── SDL_wscons.h │ │ │ │ │ ├── SDL_wscons_kbd.c │ │ │ │ │ └── SDL_wscons_mouse.c │ │ │ │ ├── unix │ │ │ │ │ ├── SDL_appid.c │ │ │ │ │ ├── SDL_appid.h │ │ │ │ │ ├── SDL_poll.c │ │ │ │ │ └── SDL_poll.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_directx.h │ │ │ │ │ ├── SDL_hid.c │ │ │ │ │ ├── SDL_hid.h │ │ │ │ │ ├── SDL_immdevice.c │ │ │ │ │ ├── SDL_immdevice.h │ │ │ │ │ ├── SDL_windows.c │ │ │ │ │ ├── SDL_windows.h │ │ │ │ │ ├── SDL_xinput.c │ │ │ │ │ ├── SDL_xinput.h │ │ │ │ │ ├── pch.c │ │ │ │ │ ├── pch_cpp.cpp │ │ │ │ │ └── version.rc │ │ │ ├── cpuinfo │ │ │ │ ├── SDL_cpuinfo.c │ │ │ │ └── SDL_cpuinfo_c.h │ │ │ ├── dialog │ │ │ │ ├── SDL_dialog.c │ │ │ │ ├── SDL_dialog.h │ │ │ │ ├── SDL_dialog_utils.c │ │ │ │ ├── SDL_dialog_utils.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_androiddialog.c │ │ │ │ ├── cocoa │ │ │ │ │ └── SDL_cocoadialog.m │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_dummydialog.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_haikudialog.cc │ │ │ │ ├── unix │ │ │ │ │ ├── SDL_portaldialog.c │ │ │ │ │ ├── SDL_portaldialog.h │ │ │ │ │ ├── SDL_unixdialog.c │ │ │ │ │ ├── SDL_zenitydialog.c │ │ │ │ │ └── SDL_zenitydialog.h │ │ │ │ └── windows │ │ │ │ │ └── SDL_windowsdialog.c │ │ │ ├── dynapi │ │ │ │ ├── SDL_dynapi.c │ │ │ │ ├── SDL_dynapi.h │ │ │ │ ├── SDL_dynapi.sym │ │ │ │ ├── SDL_dynapi_overrides.h │ │ │ │ ├── SDL_dynapi_procs.h │ │ │ │ ├── SDL_dynapi_unsupported.h │ │ │ │ └── gendynapi.py │ │ │ ├── events │ │ │ │ ├── SDL_categories.c │ │ │ │ ├── SDL_categories_c.h │ │ │ │ ├── SDL_clipboardevents.c │ │ │ │ ├── SDL_clipboardevents_c.h │ │ │ │ ├── SDL_displayevents.c │ │ │ │ ├── SDL_displayevents_c.h │ │ │ │ ├── SDL_dropevents.c │ │ │ │ ├── SDL_dropevents_c.h │ │ │ │ ├── SDL_events.c │ │ │ │ ├── SDL_events_c.h │ │ │ │ ├── SDL_keyboard.c │ │ │ │ ├── SDL_keyboard_c.h │ │ │ │ ├── SDL_keymap.c │ │ │ │ ├── SDL_keymap_c.h │ │ │ │ ├── SDL_keysym_to_keycode.c │ │ │ │ ├── SDL_keysym_to_keycode_c.h │ │ │ │ ├── SDL_keysym_to_scancode.c │ │ │ │ ├── SDL_keysym_to_scancode_c.h │ │ │ │ ├── SDL_mouse.c │ │ │ │ ├── SDL_mouse_c.h │ │ │ │ ├── SDL_pen.c │ │ │ │ ├── SDL_pen_c.h │ │ │ │ ├── SDL_quit.c │ │ │ │ ├── SDL_scancode_tables.c │ │ │ │ ├── SDL_scancode_tables_c.h │ │ │ │ ├── SDL_touch.c │ │ │ │ ├── SDL_touch_c.h │ │ │ │ ├── SDL_windowevents.c │ │ │ │ ├── SDL_windowevents_c.h │ │ │ │ ├── blank_cursor.h │ │ │ │ ├── default_cursor.h │ │ │ │ ├── imKStoUCS.c │ │ │ │ ├── imKStoUCS.h │ │ │ │ ├── scancodes_darwin.h │ │ │ │ ├── scancodes_linux.h │ │ │ │ ├── scancodes_windows.h │ │ │ │ └── scancodes_xfree86.h │ │ │ ├── filesystem │ │ │ │ ├── SDL_filesystem.c │ │ │ │ ├── SDL_filesystem_c.h │ │ │ │ ├── SDL_sysfilesystem.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── cocoa │ │ │ │ │ └── SDL_sysfilesystem.m │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_sysfilesystem.c │ │ │ │ │ └── SDL_sysfsops.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── gdk │ │ │ │ │ └── SDL_sysfilesystem.cpp │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── posix │ │ │ │ │ └── SDL_sysfsops.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── riscos │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_sysfilesystem.c │ │ │ │ │ └── SDL_sysfsops.c │ │ │ ├── gpu │ │ │ │ ├── SDL_gpu.c │ │ │ │ ├── SDL_sysgpu.h │ │ │ │ ├── d3d12 │ │ │ │ │ ├── D3D12_Blit.h │ │ │ │ │ ├── D3D_Blit.hlsl │ │ │ │ │ ├── SDL_gpu_d3d12.c │ │ │ │ │ ├── compile_shaders.bat │ │ │ │ │ └── compile_shaders_xbox.bat │ │ │ │ ├── metal │ │ │ │ │ ├── Metal_Blit.h │ │ │ │ │ ├── Metal_Blit.metal │ │ │ │ │ ├── SDL_gpu_metal.m │ │ │ │ │ └── compile_shaders.sh │ │ │ │ └── vulkan │ │ │ │ │ ├── SDL_gpu_vulkan.c │ │ │ │ │ └── SDL_gpu_vulkan_vkfuncs.h │ │ │ ├── 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 │ │ │ ├── hidapi │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── BUILD.autotools.md │ │ │ │ ├── BUILD.cmake.md │ │ │ │ ├── BUILD.md │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HACKING.txt │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── SDL_hidapi.c │ │ │ │ ├── SDL_hidapi_android.h │ │ │ │ ├── SDL_hidapi_c.h │ │ │ │ ├── SDL_hidapi_ios.h │ │ │ │ ├── SDL_hidapi_libusb.h │ │ │ │ ├── SDL_hidapi_linux.h │ │ │ │ ├── SDL_hidapi_mac.h │ │ │ │ ├── SDL_hidapi_netbsd.h │ │ │ │ ├── SDL_hidapi_steamxbox.h │ │ │ │ ├── SDL_hidapi_windows.h │ │ │ │ ├── VERSION │ │ │ │ ├── android │ │ │ │ │ ├── hid.cpp │ │ │ │ │ └── hid.h │ │ │ │ ├── bootstrap │ │ │ │ ├── configure.ac │ │ │ │ ├── dist │ │ │ │ │ └── hidapi.podspec │ │ │ │ ├── documentation │ │ │ │ │ ├── cmake-gui-drop-down.png │ │ │ │ │ └── cmake-gui-highlights.png │ │ │ │ ├── doxygen │ │ │ │ │ ├── Doxyfile │ │ │ │ │ └── main_page.md │ │ │ │ ├── hidapi │ │ │ │ │ └── hidapi.h │ │ │ │ ├── hidtest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── test.c │ │ │ │ ├── ios │ │ │ │ │ └── hid.m │ │ │ │ ├── libusb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.haiku │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── hid.c │ │ │ │ │ ├── hidapi_libusb.h │ │ │ │ │ ├── hidapi_thread_pthread.h │ │ │ │ │ └── hidapi_thread_sdl.h │ │ │ │ ├── linux │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hid.c │ │ │ │ ├── m4 │ │ │ │ │ ├── ax_pthread.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── mac │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── hid.c │ │ │ │ │ └── hidapi_darwin.h │ │ │ │ ├── meson.build │ │ │ │ ├── netbsd │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README.md │ │ │ │ │ └── hid.c │ │ │ │ ├── pc │ │ │ │ │ ├── hidapi-hidraw.pc.in │ │ │ │ │ ├── hidapi-libusb.pc.in │ │ │ │ │ ├── hidapi-netbsd.pc.in │ │ │ │ │ └── hidapi.pc.in │ │ │ │ ├── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── cmake │ │ │ │ │ │ └── hidapi-config.cmake.in │ │ │ │ ├── subprojects │ │ │ │ │ ├── README.md │ │ │ │ │ └── hidapi_build_cmake │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── testgui │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── Makefile.mac │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── TestGUI.app.in │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ └── Signal11.icns │ │ │ │ │ ├── copy_to_bundle.sh │ │ │ │ │ ├── mac_support.h │ │ │ │ │ ├── mac_support_cocoa.m │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── testgui.sln │ │ │ │ │ └── testgui.vcproj │ │ │ │ ├── udev │ │ │ │ │ └── 69-hid.rules │ │ │ │ └── windows │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── hid.c │ │ │ │ │ ├── hidapi.rc │ │ │ │ │ ├── hidapi.sln │ │ │ │ │ ├── hidapi.vcproj │ │ │ │ │ ├── hidapi.vcxproj │ │ │ │ │ ├── hidapi_cfgmgr32.h │ │ │ │ │ ├── hidapi_descriptor_reconstruct.c │ │ │ │ │ ├── hidapi_descriptor_reconstruct.h │ │ │ │ │ ├── hidapi_hidclass.h │ │ │ │ │ ├── hidapi_hidpi.h │ │ │ │ │ ├── hidapi_hidsdi.h │ │ │ │ │ ├── hidapi_winapi.h │ │ │ │ │ ├── hidtest.vcproj │ │ │ │ │ ├── hidtest.vcxproj │ │ │ │ │ ├── pp_data_dump │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README.md │ │ │ │ │ └── pp_data_dump.c │ │ │ │ │ └── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ ├── 045E_02FF_0005_0001.pp_data │ │ │ │ │ ├── 045E_02FF_0005_0001_expected.rpt_desc │ │ │ │ │ ├── 045E_02FF_0005_0001_real.rpt_desc │ │ │ │ │ ├── 046A_0011_0006_0001.pp_data │ │ │ │ │ ├── 046A_0011_0006_0001_expected.rpt_desc │ │ │ │ │ ├── 046A_0011_0006_0001_real.rpt_desc │ │ │ │ │ ├── 046D_0A37_0001_000C.pp_data │ │ │ │ │ ├── 046D_0A37_0001_000C_expected.rpt_desc │ │ │ │ │ ├── 046D_0A37_0001_000C_real.rpt_desc │ │ │ │ │ ├── 046D_B010_0001_000C.pp_data │ │ │ │ │ ├── 046D_B010_0001_000C_expected.rpt_desc │ │ │ │ │ ├── 046D_B010_0001_000C_real.rpt_desc │ │ │ │ │ ├── 046D_B010_0001_FF00.pp_data │ │ │ │ │ ├── 046D_B010_0001_FF00_expected.rpt_desc │ │ │ │ │ ├── 046D_B010_0001_FF00_real.rpt_desc │ │ │ │ │ ├── 046D_B010_0002_0001.pp_data │ │ │ │ │ ├── 046D_B010_0002_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_B010_0002_0001_real.rpt_desc │ │ │ │ │ ├── 046D_B010_0002_FF00.pp_data │ │ │ │ │ ├── 046D_B010_0002_FF00_expected.rpt_desc │ │ │ │ │ ├── 046D_B010_0002_FF00_real.rpt_desc │ │ │ │ │ ├── 046D_B010_0006_0001.pp_data │ │ │ │ │ ├── 046D_B010_0006_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_B010_0006_0001_real.rpt_desc │ │ │ │ │ ├── 046D_C077_0002_0001.pp_data │ │ │ │ │ ├── 046D_C077_0002_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_C077_0002_0001_real.rpt_desc │ │ │ │ │ ├── 046D_C283_0004_0001.pp_data │ │ │ │ │ ├── 046D_C283_0004_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_C283_0004_0001_real.rpt_desc │ │ │ │ │ ├── 046D_C52F_0001_000C.pp_data │ │ │ │ │ ├── 046D_C52F_0001_000C_expected.rpt_desc │ │ │ │ │ ├── 046D_C52F_0001_000C_real.rpt_desc │ │ │ │ │ ├── 046D_C52F_0001_FF00.pp_data │ │ │ │ │ ├── 046D_C52F_0001_FF00_expected.rpt_desc │ │ │ │ │ ├── 046D_C52F_0001_FF00_real.rpt_desc │ │ │ │ │ ├── 046D_C52F_0002_0001.pp_data │ │ │ │ │ ├── 046D_C52F_0002_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_C52F_0002_0001_real.rpt_desc │ │ │ │ │ ├── 046D_C52F_0002_FF00.pp_data │ │ │ │ │ ├── 046D_C52F_0002_FF00_expected.rpt_desc │ │ │ │ │ ├── 046D_C52F_0002_FF00_real.rpt_desc │ │ │ │ │ ├── 046D_C534_0001_000C.pp_data │ │ │ │ │ ├── 046D_C534_0001_000C_expected.rpt_desc │ │ │ │ │ ├── 046D_C534_0001_000C_real.rpt_desc │ │ │ │ │ ├── 046D_C534_0001_FF00.pp_data │ │ │ │ │ ├── 046D_C534_0001_FF00_expected.rpt_desc │ │ │ │ │ ├── 046D_C534_0001_FF00_real.rpt_desc │ │ │ │ │ ├── 046D_C534_0002_0001.pp_data │ │ │ │ │ ├── 046D_C534_0002_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_C534_0002_0001_real.rpt_desc │ │ │ │ │ ├── 046D_C534_0002_FF00.pp_data │ │ │ │ │ ├── 046D_C534_0002_FF00_expected.rpt_desc │ │ │ │ │ ├── 046D_C534_0002_FF00_real.rpt_desc │ │ │ │ │ ├── 046D_C534_0006_0001.pp_data │ │ │ │ │ ├── 046D_C534_0006_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_C534_0006_0001_real.rpt_desc │ │ │ │ │ ├── 046D_C534_0080_0001.pp_data │ │ │ │ │ ├── 046D_C534_0080_0001_expected.rpt_desc │ │ │ │ │ ├── 046D_C534_0080_0001_real.rpt_desc │ │ │ │ │ ├── 047F_C056_0001_000C.pp_data │ │ │ │ │ ├── 047F_C056_0001_000C_expected.rpt_desc │ │ │ │ │ ├── 047F_C056_0001_000C_real.rpt_desc │ │ │ │ │ ├── 047F_C056_0003_FFA0.pp_data │ │ │ │ │ ├── 047F_C056_0003_FFA0_expected.rpt_desc │ │ │ │ │ ├── 047F_C056_0003_FFA0_real.rpt_desc │ │ │ │ │ ├── 047F_C056_0005_000B.pp_data │ │ │ │ │ ├── 047F_C056_0005_000B_expected.rpt_desc │ │ │ │ │ ├── 047F_C056_0005_000B_real.rpt_desc │ │ │ │ │ ├── 17CC_1130_0000_FF01.pp_data │ │ │ │ │ ├── 17CC_1130_0000_FF01_expected.rpt_desc │ │ │ │ │ └── 17CC_1130_0000_FF01_real.rpt_desc │ │ │ │ │ └── hid_report_reconstructor_test.c │ │ │ ├── io │ │ │ │ ├── SDL_asyncio.c │ │ │ │ ├── SDL_asyncio_c.h │ │ │ │ ├── SDL_iostream.c │ │ │ │ ├── SDL_iostream_c.h │ │ │ │ ├── SDL_sysasyncio.h │ │ │ │ ├── generic │ │ │ │ │ └── SDL_asyncio_generic.c │ │ │ │ ├── io_uring │ │ │ │ │ └── SDL_asyncio_liburing.c │ │ │ │ ├── n3ds │ │ │ │ │ ├── SDL_iostreamromfs.c │ │ │ │ │ └── SDL_iostreamromfs.h │ │ │ │ └── windows │ │ │ │ │ └── SDL_asyncio_windows_ioring.c │ │ │ ├── joystick │ │ │ │ ├── SDL_gamepad.c │ │ │ │ ├── SDL_gamepad_c.h │ │ │ │ ├── SDL_gamepad_db.h │ │ │ │ ├── SDL_joystick.c │ │ │ │ ├── SDL_joystick_c.h │ │ │ │ ├── SDL_steam_virtual_gamepad.c │ │ │ │ ├── SDL_steam_virtual_gamepad.h │ │ │ │ ├── SDL_sysjoystick.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── apple │ │ │ │ │ ├── SDL_mfijoystick.m │ │ │ │ │ └── SDL_mfijoystick_c.h │ │ │ │ ├── bsd │ │ │ │ │ └── SDL_bsdjoystick.c │ │ │ │ ├── check_8bitdo.sh │ │ │ │ ├── controller_list.h │ │ │ │ ├── controller_type.c │ │ │ │ ├── controller_type.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_iokitjoystick.c │ │ │ │ │ └── SDL_iokitjoystick_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── gdk │ │ │ │ │ └── SDL_gameinputjoystick.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_haikujoystick.cc │ │ │ │ ├── hidapi │ │ │ │ │ ├── SDL_hidapi_combined.c │ │ │ │ │ ├── SDL_hidapi_gamecube.c │ │ │ │ │ ├── SDL_hidapi_luna.c │ │ │ │ │ ├── SDL_hidapi_nintendo.h │ │ │ │ │ ├── SDL_hidapi_ps3.c │ │ │ │ │ ├── SDL_hidapi_ps4.c │ │ │ │ │ ├── SDL_hidapi_ps5.c │ │ │ │ │ ├── SDL_hidapi_rumble.c │ │ │ │ │ ├── SDL_hidapi_rumble.h │ │ │ │ │ ├── SDL_hidapi_shield.c │ │ │ │ │ ├── SDL_hidapi_stadia.c │ │ │ │ │ ├── SDL_hidapi_steam.c │ │ │ │ │ ├── SDL_hidapi_steam_hori.c │ │ │ │ │ ├── SDL_hidapi_steamdeck.c │ │ │ │ │ ├── SDL_hidapi_switch.c │ │ │ │ │ ├── SDL_hidapi_wii.c │ │ │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ │ │ ├── SDL_hidapi_xbox360w.c │ │ │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ │ │ ├── SDL_hidapijoystick.c │ │ │ │ │ ├── SDL_hidapijoystick_c.h │ │ │ │ │ └── steam │ │ │ │ │ │ ├── controller_constants.h │ │ │ │ │ │ └── controller_structs.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── sort_controllers.py │ │ │ │ ├── usb_ids.h │ │ │ │ ├── virtual │ │ │ │ │ ├── SDL_virtualjoystick.c │ │ │ │ │ └── SDL_virtualjoystick_c.h │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ │ ├── SDL_rawinputjoystick.c │ │ │ │ │ ├── SDL_rawinputjoystick_c.h │ │ │ │ │ ├── SDL_windows_gaming_input.c │ │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ ├── libm │ │ │ │ ├── e_atan2.c │ │ │ │ ├── e_exp.c │ │ │ │ ├── e_fmod.c │ │ │ │ ├── e_log.c │ │ │ │ ├── e_log10.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── k_tan.c │ │ │ │ ├── math_libm.h │ │ │ │ ├── math_private.h │ │ │ │ ├── s_atan.c │ │ │ │ ├── s_copysign.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_isinf.c │ │ │ │ ├── s_isinff.c │ │ │ │ ├── s_isnan.c │ │ │ │ ├── s_isnanf.c │ │ │ │ ├── s_modf.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_sin.c │ │ │ │ └── s_tan.c │ │ │ ├── loadso │ │ │ │ ├── dlopen │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── locale │ │ │ │ ├── SDL_locale.c │ │ │ │ ├── SDL_syslocale.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syslocale.cc │ │ │ │ ├── macos │ │ │ │ │ └── SDL_syslocale.m │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_syslocale.c │ │ │ ├── main │ │ │ │ ├── SDL_main_callbacks.c │ │ │ │ ├── SDL_main_callbacks.h │ │ │ │ ├── SDL_runapp.c │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_sysmain_callbacks.c │ │ │ │ │ └── SDL_sysmain_runapp.c │ │ │ │ ├── gdk │ │ │ │ │ └── SDL_sysmain_runapp.cpp │ │ │ │ ├── generic │ │ │ │ │ └── SDL_sysmain_callbacks.c │ │ │ │ ├── ios │ │ │ │ │ └── SDL_sysmain_callbacks.m │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_sysmain_runapp.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_sysmain_runapp.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysmain_runapp.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_sysmain_runapp.c │ │ │ ├── misc │ │ │ │ ├── SDL_sysurl.h │ │ │ │ ├── SDL_url.c │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysurl.cc │ │ │ │ ├── ios │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── macos │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── riscos │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_sysurl.c │ │ │ ├── power │ │ │ │ ├── SDL_power.c │ │ │ │ ├── SDL_syspower.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── macos │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── uikit │ │ │ │ │ ├── SDL_syspower.h │ │ │ │ │ └── SDL_syspower.m │ │ │ │ ├── vita │ │ │ │ │ └── SDL_syspower.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_syspower.c │ │ │ ├── process │ │ │ │ ├── SDL_process.c │ │ │ │ ├── SDL_sysprocess.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_dummyprocess.c │ │ │ │ ├── posix │ │ │ │ │ └── SDL_posixprocess.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_windowsprocess.c │ │ │ ├── render │ │ │ │ ├── SDL_d3dmath.c │ │ │ │ ├── SDL_d3dmath.h │ │ │ │ ├── SDL_render.c │ │ │ │ ├── SDL_render_debug_font.h │ │ │ │ ├── SDL_render_unsupported.c │ │ │ │ ├── SDL_sysrender.h │ │ │ │ ├── SDL_yuv_sw.c │ │ │ │ ├── SDL_yuv_sw_c.h │ │ │ │ ├── direct3d │ │ │ │ │ ├── D3D9_PixelShader_YUV.h │ │ │ │ │ ├── D3D9_PixelShader_YUV.hlsl │ │ │ │ │ ├── SDL_render_d3d.c │ │ │ │ │ ├── SDL_shaders_d3d.c │ │ │ │ │ ├── SDL_shaders_d3d.h │ │ │ │ │ └── compile_shaders.bat │ │ │ │ ├── direct3d11 │ │ │ │ │ ├── D3D11_PixelShader_Advanced.h │ │ │ │ │ ├── D3D11_PixelShader_Advanced.hlsl │ │ │ │ │ ├── D3D11_PixelShader_Colors.h │ │ │ │ │ ├── D3D11_PixelShader_Colors.hlsl │ │ │ │ │ ├── D3D11_PixelShader_Common.hlsli │ │ │ │ │ ├── D3D11_PixelShader_Textures.h │ │ │ │ │ ├── D3D11_PixelShader_Textures.hlsl │ │ │ │ │ ├── D3D11_VertexShader.h │ │ │ │ │ ├── D3D11_VertexShader.hlsl │ │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ │ ├── SDL_shaders_d3d11.c │ │ │ │ │ ├── SDL_shaders_d3d11.h │ │ │ │ │ └── compile_shaders.bat │ │ │ │ ├── direct3d12 │ │ │ │ │ ├── D3D12_PixelShader_Advanced.h │ │ │ │ │ ├── D3D12_PixelShader_Advanced.hlsl │ │ │ │ │ ├── D3D12_PixelShader_Colors.h │ │ │ │ │ ├── D3D12_PixelShader_Colors.hlsl │ │ │ │ │ ├── D3D12_PixelShader_Common.hlsli │ │ │ │ │ ├── D3D12_PixelShader_Textures.h │ │ │ │ │ ├── D3D12_PixelShader_Textures.hlsl │ │ │ │ │ ├── D3D12_RootSig_Advanced.h │ │ │ │ │ ├── D3D12_RootSig_Color.h │ │ │ │ │ ├── D3D12_RootSig_Texture.h │ │ │ │ │ ├── D3D12_Shader_Common.hlsli │ │ │ │ │ ├── D3D12_VertexShader.hlsl │ │ │ │ │ ├── D3D12_VertexShader_Advanced.h │ │ │ │ │ ├── D3D12_VertexShader_Color.h │ │ │ │ │ ├── D3D12_VertexShader_Texture.h │ │ │ │ │ ├── SDL_render_d3d12.c │ │ │ │ │ ├── SDL_render_d3d12_xbox.cpp │ │ │ │ │ ├── SDL_render_d3d12_xbox.h │ │ │ │ │ ├── SDL_shaders_d3d12.c │ │ │ │ │ ├── SDL_shaders_d3d12.h │ │ │ │ │ ├── SDL_shaders_d3d12_xboxone.cpp │ │ │ │ │ ├── SDL_shaders_d3d12_xboxseries.cpp │ │ │ │ │ ├── compile_shaders.bat │ │ │ │ │ └── compile_shaders_xbox.bat │ │ │ │ ├── gpu │ │ │ │ │ ├── SDL_gpu_util.h │ │ │ │ │ ├── SDL_pipeline_gpu.c │ │ │ │ │ ├── SDL_pipeline_gpu.h │ │ │ │ │ ├── SDL_render_gpu.c │ │ │ │ │ ├── SDL_shaders_gpu.c │ │ │ │ │ ├── SDL_shaders_gpu.h │ │ │ │ │ └── shaders │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── build-shaders.sh │ │ │ │ │ │ ├── color.frag │ │ │ │ │ │ ├── color.frag.metal.h │ │ │ │ │ │ ├── color.frag.sm50.dxbc.h │ │ │ │ │ │ ├── color.frag.sm60.dxil.h │ │ │ │ │ │ ├── color.frag.spv.h │ │ │ │ │ │ ├── dxbc50.h │ │ │ │ │ │ ├── dxil60.h │ │ │ │ │ │ ├── linepoint.vert │ │ │ │ │ │ ├── linepoint.vert.metal.h │ │ │ │ │ │ ├── linepoint.vert.sm50.dxbc.h │ │ │ │ │ │ ├── linepoint.vert.sm60.dxil.h │ │ │ │ │ │ ├── linepoint.vert.spv.h │ │ │ │ │ │ ├── metal.h │ │ │ │ │ │ ├── spir-v.h │ │ │ │ │ │ ├── texture_rgb.frag │ │ │ │ │ │ ├── texture_rgb.frag.metal.h │ │ │ │ │ │ ├── texture_rgb.frag.sm50.dxbc.h │ │ │ │ │ │ ├── texture_rgb.frag.sm60.dxil.h │ │ │ │ │ │ ├── texture_rgb.frag.spv.h │ │ │ │ │ │ ├── texture_rgba.frag │ │ │ │ │ │ ├── texture_rgba.frag.metal.h │ │ │ │ │ │ ├── texture_rgba.frag.sm50.dxbc.h │ │ │ │ │ │ ├── texture_rgba.frag.sm60.dxil.h │ │ │ │ │ │ ├── texture_rgba.frag.spv.h │ │ │ │ │ │ ├── tri_color.vert │ │ │ │ │ │ ├── tri_color.vert.metal.h │ │ │ │ │ │ ├── tri_color.vert.sm50.dxbc.h │ │ │ │ │ │ ├── tri_color.vert.sm60.dxil.h │ │ │ │ │ │ ├── tri_color.vert.spv.h │ │ │ │ │ │ ├── tri_texture.vert │ │ │ │ │ │ ├── tri_texture.vert.metal.h │ │ │ │ │ │ ├── tri_texture.vert.sm50.dxbc.h │ │ │ │ │ │ ├── tri_texture.vert.sm60.dxil.h │ │ │ │ │ │ └── tri_texture.vert.spv.h │ │ │ │ ├── metal │ │ │ │ │ ├── SDL_render_metal.m │ │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ │ ├── SDL_shaders_metal_iphonesimulator.h │ │ │ │ │ ├── SDL_shaders_metal_macos.h │ │ │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ │ │ ├── SDL_shaders_metal_tvsimulator.h │ │ │ │ │ └── build-metal-shaders.sh │ │ │ │ ├── opengl │ │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ │ ├── SDL_render_gl.c │ │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ │ └── SDL_shaders_gl.h │ │ │ │ ├── opengles2 │ │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ │ └── SDL_shaders_gles2.h │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_render_ps2.c │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_render_psp.c │ │ │ │ │ └── SDL_render_psp_c.h │ │ │ │ ├── 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 │ │ │ │ │ ├── SDL_triangle.c │ │ │ │ │ └── SDL_triangle.h │ │ │ │ ├── vitagxm │ │ │ │ │ ├── SDL_render_vita_gxm.c │ │ │ │ │ ├── SDL_render_vita_gxm_memory.c │ │ │ │ │ ├── SDL_render_vita_gxm_memory.h │ │ │ │ │ ├── SDL_render_vita_gxm_shaders.h │ │ │ │ │ ├── SDL_render_vita_gxm_tools.c │ │ │ │ │ ├── SDL_render_vita_gxm_tools.h │ │ │ │ │ ├── SDL_render_vita_gxm_types.h │ │ │ │ │ └── shader_src │ │ │ │ │ │ ├── clear_f.cg │ │ │ │ │ │ ├── clear_v.cg │ │ │ │ │ │ ├── color_f.cg │ │ │ │ │ │ ├── color_v.cg │ │ │ │ │ │ ├── texture_f.cg │ │ │ │ │ │ └── texture_v.cg │ │ │ │ └── vulkan │ │ │ │ │ ├── SDL_render_vulkan.c │ │ │ │ │ ├── SDL_shaders_vulkan.c │ │ │ │ │ ├── SDL_shaders_vulkan.h │ │ │ │ │ ├── VULKAN_PixelShader_Advanced.h │ │ │ │ │ ├── VULKAN_PixelShader_Advanced.hlsl │ │ │ │ │ ├── VULKAN_PixelShader_Colors.h │ │ │ │ │ ├── VULKAN_PixelShader_Colors.hlsl │ │ │ │ │ ├── VULKAN_PixelShader_Common.hlsli │ │ │ │ │ ├── VULKAN_PixelShader_Textures.h │ │ │ │ │ ├── VULKAN_PixelShader_Textures.hlsl │ │ │ │ │ ├── VULKAN_VertexShader.h │ │ │ │ │ ├── VULKAN_VertexShader.hlsl │ │ │ │ │ └── compile_shaders.bat │ │ │ ├── sensor │ │ │ │ ├── SDL_sensor.c │ │ │ │ ├── SDL_sensor_c.h │ │ │ │ ├── SDL_syssensor.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidsensor.c │ │ │ │ │ └── SDL_androidsensor.h │ │ │ │ ├── coremotion │ │ │ │ │ ├── SDL_coremotionsensor.h │ │ │ │ │ └── SDL_coremotionsensor.m │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummysensor.c │ │ │ │ │ └── SDL_dummysensor.h │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_n3dssensor.c │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_vitasensor.c │ │ │ │ │ └── SDL_vitasensor.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_windowssensor.c │ │ │ │ │ └── SDL_windowssensor.h │ │ │ ├── stdlib │ │ │ │ ├── SDL_casefolding.h │ │ │ │ ├── SDL_crc16.c │ │ │ │ ├── SDL_crc32.c │ │ │ │ ├── SDL_getenv.c │ │ │ │ ├── SDL_getenv_c.h │ │ │ │ ├── SDL_iconv.c │ │ │ │ ├── SDL_malloc.c │ │ │ │ ├── SDL_memcpy.c │ │ │ │ ├── SDL_memmove.c │ │ │ │ ├── SDL_memset.c │ │ │ │ ├── SDL_mslibc.c │ │ │ │ ├── SDL_mslibc_arm64.masm │ │ │ │ ├── SDL_mslibc_x64.masm │ │ │ │ ├── SDL_murmur3.c │ │ │ │ ├── SDL_qsort.c │ │ │ │ ├── SDL_random.c │ │ │ │ ├── SDL_stdlib.c │ │ │ │ ├── SDL_string.c │ │ │ │ ├── SDL_strtokr.c │ │ │ │ ├── SDL_sysstdlib.h │ │ │ │ └── SDL_vacopy.h │ │ │ ├── storage │ │ │ │ ├── SDL_storage.c │ │ │ │ ├── SDL_sysstorage.h │ │ │ │ ├── generic │ │ │ │ │ └── SDL_genericstorage.c │ │ │ │ └── steam │ │ │ │ │ ├── SDL_steamstorage.c │ │ │ │ │ └── SDL_steamstorage_proc.h │ │ │ ├── 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_log.c │ │ │ │ ├── SDL_test_md5.c │ │ │ │ └── SDL_test_memory.c │ │ │ ├── thread │ │ │ │ ├── SDL_systhread.h │ │ │ │ ├── SDL_thread.c │ │ │ │ ├── SDL_thread_c.h │ │ │ │ ├── generic │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_sysrwlock.c │ │ │ │ │ ├── SDL_sysrwlock_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── n3ds │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── ps2 │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── psp │ │ │ │ │ ├── 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_sysrwlock.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_syscond_cv.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_sysrwlock_srw.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ ├── time │ │ │ │ ├── SDL_time.c │ │ │ │ ├── SDL_time_c.h │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_systime.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_systime.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_systime.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_systime.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_systime.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_systime.c │ │ │ ├── timer │ │ │ │ ├── SDL_timer.c │ │ │ │ ├── SDL_timer_c.h │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_systimer.c │ │ │ ├── tray │ │ │ │ ├── SDL_tray_utils.c │ │ │ │ ├── SDL_tray_utils.h │ │ │ │ ├── cocoa │ │ │ │ │ └── SDL_tray.m │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_tray.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_tray.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_tray.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_clipboard_c.h │ │ │ │ ├── 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_rect_impl.h │ │ │ │ ├── SDL_stretch.c │ │ │ │ ├── SDL_surface.c │ │ │ │ ├── SDL_surface_c.h │ │ │ │ ├── SDL_sysvideo.h │ │ │ │ ├── SDL_video.c │ │ │ │ ├── SDL_video_c.h │ │ │ │ ├── SDL_video_unsupported.c │ │ │ │ ├── SDL_vulkan_internal.h │ │ │ │ ├── SDL_vulkan_utils.c │ │ │ │ ├── SDL_yuv.c │ │ │ │ ├── SDL_yuv_c.h │ │ │ │ ├── android │ │ │ │ ├── SDL_androidclipboard.c │ │ │ │ ├── SDL_androidclipboard.h │ │ │ │ ├── SDL_androidevents.c │ │ │ │ ├── SDL_androidevents.h │ │ │ │ ├── SDL_androidgl.c │ │ │ │ ├── SDL_androidgl.h │ │ │ │ ├── SDL_androidkeyboard.c │ │ │ │ ├── SDL_androidkeyboard.h │ │ │ │ ├── SDL_androidmessagebox.c │ │ │ │ ├── SDL_androidmessagebox.h │ │ │ │ ├── SDL_androidmouse.c │ │ │ │ ├── SDL_androidmouse.h │ │ │ │ ├── SDL_androidpen.c │ │ │ │ ├── SDL_androidpen.h │ │ │ │ ├── SDL_androidtouch.c │ │ │ │ ├── SDL_androidtouch.h │ │ │ │ ├── SDL_androidvideo.c │ │ │ │ ├── SDL_androidvideo.h │ │ │ │ ├── SDL_androidvulkan.c │ │ │ │ ├── SDL_androidvulkan.h │ │ │ │ ├── SDL_androidwindow.c │ │ │ │ └── SDL_androidwindow.h │ │ │ │ ├── cocoa │ │ │ │ ├── SDL_cocoaclipboard.h │ │ │ │ ├── SDL_cocoaclipboard.m │ │ │ │ ├── SDL_cocoaevents.h │ │ │ │ ├── SDL_cocoaevents.m │ │ │ │ ├── SDL_cocoakeyboard.h │ │ │ │ ├── SDL_cocoakeyboard.m │ │ │ │ ├── SDL_cocoamessagebox.h │ │ │ │ ├── SDL_cocoamessagebox.m │ │ │ │ ├── SDL_cocoametalview.h │ │ │ │ ├── SDL_cocoametalview.m │ │ │ │ ├── SDL_cocoamodes.h │ │ │ │ ├── SDL_cocoamodes.m │ │ │ │ ├── SDL_cocoamouse.h │ │ │ │ ├── SDL_cocoamouse.m │ │ │ │ ├── SDL_cocoaopengl.h │ │ │ │ ├── SDL_cocoaopengl.m │ │ │ │ ├── SDL_cocoaopengles.h │ │ │ │ ├── SDL_cocoaopengles.m │ │ │ │ ├── SDL_cocoapen.h │ │ │ │ ├── SDL_cocoapen.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 │ │ │ │ ├── directx │ │ │ │ ├── SDL_d3d12.h │ │ │ │ ├── SDL_d3d12_xbox_cmacros.h │ │ │ │ ├── d3d12.h │ │ │ │ ├── d3d12sdklayers.h │ │ │ │ └── gen_xbox_cmacros.cs │ │ │ │ ├── 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 │ │ │ │ ├── gdk │ │ │ │ ├── SDL_gdktextinput.cpp │ │ │ │ └── SDL_gdktextinput.h │ │ │ │ ├── haiku │ │ │ │ ├── SDL_BWin.h │ │ │ │ ├── SDL_bclipboard.cc │ │ │ │ ├── SDL_bclipboard.h │ │ │ │ ├── SDL_bevents.cc │ │ │ │ ├── SDL_bevents.h │ │ │ │ ├── SDL_bframebuffer.cc │ │ │ │ ├── SDL_bframebuffer.h │ │ │ │ ├── SDL_bkeyboard.cc │ │ │ │ ├── SDL_bkeyboard.h │ │ │ │ ├── SDL_bmessagebox.cc │ │ │ │ ├── SDL_bmessagebox.h │ │ │ │ ├── SDL_bmodes.cc │ │ │ │ ├── SDL_bmodes.h │ │ │ │ ├── SDL_bopengl.cc │ │ │ │ ├── SDL_bopengl.h │ │ │ │ ├── SDL_bvideo.cc │ │ │ │ ├── SDL_bvideo.h │ │ │ │ ├── SDL_bwindow.cc │ │ │ │ └── SDL_bwindow.h │ │ │ │ ├── khronos │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ ├── GLES2 │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ └── gl2platform.h │ │ │ │ ├── GLES3 │ │ │ │ │ ├── gl3.h │ │ │ │ │ ├── gl31.h │ │ │ │ │ ├── gl32.h │ │ │ │ │ └── gl3platform.h │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ ├── vk_video │ │ │ │ │ ├── vulkan_video_codec_av1std.h │ │ │ │ │ ├── vulkan_video_codec_av1std_decode.h │ │ │ │ │ ├── vulkan_video_codec_h264std.h │ │ │ │ │ ├── vulkan_video_codec_h264std_decode.h │ │ │ │ │ ├── vulkan_video_codec_h264std_encode.h │ │ │ │ │ ├── vulkan_video_codec_h265std.h │ │ │ │ │ ├── vulkan_video_codec_h265std_decode.h │ │ │ │ │ ├── vulkan_video_codec_h265std_encode.h │ │ │ │ │ └── vulkan_video_codecs_common.h │ │ │ │ └── vulkan │ │ │ │ │ ├── vk_icd.h │ │ │ │ │ ├── vk_layer.h │ │ │ │ │ ├── vk_platform.h │ │ │ │ │ ├── vulkan.h │ │ │ │ │ ├── vulkan_android.h │ │ │ │ │ ├── vulkan_beta.h │ │ │ │ │ ├── vulkan_core.h │ │ │ │ │ ├── vulkan_directfb.h │ │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ │ ├── vulkan_ggp.h │ │ │ │ │ ├── vulkan_ios.h │ │ │ │ │ ├── vulkan_macos.h │ │ │ │ │ ├── vulkan_metal.h │ │ │ │ │ ├── vulkan_screen.h │ │ │ │ │ ├── vulkan_vi.h │ │ │ │ │ ├── vulkan_wayland.h │ │ │ │ │ ├── vulkan_win32.h │ │ │ │ │ ├── vulkan_xcb.h │ │ │ │ │ ├── vulkan_xlib.h │ │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ │ ├── kmsdrm │ │ │ │ ├── SDL_kmsdrmdyn.c │ │ │ │ ├── SDL_kmsdrmdyn.h │ │ │ │ ├── SDL_kmsdrmevents.c │ │ │ │ ├── SDL_kmsdrmevents.h │ │ │ │ ├── SDL_kmsdrmmouse.c │ │ │ │ ├── SDL_kmsdrmmouse.h │ │ │ │ ├── SDL_kmsdrmopengles.c │ │ │ │ ├── SDL_kmsdrmopengles.h │ │ │ │ ├── SDL_kmsdrmsym.h │ │ │ │ ├── SDL_kmsdrmvideo.c │ │ │ │ ├── SDL_kmsdrmvideo.h │ │ │ │ ├── SDL_kmsdrmvulkan.c │ │ │ │ └── SDL_kmsdrmvulkan.h │ │ │ │ ├── n3ds │ │ │ │ ├── SDL_n3dsevents.c │ │ │ │ ├── SDL_n3dsevents_c.h │ │ │ │ ├── SDL_n3dsframebuffer.c │ │ │ │ ├── SDL_n3dsframebuffer_c.h │ │ │ │ ├── SDL_n3dsswkb.c │ │ │ │ ├── SDL_n3dsswkb.h │ │ │ │ ├── SDL_n3dstouch.c │ │ │ │ ├── SDL_n3dstouch.h │ │ │ │ ├── SDL_n3dsvideo.c │ │ │ │ └── SDL_n3dsvideo.h │ │ │ │ ├── offscreen │ │ │ │ ├── SDL_offscreenevents.c │ │ │ │ ├── SDL_offscreenevents_c.h │ │ │ │ ├── SDL_offscreenframebuffer.c │ │ │ │ ├── SDL_offscreenframebuffer_c.h │ │ │ │ ├── SDL_offscreenopengles.c │ │ │ │ ├── SDL_offscreenopengles.h │ │ │ │ ├── SDL_offscreenvideo.c │ │ │ │ ├── SDL_offscreenvideo.h │ │ │ │ ├── SDL_offscreenvulkan.c │ │ │ │ ├── SDL_offscreenvulkan.h │ │ │ │ ├── SDL_offscreenwindow.c │ │ │ │ └── SDL_offscreenwindow.h │ │ │ │ ├── openvr │ │ │ │ ├── SDL_openvrvideo.c │ │ │ │ ├── SDL_openvrvideo.h │ │ │ │ └── openvr_capi.h │ │ │ │ ├── ps2 │ │ │ │ ├── SDL_ps2video.c │ │ │ │ └── SDL_ps2video.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 │ │ │ │ ├── SDL_qnxgl.c │ │ │ │ ├── SDL_qnxkeyboard.c │ │ │ │ ├── SDL_qnxvideo.c │ │ │ │ └── sdl_qnx.h │ │ │ │ ├── raspberry │ │ │ │ ├── SDL_rpievents.c │ │ │ │ ├── SDL_rpievents_c.h │ │ │ │ ├── SDL_rpimouse.c │ │ │ │ ├── SDL_rpimouse.h │ │ │ │ ├── SDL_rpiopengles.c │ │ │ │ ├── SDL_rpiopengles.h │ │ │ │ ├── SDL_rpivideo.c │ │ │ │ └── SDL_rpivideo.h │ │ │ │ ├── riscos │ │ │ │ ├── SDL_riscosdefs.h │ │ │ │ ├── SDL_riscosevents.c │ │ │ │ ├── SDL_riscosevents_c.h │ │ │ │ ├── SDL_riscosframebuffer.c │ │ │ │ ├── SDL_riscosframebuffer_c.h │ │ │ │ ├── SDL_riscosmessagebox.c │ │ │ │ ├── SDL_riscosmessagebox.h │ │ │ │ ├── SDL_riscosmodes.c │ │ │ │ ├── SDL_riscosmodes.h │ │ │ │ ├── SDL_riscosmouse.c │ │ │ │ ├── SDL_riscosmouse.h │ │ │ │ ├── SDL_riscosvideo.c │ │ │ │ ├── SDL_riscosvideo.h │ │ │ │ ├── SDL_riscoswindow.c │ │ │ │ ├── SDL_riscoswindow.h │ │ │ │ └── scancodes_riscos.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_uikitpen.h │ │ │ │ ├── SDL_uikitpen.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 │ │ │ │ ├── vita │ │ │ │ ├── SDL_vitaframebuffer.c │ │ │ │ ├── SDL_vitaframebuffer.h │ │ │ │ ├── SDL_vitagl_pvr.c │ │ │ │ ├── SDL_vitagl_pvr_c.h │ │ │ │ ├── SDL_vitagles.c │ │ │ │ ├── SDL_vitagles_c.h │ │ │ │ ├── SDL_vitagles_pvr.c │ │ │ │ ├── SDL_vitagles_pvr_c.h │ │ │ │ ├── SDL_vitakeyboard.c │ │ │ │ ├── SDL_vitakeyboard.h │ │ │ │ ├── SDL_vitamessagebox.c │ │ │ │ ├── SDL_vitamessagebox.h │ │ │ │ ├── SDL_vitamouse.c │ │ │ │ ├── SDL_vitamouse_c.h │ │ │ │ ├── SDL_vitatouch.c │ │ │ │ ├── SDL_vitatouch.h │ │ │ │ ├── SDL_vitavideo.c │ │ │ │ └── SDL_vitavideo.h │ │ │ │ ├── vivante │ │ │ │ ├── SDL_vivanteopengles.c │ │ │ │ ├── SDL_vivanteopengles.h │ │ │ │ ├── SDL_vivanteplatform.c │ │ │ │ ├── SDL_vivanteplatform.h │ │ │ │ ├── SDL_vivantevideo.c │ │ │ │ ├── SDL_vivantevideo.h │ │ │ │ ├── SDL_vivantevulkan.c │ │ │ │ └── SDL_vivantevulkan.h │ │ │ │ ├── wayland │ │ │ │ ├── SDL_waylandclipboard.c │ │ │ │ ├── SDL_waylandclipboard.h │ │ │ │ ├── SDL_waylanddatamanager.c │ │ │ │ ├── SDL_waylanddatamanager.h │ │ │ │ ├── SDL_waylanddyn.c │ │ │ │ ├── SDL_waylanddyn.h │ │ │ │ ├── SDL_waylandevents.c │ │ │ │ ├── SDL_waylandevents_c.h │ │ │ │ ├── SDL_waylandkeyboard.c │ │ │ │ ├── SDL_waylandkeyboard.h │ │ │ │ ├── SDL_waylandmessagebox.c │ │ │ │ ├── SDL_waylandmessagebox.h │ │ │ │ ├── SDL_waylandmouse.c │ │ │ │ ├── SDL_waylandmouse.h │ │ │ │ ├── SDL_waylandopengles.c │ │ │ │ ├── SDL_waylandopengles.h │ │ │ │ ├── SDL_waylandshmbuffer.c │ │ │ │ ├── SDL_waylandshmbuffer.h │ │ │ │ ├── SDL_waylandsym.h │ │ │ │ ├── SDL_waylandvideo.c │ │ │ │ ├── SDL_waylandvideo.h │ │ │ │ ├── SDL_waylandvulkan.c │ │ │ │ ├── SDL_waylandvulkan.h │ │ │ │ ├── SDL_waylandwindow.c │ │ │ │ └── SDL_waylandwindow.h │ │ │ │ ├── windows │ │ │ │ ├── SDL_msctf.h │ │ │ │ ├── SDL_surface_utils.c │ │ │ │ ├── SDL_surface_utils.h │ │ │ │ ├── SDL_windowsclipboard.c │ │ │ │ ├── SDL_windowsclipboard.h │ │ │ │ ├── SDL_windowsevents.c │ │ │ │ ├── SDL_windowsevents.h │ │ │ │ ├── SDL_windowsframebuffer.c │ │ │ │ ├── SDL_windowsframebuffer.h │ │ │ │ ├── SDL_windowsgameinput.c │ │ │ │ ├── SDL_windowsgameinput.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_windowsrawinput.c │ │ │ │ ├── SDL_windowsrawinput.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 │ │ │ │ ├── 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_x11pen.c │ │ │ │ ├── SDL_x11pen.h │ │ │ │ ├── SDL_x11settings.c │ │ │ │ ├── SDL_x11settings.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_x11xfixes.c │ │ │ │ ├── SDL_x11xfixes.h │ │ │ │ ├── SDL_x11xinput2.c │ │ │ │ ├── SDL_x11xinput2.h │ │ │ │ ├── SDL_x11xsync.c │ │ │ │ ├── SDL_x11xsync.h │ │ │ │ ├── edid-parse.c │ │ │ │ ├── edid.h │ │ │ │ ├── xsettings-client.c │ │ │ │ └── xsettings-client.h │ │ │ │ └── yuv2rgb │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── yuv_rgb.h │ │ │ │ ├── yuv_rgb_common.h │ │ │ │ ├── yuv_rgb_internal.h │ │ │ │ ├── yuv_rgb_lsx.c │ │ │ │ ├── yuv_rgb_lsx.h │ │ │ │ ├── yuv_rgb_lsx_func.h │ │ │ │ ├── yuv_rgb_sse.c │ │ │ │ ├── yuv_rgb_sse.h │ │ │ │ ├── yuv_rgb_sse_func.h │ │ │ │ ├── yuv_rgb_std.c │ │ │ │ ├── yuv_rgb_std.h │ │ │ │ └── yuv_rgb_std_func.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── LICENSE.txt │ │ │ ├── android │ │ │ │ ├── cmake │ │ │ │ │ ├── AndroidManifest.xml.cmake │ │ │ │ │ ├── SDLEntryTestActivity.java.cmake │ │ │ │ │ ├── SDLTestActivity.java.cmake │ │ │ │ │ └── res │ │ │ │ │ │ ├── values │ │ │ │ │ │ └── strings.xml.cmake │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── shortcuts.xml.cmake │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── sdl-test_foreground.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── arguments_layout.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── sdl-test.xml │ │ │ │ │ └── sdl-test_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── sdl-test.png │ │ │ │ │ └── sdl-test_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── sdl-test.png │ │ │ │ │ └── sdl-test_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── sdl-test.png │ │ │ │ │ └── sdl-test_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── sdl-test.png │ │ │ │ │ └── sdl-test_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── sdl-test.png │ │ │ │ │ └── sdl-test_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── arg_strings.xml │ │ │ │ │ └── sdl-test_background.xml │ │ │ ├── audiofile.bmp │ │ │ ├── checkkeys.c │ │ │ ├── childprocess.c │ │ │ ├── emscripten │ │ │ │ ├── driver.py │ │ │ │ ├── joystick-pre.js │ │ │ │ ├── pre.js │ │ │ │ └── server.py │ │ │ ├── gamepad_axis.bmp │ │ │ ├── gamepad_axis.h │ │ │ ├── gamepad_axis_arrow.bmp │ │ │ ├── gamepad_axis_arrow.h │ │ │ ├── gamepad_back.bmp │ │ │ ├── gamepad_back.h │ │ │ ├── gamepad_battery.bmp │ │ │ ├── gamepad_battery.h │ │ │ ├── gamepad_battery_unknown.bmp │ │ │ ├── gamepad_battery_unknown.h │ │ │ ├── gamepad_battery_wired.bmp │ │ │ ├── gamepad_battery_wired.h │ │ │ ├── gamepad_button.bmp │ │ │ ├── gamepad_button.h │ │ │ ├── gamepad_button_background.bmp │ │ │ ├── gamepad_button_background.h │ │ │ ├── gamepad_button_small.bmp │ │ │ ├── gamepad_button_small.h │ │ │ ├── gamepad_face_abxy.bmp │ │ │ ├── gamepad_face_abxy.h │ │ │ ├── gamepad_face_bayx.bmp │ │ │ ├── gamepad_face_bayx.h │ │ │ ├── gamepad_face_sony.bmp │ │ │ ├── gamepad_face_sony.h │ │ │ ├── gamepad_front.bmp │ │ │ ├── gamepad_front.h │ │ │ ├── gamepad_touchpad.bmp │ │ │ ├── gamepad_touchpad.h │ │ │ ├── gamepad_wired.bmp │ │ │ ├── gamepad_wired.h │ │ │ ├── gamepad_wireless.bmp │ │ │ ├── gamepad_wireless.h │ │ │ ├── gamepadutils.c │ │ │ ├── gamepadutils.h │ │ │ ├── glass.bmp │ │ │ ├── glass.h │ │ │ ├── icon.bmp │ │ │ ├── icon.h │ │ │ ├── icon2x.bmp │ │ │ ├── logaudiodev.bmp │ │ │ ├── loopwave.c │ │ │ ├── main.cpp │ │ │ ├── moose.dat │ │ │ ├── n3ds │ │ │ │ └── logo48x48.png │ │ │ ├── physaudiodev.bmp │ │ │ ├── picture.xbm │ │ │ ├── pretest.c │ │ │ ├── relative_mode.markdown │ │ │ ├── sample.bmp │ │ │ ├── sample.wav │ │ │ ├── sdl-test_round.bmp │ │ │ ├── soundboard.bmp │ │ │ ├── soundboard_levels.bmp │ │ │ ├── speaker.bmp │ │ │ ├── sword.wav │ │ │ ├── template.test.in │ │ │ ├── testasyncio.c │ │ │ ├── testatomic.c │ │ │ ├── testaudio.c │ │ │ ├── testaudiohotplug.c │ │ │ ├── testaudioinfo.c │ │ │ ├── testaudiorecording.c │ │ │ ├── testaudiostreamdynamicresample.c │ │ │ ├── testautomation.c │ │ │ ├── testautomation_audio.c │ │ │ ├── testautomation_blit.c │ │ │ ├── testautomation_clipboard.c │ │ │ ├── testautomation_events.c │ │ │ ├── testautomation_guid.c │ │ │ ├── testautomation_hints.c │ │ │ ├── testautomation_images.c │ │ │ ├── testautomation_images.h │ │ │ ├── testautomation_intrinsics.c │ │ │ ├── testautomation_iostream.c │ │ │ ├── testautomation_joystick.c │ │ │ ├── testautomation_keyboard.c │ │ │ ├── testautomation_log.c │ │ │ ├── testautomation_main.c │ │ │ ├── testautomation_math.c │ │ │ ├── testautomation_mouse.c │ │ │ ├── testautomation_pixels.c │ │ │ ├── testautomation_platform.c │ │ │ ├── testautomation_properties.c │ │ │ ├── testautomation_rect.c │ │ │ ├── testautomation_render.c │ │ │ ├── testautomation_sdltest.c │ │ │ ├── testautomation_stdlib.c │ │ │ ├── testautomation_subsystems.c │ │ │ ├── testautomation_suites.h │ │ │ ├── testautomation_surface.c │ │ │ ├── testautomation_time.c │ │ │ ├── testautomation_timer.c │ │ │ ├── testautomation_video.c │ │ │ ├── testbounds.c │ │ │ ├── testcamera.c │ │ │ ├── testclipboard.c │ │ │ ├── testcolorspace.c │ │ │ ├── testcontroller.c │ │ │ ├── testcustomcursor.c │ │ │ ├── testdialog.c │ │ │ ├── testdisplayinfo.c │ │ │ ├── testdraw.c │ │ │ ├── testdrawchessboard.c │ │ │ ├── testdropfile.c │ │ │ ├── testerror.c │ │ │ ├── testevdev.c │ │ │ ├── testffmpeg.c │ │ │ ├── testffmpeg_vulkan.c │ │ │ ├── testffmpeg_vulkan.h │ │ │ ├── testfile.c │ │ │ ├── testfilesystem.c │ │ │ ├── testgeometry.c │ │ │ ├── testgl.c │ │ │ ├── testgles.c │ │ │ ├── testgles2.c │ │ │ ├── testgles2_sdf.c │ │ │ ├── testgles2_sdf_img_normal.bmp │ │ │ ├── testgles2_sdf_img_sdf.bmp │ │ │ ├── testgpu │ │ │ │ ├── build-shaders.sh │ │ │ │ ├── cube.glsl │ │ │ │ ├── cube.hlsl │ │ │ │ ├── cube.metal │ │ │ │ ├── testgpu_dxil.h │ │ │ │ ├── testgpu_metallib.h │ │ │ │ └── testgpu_spirv.h │ │ │ ├── testgpu_simple_clear.c │ │ │ ├── testgpu_spinning_cube.c │ │ │ ├── testhaptic.c │ │ │ ├── testhittesting.c │ │ │ ├── testhotplug.c │ │ │ ├── testiconv.c │ │ │ ├── testime.c │ │ │ ├── testintersections.c │ │ │ ├── testkeys.c │ │ │ ├── testloadso.c │ │ │ ├── testlocale.c │ │ │ ├── testlock.c │ │ │ ├── testmanymouse.c │ │ │ ├── testmessage.c │ │ │ ├── testmodal.c │ │ │ ├── testmouse.c │ │ │ ├── testmultiaudio.c │ │ │ ├── testnative.c │ │ │ ├── testnative.h │ │ │ ├── testnativecocoa.m │ │ │ ├── testnativew32.c │ │ │ ├── testnativewayland.c │ │ │ ├── testnativex11.c │ │ │ ├── testoffscreen.c │ │ │ ├── testoverlay.c │ │ │ ├── testpen.c │ │ │ ├── testplatform.c │ │ │ ├── testpopup.c │ │ │ ├── testpower.c │ │ │ ├── testprocess.c │ │ │ ├── testqsort.c │ │ │ ├── testrelative.c │ │ │ ├── testrendercopyex.c │ │ │ ├── testrendertarget.c │ │ │ ├── testresample.c │ │ │ ├── testrumble.c │ │ │ ├── testrwlock.c │ │ │ ├── testscale.c │ │ │ ├── testsem.c │ │ │ ├── testsensor.c │ │ │ ├── testshader.c │ │ │ ├── testshape.c │ │ │ ├── testsprite.c │ │ │ ├── testspriteminimal.c │ │ │ ├── testspritesurface.c │ │ │ ├── teststreaming.c │ │ │ ├── testsurround.c │ │ │ ├── testthread.c │ │ │ ├── testtime.c │ │ │ ├── testtimer.c │ │ │ ├── testtray.c │ │ │ ├── testurl.c │ │ │ ├── testutils.c │ │ │ ├── testutils.h │ │ │ ├── testver.c │ │ │ ├── testviewport.c │ │ │ ├── testvulkan.c │ │ │ ├── testwaylandcustom.c │ │ │ ├── testwm.c │ │ │ ├── testyuv.bmp │ │ │ ├── testyuv.c │ │ │ ├── testyuv_cvt.c │ │ │ ├── testyuv_cvt.h │ │ │ ├── torturethread.c │ │ │ ├── trashcan.bmp │ │ │ ├── unifont-15.1.05-license.txt │ │ │ ├── unifont-15.1.05.hex │ │ │ ├── utf8.txt │ │ │ └── win32 │ │ │ │ └── sdlprocdump.c │ │ └── wayland-protocols │ │ │ ├── alpha-modifier-v1.xml │ │ │ ├── cursor-shape-v1.xml │ │ │ ├── fractional-scale-v1.xml │ │ │ ├── frog-color-management-v1.xml │ │ │ ├── idle-inhibit-unstable-v1.xml │ │ │ ├── input-timestamps-unstable-v1.xml │ │ │ ├── keyboard-shortcuts-inhibit-unstable-v1.xml │ │ │ ├── pointer-constraints-unstable-v1.xml │ │ │ ├── primary-selection-unstable-v1.xml │ │ │ ├── relative-pointer-unstable-v1.xml │ │ │ ├── tablet-v2.xml │ │ │ ├── text-input-unstable-v3.xml │ │ │ ├── viewporter.xml │ │ │ ├── wayland.xml │ │ │ ├── xdg-activation-v1.xml │ │ │ ├── xdg-decoration-unstable-v1.xml │ │ │ ├── xdg-dialog-v1.xml │ │ │ ├── xdg-foreign-unstable-v2.xml │ │ │ ├── xdg-output-unstable-v1.xml │ │ │ ├── xdg-shell.xml │ │ │ └── xdg-toplevel-icon-v1.xml │ ├── sokol │ │ ├── sokol_gfx.h │ │ ├── sokol_log.h │ │ └── sokol_time.h │ ├── stb_image │ │ ├── stb_image.h │ │ └── stb_image_write.h │ ├── stb_truetype │ │ └── stb_truetype.h │ ├── tinyobj_loader_c │ │ └── tinyobj_loader_c.h │ ├── vorbis │ │ ├── CMakeLists.txt │ │ ├── files.xml │ │ ├── include │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ └── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── analysis.c │ │ │ ├── backends.h │ │ │ ├── barkmel.c │ │ │ ├── bitrate.c │ │ │ ├── bitrate.h │ │ │ ├── block.c │ │ │ ├── books │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── coupled │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── res_books_51.h │ │ │ │ └── res_books_stereo.h │ │ │ ├── floor │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── floor_books.h │ │ │ └── uncoupled │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── res_books_uncoupled.h │ │ │ ├── codebook.c │ │ │ ├── codebook.h │ │ │ ├── codec_internal.h │ │ │ ├── envelope.c │ │ │ ├── envelope.h │ │ │ ├── floor0.c │ │ │ ├── floor1.c │ │ │ ├── highlevel.h │ │ │ ├── info.c │ │ │ ├── lookup.c │ │ │ ├── lookup.h │ │ │ ├── lookup_data.h │ │ │ ├── lookups.pl │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── mapping0.c │ │ │ ├── masking.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── misc.h │ │ │ ├── modes │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── floor_all.h │ │ │ ├── psych_11.h │ │ │ ├── psych_16.h │ │ │ ├── psych_44.h │ │ │ ├── psych_8.h │ │ │ ├── residue_16.h │ │ │ ├── residue_44.h │ │ │ ├── residue_44p51.h │ │ │ ├── residue_44u.h │ │ │ ├── residue_8.h │ │ │ ├── setup_11.h │ │ │ ├── setup_16.h │ │ │ ├── setup_22.h │ │ │ ├── setup_32.h │ │ │ ├── setup_44.h │ │ │ ├── setup_44p51.h │ │ │ ├── setup_44u.h │ │ │ ├── setup_8.h │ │ │ └── setup_X.h │ │ │ ├── os.h │ │ │ ├── psy.c │ │ │ ├── psy.h │ │ │ ├── psytune.c │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── res0.c │ │ │ ├── scales.h │ │ │ ├── sharedbook.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── synthesis.c │ │ │ ├── tone.c │ │ │ ├── vorbisenc.c │ │ │ ├── vorbisfile.c │ │ │ ├── window.c │ │ │ └── window.h │ ├── vorbisidec │ │ ├── CMakeLists.txt │ │ ├── asm_arm.h │ │ ├── backends.h │ │ ├── block.c │ │ ├── block.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── config_types.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── info.c │ │ ├── ivorbiscodec.h │ │ ├── ivorbisfile.h │ │ ├── lsp_lookup.h │ │ ├── mapping0.c │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── mdct_lookup.h │ │ ├── misc.h │ │ ├── os.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res012.c │ │ ├── sharedbook.c │ │ ├── synthesis.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ ├── window.h │ │ └── window_lookup.h │ └── zlib │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h └── dummy.c └── tools └── sokol-shdc ├── linux ├── readme.txt └── sokol-shdc ├── osx ├── readme.txt └── sokol-shdc ├── osx_arm64 └── sokol-shdc └── win32 ├── readme.txt └── sokol-shdc.exe /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.clang-format -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.github/workflows/wasm.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | binocle -------------------------------------------------------------------------------- /.idea/binocle-c.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.idea/binocle-c.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.idea/editor.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeOptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/CMakeOptions.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/README.md -------------------------------------------------------------------------------- /assets/2doutline.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/2doutline.frag -------------------------------------------------------------------------------- /assets/2doutline.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/2doutline.vert -------------------------------------------------------------------------------- /assets/8bit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/8bit.ogg -------------------------------------------------------------------------------- /assets/DefaultBMFont.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/DefaultBMFont.fnt -------------------------------------------------------------------------------- /assets/DefaultBMFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/DefaultBMFont.png -------------------------------------------------------------------------------- /assets/Jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/Jump.wav -------------------------------------------------------------------------------- /assets/MainScene.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/MainScene.dt -------------------------------------------------------------------------------- /assets/bg1-256-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/bg1-256-normal.png -------------------------------------------------------------------------------- /assets/bg1-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/bg1-256.png -------------------------------------------------------------------------------- /assets/bloom.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/bloom.frag -------------------------------------------------------------------------------- /assets/bloom2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/bloom2.frag -------------------------------------------------------------------------------- /assets/blue-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/blue-64.png -------------------------------------------------------------------------------- /assets/cloud-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/cloud-256.png -------------------------------------------------------------------------------- /assets/dof.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/dof.frag -------------------------------------------------------------------------------- /assets/dof.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/dof.vert -------------------------------------------------------------------------------- /assets/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/enemy.png -------------------------------------------------------------------------------- /assets/font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/font.fnt -------------------------------------------------------------------------------- /assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/font.png -------------------------------------------------------------------------------- /assets/font2.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/font2.fnt -------------------------------------------------------------------------------- /assets/font2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/font2.png -------------------------------------------------------------------------------- /assets/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/friend.png -------------------------------------------------------------------------------- /assets/fxaa.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/fxaa.frag -------------------------------------------------------------------------------- /assets/green-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/green-16.png -------------------------------------------------------------------------------- /assets/grey-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/grey-16.png -------------------------------------------------------------------------------- /assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/heart.png -------------------------------------------------------------------------------- /assets/hg_sdf.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/hg_sdf.glsl -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/main.lua -------------------------------------------------------------------------------- /assets/main.wren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/main.wren -------------------------------------------------------------------------------- /assets/maps/example.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/maps/example.ldtk -------------------------------------------------------------------------------- /assets/metal/default-fs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/metal/default-fs.metal -------------------------------------------------------------------------------- /assets/metal/default-vs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/metal/default-vs.metal -------------------------------------------------------------------------------- /assets/metal/screen-fs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/metal/screen-fs.metal -------------------------------------------------------------------------------- /assets/metal/screen-vs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/metal/screen-vs.metal -------------------------------------------------------------------------------- /assets/metal/shader-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/metal/shader-compile.py -------------------------------------------------------------------------------- /assets/minecraftia.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/minecraftia.fnt -------------------------------------------------------------------------------- /assets/minecraftia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/minecraftia.png -------------------------------------------------------------------------------- /assets/mobdebug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/mobdebug.lua -------------------------------------------------------------------------------- /assets/outline.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/outline.frag -------------------------------------------------------------------------------- /assets/outline.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/outline.vert -------------------------------------------------------------------------------- /assets/pack.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/pack.atlas -------------------------------------------------------------------------------- /assets/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/pack.png -------------------------------------------------------------------------------- /assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/player.png -------------------------------------------------------------------------------- /assets/primitives.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/primitives.frag -------------------------------------------------------------------------------- /assets/profiler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/profiler.lua -------------------------------------------------------------------------------- /assets/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/sansation.ttf -------------------------------------------------------------------------------- /assets/shaders/src/default.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/shaders/src/default.glsl -------------------------------------------------------------------------------- /assets/shaders/src/flat.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/shaders/src/flat.glsl -------------------------------------------------------------------------------- /assets/shaders/src/screen.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/shaders/src/screen.glsl -------------------------------------------------------------------------------- /assets/sheets/entities.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/sheets/entities.ase -------------------------------------------------------------------------------- /assets/sheets/entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/sheets/entities.json -------------------------------------------------------------------------------- /assets/sheets/entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/sheets/entities.png -------------------------------------------------------------------------------- /assets/sheets/tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/sheets/tilemap.png -------------------------------------------------------------------------------- /assets/test.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test.frag -------------------------------------------------------------------------------- /assets/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test.lua -------------------------------------------------------------------------------- /assets/test.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test.vert -------------------------------------------------------------------------------- /assets/test2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test2.frag -------------------------------------------------------------------------------- /assets/test_ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test_ffi.lua -------------------------------------------------------------------------------- /assets/test_profiler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test_profiler.lua -------------------------------------------------------------------------------- /assets/test_simple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test_simple.lua -------------------------------------------------------------------------------- /assets/test_simple2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/test_simple2.lua -------------------------------------------------------------------------------- /assets/testatlas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/testatlas.json -------------------------------------------------------------------------------- /assets/testatlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/testatlas.png -------------------------------------------------------------------------------- /assets/testatlas.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/testatlas.tps -------------------------------------------------------------------------------- /assets/testlibgdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/testlibgdx.png -------------------------------------------------------------------------------- /assets/testlibgdx.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/testlibgdx.tps -------------------------------------------------------------------------------- /assets/testlibgdx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/testlibgdx.txt -------------------------------------------------------------------------------- /assets/tilemap.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/tilemap.tmx -------------------------------------------------------------------------------- /assets/tileset_forTiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/tileset_forTiled.png -------------------------------------------------------------------------------- /assets/tileset_forTiled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/tileset_forTiled.svg -------------------------------------------------------------------------------- /assets/tileset_forTiled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/tileset_forTiled.tsx -------------------------------------------------------------------------------- /assets/wabbit_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/assets/wabbit_alpha.png -------------------------------------------------------------------------------- /cmake/BinocleAndroid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleAndroid.cmake -------------------------------------------------------------------------------- /cmake/BinocleDocs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleDocs.cmake -------------------------------------------------------------------------------- /cmake/BinocleIOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleIOS.cmake -------------------------------------------------------------------------------- /cmake/BinocleMac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleMac.cmake -------------------------------------------------------------------------------- /cmake/BinocleUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleUtils.cmake -------------------------------------------------------------------------------- /cmake/BinocleWatchOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleWatchOS.cmake -------------------------------------------------------------------------------- /cmake/BinocleWeb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleWeb.cmake -------------------------------------------------------------------------------- /cmake/BinocleWindows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/BinocleWindows.cmake -------------------------------------------------------------------------------- /cmake/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindEGL.cmake -------------------------------------------------------------------------------- /cmake/FindFLAC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindFLAC.cmake -------------------------------------------------------------------------------- /cmake/FindFreetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindFreetype.cmake -------------------------------------------------------------------------------- /cmake/FindGLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindGLES.cmake -------------------------------------------------------------------------------- /cmake/FindSFML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindSFML.cmake -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/FindUDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindUDev.cmake -------------------------------------------------------------------------------- /cmake/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindVorbis.cmake -------------------------------------------------------------------------------- /cmake/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/FindXCB.cmake -------------------------------------------------------------------------------- /cmake/android.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/cmake/android.toolchain.cmake -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/_static/.donotremove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/app.rst -------------------------------------------------------------------------------- /docs/api/atlas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/atlas.rst -------------------------------------------------------------------------------- /docs/api/audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/audio.rst -------------------------------------------------------------------------------- /docs/api/bezier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/bezier.rst -------------------------------------------------------------------------------- /docs/api/bitmapfont.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/bitmapfont.rst -------------------------------------------------------------------------------- /docs/api/blend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/blend.rst -------------------------------------------------------------------------------- /docs/api/camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/camera.rst -------------------------------------------------------------------------------- /docs/api/collision.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/collision.rst -------------------------------------------------------------------------------- /docs/api/color.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/color.rst -------------------------------------------------------------------------------- /docs/api/easing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/easing.rst -------------------------------------------------------------------------------- /docs/api/ecs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/ecs.rst -------------------------------------------------------------------------------- /docs/api/fs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/fs.rst -------------------------------------------------------------------------------- /docs/api/game.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/game.rst -------------------------------------------------------------------------------- /docs/api/gd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/gd.rst -------------------------------------------------------------------------------- /docs/api/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/image.rst -------------------------------------------------------------------------------- /docs/api/input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/input.rst -------------------------------------------------------------------------------- /docs/api/log.rst: -------------------------------------------------------------------------------- 1 | Log 2 | === 3 | 4 | .. doxygenfile:: binocle_log.h -------------------------------------------------------------------------------- /docs/api/lua.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/lua.rst -------------------------------------------------------------------------------- /docs/api/material.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/material.rst -------------------------------------------------------------------------------- /docs/api/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/math.rst -------------------------------------------------------------------------------- /docs/api/platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/platform.rst -------------------------------------------------------------------------------- /docs/api/render_state.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/render_state.rst -------------------------------------------------------------------------------- /docs/api/sdl.rst: -------------------------------------------------------------------------------- 1 | SDL 2 | === 3 | 4 | .. doxygenfile:: binocle_sdl.h -------------------------------------------------------------------------------- /docs/api/shader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/shader.rst -------------------------------------------------------------------------------- /docs/api/sprite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/sprite.rst -------------------------------------------------------------------------------- /docs/api/subtexture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/subtexture.rst -------------------------------------------------------------------------------- /docs/api/texture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/texture.rst -------------------------------------------------------------------------------- /docs/api/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/timer.rst -------------------------------------------------------------------------------- /docs/api/viewport_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/viewport_adapter.rst -------------------------------------------------------------------------------- /docs/api/vpct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/vpct.rst -------------------------------------------------------------------------------- /docs/api/window.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/api/window.rst -------------------------------------------------------------------------------- /docs/apiref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/apiref.rst -------------------------------------------------------------------------------- /docs/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/build.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | sphinx-rtd-theme 3 | -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/cLDtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/cLDtk.c -------------------------------------------------------------------------------- /example/cLDtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/cLDtk.h -------------------------------------------------------------------------------- /example/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/constants.h -------------------------------------------------------------------------------- /example/gameplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/gameplay/CMakeLists.txt -------------------------------------------------------------------------------- /example/gameplay/my_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/gameplay/my_script.c -------------------------------------------------------------------------------- /example/gameplay/my_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/gameplay/my_script.h -------------------------------------------------------------------------------- /example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/main.c -------------------------------------------------------------------------------- /example/my_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/my_game.c -------------------------------------------------------------------------------- /example/my_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/my_game.h -------------------------------------------------------------------------------- /example/physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/physics.c -------------------------------------------------------------------------------- /example/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/example/physics.h -------------------------------------------------------------------------------- /images/binocle-logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/images/binocle-logo-full.png -------------------------------------------------------------------------------- /platform/android/android-project/.java-version: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /platform/android/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /platform/android/android-project/app/jni/src/src: -------------------------------------------------------------------------------- 1 | ../../../../../../src -------------------------------------------------------------------------------- /platform/android/android-project/app/src/main/assets: -------------------------------------------------------------------------------- 1 | ../../../../../../assets -------------------------------------------------------------------------------- /platform/android/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /platform/emscripten/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/platform/emscripten/index.html -------------------------------------------------------------------------------- /platform/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/platform/ios/Info.plist -------------------------------------------------------------------------------- /platform/macosx/cdogs-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/platform/macosx/cdogs-icon.icns -------------------------------------------------------------------------------- /platform/macosx/dmg_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/platform/macosx/dmg_bg.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/binocle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/CMakeLists.txt -------------------------------------------------------------------------------- /src/binocle/core/PlayerPrefs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/PlayerPrefs.mm -------------------------------------------------------------------------------- /src/binocle/core/binocle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_app.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_app.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_ecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_ecs.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_ecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_ecs.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_fs.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_fs.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_game.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_game.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_gd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_gd.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_gd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_gd.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_http.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_http.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_log.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_log.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_lua.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_lua.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_math.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_pool.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_pool.h -------------------------------------------------------------------------------- /src/binocle/core/binocle_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_sdl.c -------------------------------------------------------------------------------- /src/binocle/core/binocle_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/binocle/core/binocle_sdl.h -------------------------------------------------------------------------------- /src/deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/chipmunk/src/cpArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/chipmunk/src/cpArray.c -------------------------------------------------------------------------------- /src/deps/chipmunk/src/cpBody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/chipmunk/src/cpBody.c -------------------------------------------------------------------------------- /src/deps/chipmunk/src/cpMarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/chipmunk/src/cpMarch.c -------------------------------------------------------------------------------- /src/deps/chipmunk/src/cpShape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/chipmunk/src/cpShape.c -------------------------------------------------------------------------------- /src/deps/chipmunk/src/cpSpace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/chipmunk/src/cpSpace.c -------------------------------------------------------------------------------- /src/deps/chipmunk/src/prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/chipmunk/src/prime.h -------------------------------------------------------------------------------- /src/deps/curl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/curl/lib/.checksrc: -------------------------------------------------------------------------------- 1 | enable STRERROR 2 | -------------------------------------------------------------------------------- /src/deps/curl/lib/altsvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/altsvc.c -------------------------------------------------------------------------------- /src/deps/curl/lib/altsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/altsvc.h -------------------------------------------------------------------------------- /src/deps/curl/lib/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/amigaos.c -------------------------------------------------------------------------------- /src/deps/curl/lib/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/amigaos.h -------------------------------------------------------------------------------- /src/deps/curl/lib/arpa_telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/arpa_telnet.h -------------------------------------------------------------------------------- /src/deps/curl/lib/asyn-ares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/asyn-ares.c -------------------------------------------------------------------------------- /src/deps/curl/lib/asyn-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/asyn-thread.c -------------------------------------------------------------------------------- /src/deps/curl/lib/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/asyn.h -------------------------------------------------------------------------------- /src/deps/curl/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/base64.c -------------------------------------------------------------------------------- /src/deps/curl/lib/bufref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/bufref.c -------------------------------------------------------------------------------- /src/deps/curl/lib/bufref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/bufref.h -------------------------------------------------------------------------------- /src/deps/curl/lib/c-hyper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/c-hyper.c -------------------------------------------------------------------------------- /src/deps/curl/lib/c-hyper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/c-hyper.h -------------------------------------------------------------------------------- /src/deps/curl/lib/cf-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/cf-socket.c -------------------------------------------------------------------------------- /src/deps/curl/lib/cf-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/cf-socket.h -------------------------------------------------------------------------------- /src/deps/curl/lib/cfilters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/cfilters.c -------------------------------------------------------------------------------- /src/deps/curl/lib/cfilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/cfilters.h -------------------------------------------------------------------------------- /src/deps/curl/lib/config-dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/config-dos.h -------------------------------------------------------------------------------- /src/deps/curl/lib/config-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/config-mac.h -------------------------------------------------------------------------------- /src/deps/curl/lib/conncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/conncache.c -------------------------------------------------------------------------------- /src/deps/curl/lib/conncache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/conncache.h -------------------------------------------------------------------------------- /src/deps/curl/lib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/connect.c -------------------------------------------------------------------------------- /src/deps/curl/lib/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/connect.h -------------------------------------------------------------------------------- /src/deps/curl/lib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/cookie.c -------------------------------------------------------------------------------- /src/deps/curl/lib/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/cookie.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_base64.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_ctype.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_des.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_des.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_endian.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_endian.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_gssapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_gssapi.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_gssapi.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_hmac.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_krb5.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_ldap.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_log.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_log.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_md4.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_md5.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_memory.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_path.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_path.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_printf.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_range.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_range.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_rtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_rtmp.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_rtmp.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_sasl.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_sasl.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_setup.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_sha256.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_sspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_sspi.c -------------------------------------------------------------------------------- /src/deps/curl/lib/curl_sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curl_sspi.h -------------------------------------------------------------------------------- /src/deps/curl/lib/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/curlx.h -------------------------------------------------------------------------------- /src/deps/curl/lib/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/dict.c -------------------------------------------------------------------------------- /src/deps/curl/lib/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/dict.h -------------------------------------------------------------------------------- /src/deps/curl/lib/doh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/doh.c -------------------------------------------------------------------------------- /src/deps/curl/lib/doh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/doh.h -------------------------------------------------------------------------------- /src/deps/curl/lib/dynbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/dynbuf.c -------------------------------------------------------------------------------- /src/deps/curl/lib/dynbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/dynbuf.h -------------------------------------------------------------------------------- /src/deps/curl/lib/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/easy.c -------------------------------------------------------------------------------- /src/deps/curl/lib/easy_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/easy_lock.h -------------------------------------------------------------------------------- /src/deps/curl/lib/easygetopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/easygetopt.c -------------------------------------------------------------------------------- /src/deps/curl/lib/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/easyif.h -------------------------------------------------------------------------------- /src/deps/curl/lib/easyoptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/easyoptions.c -------------------------------------------------------------------------------- /src/deps/curl/lib/easyoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/easyoptions.h -------------------------------------------------------------------------------- /src/deps/curl/lib/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/escape.c -------------------------------------------------------------------------------- /src/deps/curl/lib/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/escape.h -------------------------------------------------------------------------------- /src/deps/curl/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/file.c -------------------------------------------------------------------------------- /src/deps/curl/lib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/file.h -------------------------------------------------------------------------------- /src/deps/curl/lib/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/fileinfo.c -------------------------------------------------------------------------------- /src/deps/curl/lib/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/fileinfo.h -------------------------------------------------------------------------------- /src/deps/curl/lib/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/fopen.c -------------------------------------------------------------------------------- /src/deps/curl/lib/fopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/fopen.h -------------------------------------------------------------------------------- /src/deps/curl/lib/formdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/formdata.c -------------------------------------------------------------------------------- /src/deps/curl/lib/formdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/formdata.h -------------------------------------------------------------------------------- /src/deps/curl/lib/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/ftp.c -------------------------------------------------------------------------------- /src/deps/curl/lib/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/ftp.h -------------------------------------------------------------------------------- /src/deps/curl/lib/functypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/functypes.h -------------------------------------------------------------------------------- /src/deps/curl/lib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/getenv.c -------------------------------------------------------------------------------- /src/deps/curl/lib/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/getinfo.c -------------------------------------------------------------------------------- /src/deps/curl/lib/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/getinfo.h -------------------------------------------------------------------------------- /src/deps/curl/lib/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/gopher.c -------------------------------------------------------------------------------- /src/deps/curl/lib/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/gopher.h -------------------------------------------------------------------------------- /src/deps/curl/lib/h2h3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/h2h3.c -------------------------------------------------------------------------------- /src/deps/curl/lib/h2h3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/h2h3.h -------------------------------------------------------------------------------- /src/deps/curl/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hash.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hash.h -------------------------------------------------------------------------------- /src/deps/curl/lib/headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/headers.c -------------------------------------------------------------------------------- /src/deps/curl/lib/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/headers.h -------------------------------------------------------------------------------- /src/deps/curl/lib/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hmac.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hostasyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hostasyn.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hostip.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hostip.h -------------------------------------------------------------------------------- /src/deps/curl/lib/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hostip4.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hostip6.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hostsyn.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hsts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hsts.c -------------------------------------------------------------------------------- /src/deps/curl/lib/hsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/hsts.h -------------------------------------------------------------------------------- /src/deps/curl/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http.c -------------------------------------------------------------------------------- /src/deps/curl/lib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http.h -------------------------------------------------------------------------------- /src/deps/curl/lib/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http2.c -------------------------------------------------------------------------------- /src/deps/curl/lib/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http2.h -------------------------------------------------------------------------------- /src/deps/curl/lib/http_chunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_chunks.c -------------------------------------------------------------------------------- /src/deps/curl/lib/http_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_chunks.h -------------------------------------------------------------------------------- /src/deps/curl/lib/http_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_digest.c -------------------------------------------------------------------------------- /src/deps/curl/lib/http_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_digest.h -------------------------------------------------------------------------------- /src/deps/curl/lib/http_ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_ntlm.c -------------------------------------------------------------------------------- /src/deps/curl/lib/http_ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_ntlm.h -------------------------------------------------------------------------------- /src/deps/curl/lib/http_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_proxy.c -------------------------------------------------------------------------------- /src/deps/curl/lib/http_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/http_proxy.h -------------------------------------------------------------------------------- /src/deps/curl/lib/idn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/idn.c -------------------------------------------------------------------------------- /src/deps/curl/lib/idn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/idn.h -------------------------------------------------------------------------------- /src/deps/curl/lib/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/if2ip.c -------------------------------------------------------------------------------- /src/deps/curl/lib/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/if2ip.h -------------------------------------------------------------------------------- /src/deps/curl/lib/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/imap.c -------------------------------------------------------------------------------- /src/deps/curl/lib/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/imap.h -------------------------------------------------------------------------------- /src/deps/curl/lib/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/inet_ntop.c -------------------------------------------------------------------------------- /src/deps/curl/lib/inet_ntop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/inet_ntop.h -------------------------------------------------------------------------------- /src/deps/curl/lib/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/inet_pton.c -------------------------------------------------------------------------------- /src/deps/curl/lib/inet_pton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/inet_pton.h -------------------------------------------------------------------------------- /src/deps/curl/lib/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/krb5.c -------------------------------------------------------------------------------- /src/deps/curl/lib/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/ldap.c -------------------------------------------------------------------------------- /src/deps/curl/lib/libcurl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/libcurl.plist -------------------------------------------------------------------------------- /src/deps/curl/lib/libcurl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/libcurl.rc -------------------------------------------------------------------------------- /src/deps/curl/lib/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/llist.c -------------------------------------------------------------------------------- /src/deps/curl/lib/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/llist.h -------------------------------------------------------------------------------- /src/deps/curl/lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/md4.c -------------------------------------------------------------------------------- /src/deps/curl/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/md5.c -------------------------------------------------------------------------------- /src/deps/curl/lib/memdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/memdebug.c -------------------------------------------------------------------------------- /src/deps/curl/lib/memdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/memdebug.h -------------------------------------------------------------------------------- /src/deps/curl/lib/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/mime.c -------------------------------------------------------------------------------- /src/deps/curl/lib/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/mime.h -------------------------------------------------------------------------------- /src/deps/curl/lib/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/mprintf.c -------------------------------------------------------------------------------- /src/deps/curl/lib/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/mqtt.c -------------------------------------------------------------------------------- /src/deps/curl/lib/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/mqtt.h -------------------------------------------------------------------------------- /src/deps/curl/lib/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/multi.c -------------------------------------------------------------------------------- /src/deps/curl/lib/multihandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/multihandle.h -------------------------------------------------------------------------------- /src/deps/curl/lib/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/multiif.h -------------------------------------------------------------------------------- /src/deps/curl/lib/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/netrc.c -------------------------------------------------------------------------------- /src/deps/curl/lib/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/netrc.h -------------------------------------------------------------------------------- /src/deps/curl/lib/nonblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/nonblock.c -------------------------------------------------------------------------------- /src/deps/curl/lib/nonblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/nonblock.h -------------------------------------------------------------------------------- /src/deps/curl/lib/noproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/noproxy.c -------------------------------------------------------------------------------- /src/deps/curl/lib/noproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/noproxy.h -------------------------------------------------------------------------------- /src/deps/curl/lib/openldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/openldap.c -------------------------------------------------------------------------------- /src/deps/curl/lib/parsedate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/parsedate.c -------------------------------------------------------------------------------- /src/deps/curl/lib/parsedate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/parsedate.h -------------------------------------------------------------------------------- /src/deps/curl/lib/pingpong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/pingpong.c -------------------------------------------------------------------------------- /src/deps/curl/lib/pingpong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/pingpong.h -------------------------------------------------------------------------------- /src/deps/curl/lib/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/pop3.c -------------------------------------------------------------------------------- /src/deps/curl/lib/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/pop3.h -------------------------------------------------------------------------------- /src/deps/curl/lib/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/progress.c -------------------------------------------------------------------------------- /src/deps/curl/lib/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/progress.h -------------------------------------------------------------------------------- /src/deps/curl/lib/psl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/psl.c -------------------------------------------------------------------------------- /src/deps/curl/lib/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/psl.h -------------------------------------------------------------------------------- /src/deps/curl/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/rand.c -------------------------------------------------------------------------------- /src/deps/curl/lib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/rand.h -------------------------------------------------------------------------------- /src/deps/curl/lib/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/rename.c -------------------------------------------------------------------------------- /src/deps/curl/lib/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/rename.h -------------------------------------------------------------------------------- /src/deps/curl/lib/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/rtsp.c -------------------------------------------------------------------------------- /src/deps/curl/lib/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/rtsp.h -------------------------------------------------------------------------------- /src/deps/curl/lib/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/select.c -------------------------------------------------------------------------------- /src/deps/curl/lib/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/select.h -------------------------------------------------------------------------------- /src/deps/curl/lib/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/sendf.c -------------------------------------------------------------------------------- /src/deps/curl/lib/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/sendf.h -------------------------------------------------------------------------------- /src/deps/curl/lib/setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/setopt.c -------------------------------------------------------------------------------- /src/deps/curl/lib/setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/setopt.h -------------------------------------------------------------------------------- /src/deps/curl/lib/setup-os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/setup-os400.h -------------------------------------------------------------------------------- /src/deps/curl/lib/setup-vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/setup-vms.h -------------------------------------------------------------------------------- /src/deps/curl/lib/setup-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/setup-win32.h -------------------------------------------------------------------------------- /src/deps/curl/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/sha256.c -------------------------------------------------------------------------------- /src/deps/curl/lib/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/share.c -------------------------------------------------------------------------------- /src/deps/curl/lib/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/share.h -------------------------------------------------------------------------------- /src/deps/curl/lib/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/sigpipe.h -------------------------------------------------------------------------------- /src/deps/curl/lib/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/slist.c -------------------------------------------------------------------------------- /src/deps/curl/lib/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/slist.h -------------------------------------------------------------------------------- /src/deps/curl/lib/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/smb.c -------------------------------------------------------------------------------- /src/deps/curl/lib/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/smb.h -------------------------------------------------------------------------------- /src/deps/curl/lib/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/smtp.c -------------------------------------------------------------------------------- /src/deps/curl/lib/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/smtp.h -------------------------------------------------------------------------------- /src/deps/curl/lib/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/sockaddr.h -------------------------------------------------------------------------------- /src/deps/curl/lib/socketpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/socketpair.c -------------------------------------------------------------------------------- /src/deps/curl/lib/socketpair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/socketpair.h -------------------------------------------------------------------------------- /src/deps/curl/lib/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/socks.c -------------------------------------------------------------------------------- /src/deps/curl/lib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/socks.h -------------------------------------------------------------------------------- /src/deps/curl/lib/socks_sspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/socks_sspi.c -------------------------------------------------------------------------------- /src/deps/curl/lib/speedcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/speedcheck.c -------------------------------------------------------------------------------- /src/deps/curl/lib/speedcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/speedcheck.h -------------------------------------------------------------------------------- /src/deps/curl/lib/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/splay.c -------------------------------------------------------------------------------- /src/deps/curl/lib/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/splay.h -------------------------------------------------------------------------------- /src/deps/curl/lib/strcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strcase.c -------------------------------------------------------------------------------- /src/deps/curl/lib/strcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strcase.h -------------------------------------------------------------------------------- /src/deps/curl/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strdup.c -------------------------------------------------------------------------------- /src/deps/curl/lib/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strdup.h -------------------------------------------------------------------------------- /src/deps/curl/lib/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strerror.c -------------------------------------------------------------------------------- /src/deps/curl/lib/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strerror.h -------------------------------------------------------------------------------- /src/deps/curl/lib/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strtok.c -------------------------------------------------------------------------------- /src/deps/curl/lib/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strtok.h -------------------------------------------------------------------------------- /src/deps/curl/lib/strtoofft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strtoofft.c -------------------------------------------------------------------------------- /src/deps/curl/lib/strtoofft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/strtoofft.h -------------------------------------------------------------------------------- /src/deps/curl/lib/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/telnet.c -------------------------------------------------------------------------------- /src/deps/curl/lib/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/telnet.h -------------------------------------------------------------------------------- /src/deps/curl/lib/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/tftp.c -------------------------------------------------------------------------------- /src/deps/curl/lib/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/tftp.h -------------------------------------------------------------------------------- /src/deps/curl/lib/timediff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/timediff.c -------------------------------------------------------------------------------- /src/deps/curl/lib/timediff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/timediff.h -------------------------------------------------------------------------------- /src/deps/curl/lib/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/timeval.c -------------------------------------------------------------------------------- /src/deps/curl/lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/timeval.h -------------------------------------------------------------------------------- /src/deps/curl/lib/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/transfer.c -------------------------------------------------------------------------------- /src/deps/curl/lib/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/transfer.h -------------------------------------------------------------------------------- /src/deps/curl/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/url.c -------------------------------------------------------------------------------- /src/deps/curl/lib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/url.h -------------------------------------------------------------------------------- /src/deps/curl/lib/urlapi-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/urlapi-int.h -------------------------------------------------------------------------------- /src/deps/curl/lib/urlapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/urlapi.c -------------------------------------------------------------------------------- /src/deps/curl/lib/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/urldata.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vauth/cram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vauth/cram.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vauth/gsasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vauth/gsasl.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vauth/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vauth/ntlm.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vauth/ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vauth/ntlm.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vauth/vauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vauth/vauth.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vauth/vauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vauth/vauth.h -------------------------------------------------------------------------------- /src/deps/curl/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/version.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vquic/vquic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vquic/vquic.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vquic/vquic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vquic/vquic.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vssh/libssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vssh/libssh.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vssh/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vssh/ssh.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/gskit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/gskit.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/gskit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/gskit.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/gtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/gtls.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/gtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/gtls.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/keylog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/keylog.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/keylog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/keylog.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/nss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/nss.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/nssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/nssg.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/rustls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/rustls.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/rustls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/rustls.h -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/vtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/vtls.c -------------------------------------------------------------------------------- /src/deps/curl/lib/vtls/vtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/vtls/vtls.h -------------------------------------------------------------------------------- /src/deps/curl/lib/warnless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/warnless.c -------------------------------------------------------------------------------- /src/deps/curl/lib/warnless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/warnless.h -------------------------------------------------------------------------------- /src/deps/curl/lib/ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/ws.c -------------------------------------------------------------------------------- /src/deps/curl/lib/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/curl/lib/ws.h -------------------------------------------------------------------------------- /src/deps/cute_path/cute_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/cute_path/cute_path.h -------------------------------------------------------------------------------- /src/deps/dg/DG_dynarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/dg/DG_dynarr.h -------------------------------------------------------------------------------- /src/deps/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/README -------------------------------------------------------------------------------- /src/deps/freetype/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/bdf/bdf.c -------------------------------------------------------------------------------- /src/deps/freetype/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/bdf/bdf.h -------------------------------------------------------------------------------- /src/deps/freetype/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/cff/cff.c -------------------------------------------------------------------------------- /src/deps/freetype/src/dlg/dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/dlg/dlg.c -------------------------------------------------------------------------------- /src/deps/freetype/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/pcf/pcf.c -------------------------------------------------------------------------------- /src/deps/freetype/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/pcf/pcf.h -------------------------------------------------------------------------------- /src/deps/freetype/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/pfr/pfr.c -------------------------------------------------------------------------------- /src/deps/freetype/src/sdf/sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/sdf/sdf.c -------------------------------------------------------------------------------- /src/deps/freetype/src/svg/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/freetype/src/svg/svg.c -------------------------------------------------------------------------------- /src/deps/glew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/glew/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/glew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/glew/README.md -------------------------------------------------------------------------------- /src/deps/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/glew/include/GL/glew.h -------------------------------------------------------------------------------- /src/deps/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/glew/src/glew.c -------------------------------------------------------------------------------- /src/deps/glew/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/glew/src/glewinfo.c -------------------------------------------------------------------------------- /src/deps/glew/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/glew/src/visualinfo.c -------------------------------------------------------------------------------- /src/deps/kazmath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/kazmath/aabb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/aabb2.c -------------------------------------------------------------------------------- /src/deps/kazmath/aabb2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/aabb2.h -------------------------------------------------------------------------------- /src/deps/kazmath/aabb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/aabb3.c -------------------------------------------------------------------------------- /src/deps/kazmath/aabb3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/aabb3.h -------------------------------------------------------------------------------- /src/deps/kazmath/kazmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/kazmath.h -------------------------------------------------------------------------------- /src/deps/kazmath/lkazmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/lkazmath.c -------------------------------------------------------------------------------- /src/deps/kazmath/lkazmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/lkazmath.h -------------------------------------------------------------------------------- /src/deps/kazmath/mat3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/mat3.c -------------------------------------------------------------------------------- /src/deps/kazmath/mat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/mat3.h -------------------------------------------------------------------------------- /src/deps/kazmath/mat4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/mat4.c -------------------------------------------------------------------------------- /src/deps/kazmath/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/mat4.h -------------------------------------------------------------------------------- /src/deps/kazmath/plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/plane.c -------------------------------------------------------------------------------- /src/deps/kazmath/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/plane.h -------------------------------------------------------------------------------- /src/deps/kazmath/quaternion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/quaternion.c -------------------------------------------------------------------------------- /src/deps/kazmath/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/quaternion.h -------------------------------------------------------------------------------- /src/deps/kazmath/ray2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/ray2.c -------------------------------------------------------------------------------- /src/deps/kazmath/ray2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/ray2.h -------------------------------------------------------------------------------- /src/deps/kazmath/ray3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/ray3.c -------------------------------------------------------------------------------- /src/deps/kazmath/ray3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/ray3.h -------------------------------------------------------------------------------- /src/deps/kazmath/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/utility.c -------------------------------------------------------------------------------- /src/deps/kazmath/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/utility.h -------------------------------------------------------------------------------- /src/deps/kazmath/vec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/vec2.c -------------------------------------------------------------------------------- /src/deps/kazmath/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/vec2.h -------------------------------------------------------------------------------- /src/deps/kazmath/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/vec3.c -------------------------------------------------------------------------------- /src/deps/kazmath/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/vec3.h -------------------------------------------------------------------------------- /src/deps/kazmath/vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/vec4.c -------------------------------------------------------------------------------- /src/deps/kazmath/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/kazmath/vec4.h -------------------------------------------------------------------------------- /src/deps/khash/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/khash/khash.h -------------------------------------------------------------------------------- /src/deps/ksort/ksort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/ksort/ksort.h -------------------------------------------------------------------------------- /src/deps/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /src/deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/HISTORY -------------------------------------------------------------------------------- /src/deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/INSTALL -------------------------------------------------------------------------------- /src/deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/README -------------------------------------------------------------------------------- /src/deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/contents.html -------------------------------------------------------------------------------- /src/deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /src/deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /src/deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /src/deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /src/deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /src/deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /src/deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /src/deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /src/deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /src/deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /src/deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/README -------------------------------------------------------------------------------- /src/deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/all.c -------------------------------------------------------------------------------- /src/deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /src/deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /src/deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /src/deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /src/deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/min.c -------------------------------------------------------------------------------- /src/deps/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/noparser.c -------------------------------------------------------------------------------- /src/deps/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/etc/strict.lua -------------------------------------------------------------------------------- /src/deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /src/deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /src/deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /src/deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /src/deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /src/deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /src/deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /src/deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /src/deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /src/deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /src/deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /src/deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /src/deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /src/deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /src/deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /src/deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /src/deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /src/deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/linit.c -------------------------------------------------------------------------------- /src/deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /src/deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/llex.c -------------------------------------------------------------------------------- /src/deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/llex.h -------------------------------------------------------------------------------- /src/deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /src/deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /src/deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /src/deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /src/deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /src/deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /src/deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /src/deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /src/deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /src/deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /src/deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /src/deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /src/deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /src/deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /src/deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /src/deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /src/deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /src/deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /src/deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /src/deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /src/deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /src/deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /src/deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lua.c -------------------------------------------------------------------------------- /src/deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lua.h -------------------------------------------------------------------------------- /src/deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/luac.c -------------------------------------------------------------------------------- /src/deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /src/deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /src/deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /src/deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /src/deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /src/deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /src/deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /src/deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /src/deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/src/print.c -------------------------------------------------------------------------------- /src/deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/README -------------------------------------------------------------------------------- /src/deps/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/bisect.lua -------------------------------------------------------------------------------- /src/deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /src/deps/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/echo.lua -------------------------------------------------------------------------------- /src/deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/env.lua -------------------------------------------------------------------------------- /src/deps/lua/test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/factorial.lua -------------------------------------------------------------------------------- /src/deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /src/deps/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/fibfor.lua -------------------------------------------------------------------------------- /src/deps/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/globals.lua -------------------------------------------------------------------------------- /src/deps/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/life.lua -------------------------------------------------------------------------------- /src/deps/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/luac.lua -------------------------------------------------------------------------------- /src/deps/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/printf.lua -------------------------------------------------------------------------------- /src/deps/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/sieve.lua -------------------------------------------------------------------------------- /src/deps/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/sort.lua -------------------------------------------------------------------------------- /src/deps/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/table.lua -------------------------------------------------------------------------------- /src/deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /src/deps/luajit-cmake/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | 3 | -------------------------------------------------------------------------------- /src/deps/luajit-cmake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit-cmake/LICENSE -------------------------------------------------------------------------------- /src/deps/luajit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/.gitignore -------------------------------------------------------------------------------- /src/deps/luajit/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/COPYRIGHT -------------------------------------------------------------------------------- /src/deps/luajit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/README -------------------------------------------------------------------------------- /src/deps/luajit/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/doc/faq.html -------------------------------------------------------------------------------- /src/deps/luajit/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/etc/luajit.1 -------------------------------------------------------------------------------- /src/deps/luajit/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/etc/luajit.pc -------------------------------------------------------------------------------- /src/deps/luajit/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /src/deps/luajit/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/jit/p.lua -------------------------------------------------------------------------------- /src/deps/luajit/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/jit/v.lua -------------------------------------------------------------------------------- /src/deps/luajit/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lauxlib.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lib_aux.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lib_bit.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lib_ffi.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lib_io.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lib_jit.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lib_os.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_api.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_arch.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_asm.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_asm.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_bc.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_bc.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_buf.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_buf.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_char.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_char.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_clib.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_clib.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_def.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_err.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_err.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_ff.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_func.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_func.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_gc.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_gc.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_ir.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_ir.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_jit.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_lex.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_lex.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_lib.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_lib.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_load.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_meta.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_meta.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_obj.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_obj.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_prng.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_prng.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_snap.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_snap.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_str.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_str.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_tab.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_tab.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lj_vm.h -------------------------------------------------------------------------------- /src/deps/luajit/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/ljamalg.c -------------------------------------------------------------------------------- /src/deps/luajit/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lua.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lua.hpp -------------------------------------------------------------------------------- /src/deps/luajit/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/luaconf.h -------------------------------------------------------------------------------- /src/deps/luajit/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/luajit.c -------------------------------------------------------------------------------- /src/deps/luajit/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/luajit.h -------------------------------------------------------------------------------- /src/deps/luajit/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luajit/src/lualib.h -------------------------------------------------------------------------------- /src/deps/luasocket/auxiliar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/auxiliar.c -------------------------------------------------------------------------------- /src/deps/luasocket/auxiliar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/auxiliar.h -------------------------------------------------------------------------------- /src/deps/luasocket/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/buffer.c -------------------------------------------------------------------------------- /src/deps/luasocket/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/buffer.h -------------------------------------------------------------------------------- /src/deps/luasocket/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/compat.c -------------------------------------------------------------------------------- /src/deps/luasocket/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/compat.h -------------------------------------------------------------------------------- /src/deps/luasocket/except.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/except.c -------------------------------------------------------------------------------- /src/deps/luasocket/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/except.h -------------------------------------------------------------------------------- /src/deps/luasocket/ftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/ftp.lua -------------------------------------------------------------------------------- /src/deps/luasocket/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/http.lua -------------------------------------------------------------------------------- /src/deps/luasocket/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/inet.c -------------------------------------------------------------------------------- /src/deps/luasocket/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/inet.h -------------------------------------------------------------------------------- /src/deps/luasocket/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/io.c -------------------------------------------------------------------------------- /src/deps/luasocket/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/io.h -------------------------------------------------------------------------------- /src/deps/luasocket/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/ltn12.lua -------------------------------------------------------------------------------- /src/deps/luasocket/mbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/mbox.lua -------------------------------------------------------------------------------- /src/deps/luasocket/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/mime.c -------------------------------------------------------------------------------- /src/deps/luasocket/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/mime.h -------------------------------------------------------------------------------- /src/deps/luasocket/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/mime.lua -------------------------------------------------------------------------------- /src/deps/luasocket/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/options.c -------------------------------------------------------------------------------- /src/deps/luasocket/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/options.h -------------------------------------------------------------------------------- /src/deps/luasocket/pierror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/pierror.h -------------------------------------------------------------------------------- /src/deps/luasocket/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/select.c -------------------------------------------------------------------------------- /src/deps/luasocket/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/select.h -------------------------------------------------------------------------------- /src/deps/luasocket/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/serial.c -------------------------------------------------------------------------------- /src/deps/luasocket/smtp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/smtp.lua -------------------------------------------------------------------------------- /src/deps/luasocket/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/socket.h -------------------------------------------------------------------------------- /src/deps/luasocket/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/socket.lua -------------------------------------------------------------------------------- /src/deps/luasocket/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/tcp.c -------------------------------------------------------------------------------- /src/deps/luasocket/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/tcp.h -------------------------------------------------------------------------------- /src/deps/luasocket/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/timeout.c -------------------------------------------------------------------------------- /src/deps/luasocket/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/timeout.h -------------------------------------------------------------------------------- /src/deps/luasocket/tp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/tp.lua -------------------------------------------------------------------------------- /src/deps/luasocket/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/udp.c -------------------------------------------------------------------------------- /src/deps/luasocket/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/udp.h -------------------------------------------------------------------------------- /src/deps/luasocket/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/unix.c -------------------------------------------------------------------------------- /src/deps/luasocket/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/unix.h -------------------------------------------------------------------------------- /src/deps/luasocket/url.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/url.lua -------------------------------------------------------------------------------- /src/deps/luasocket/usocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/usocket.c -------------------------------------------------------------------------------- /src/deps/luasocket/usocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/usocket.h -------------------------------------------------------------------------------- /src/deps/luasocket/wsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/wsocket.c -------------------------------------------------------------------------------- /src/deps/luasocket/wsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/luasocket/wsocket.h -------------------------------------------------------------------------------- /src/deps/miniaudio/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/miniaudio/dr_flac.h -------------------------------------------------------------------------------- /src/deps/miniaudio/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/miniaudio/dr_mp3.h -------------------------------------------------------------------------------- /src/deps/miniaudio/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/miniaudio/dr_wav.h -------------------------------------------------------------------------------- /src/deps/miniaudio/jar_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/miniaudio/jar_mod.h -------------------------------------------------------------------------------- /src/deps/miniaudio/jar_xm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/miniaudio/jar_xm.h -------------------------------------------------------------------------------- /src/deps/newton/dgCore/dg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/newton/dgCore/dg.cpp -------------------------------------------------------------------------------- /src/deps/newton/dgCore/dg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/newton/dgCore/dg.h -------------------------------------------------------------------------------- /src/deps/ogg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/ogg/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/ogg/files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/ogg/files.xml -------------------------------------------------------------------------------- /src/deps/ogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/ogg/src/bitwise.c -------------------------------------------------------------------------------- /src/deps/ogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/ogg/src/framing.c -------------------------------------------------------------------------------- /src/deps/parson/parson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/parson/parson.c -------------------------------------------------------------------------------- /src/deps/parson/parson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/parson/parson.h -------------------------------------------------------------------------------- /src/deps/physfs/physfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/physfs/physfs.c -------------------------------------------------------------------------------- /src/deps/physfs/physfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/physfs/physfs.h -------------------------------------------------------------------------------- /src/deps/rxi_map/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/rxi_map/map.c -------------------------------------------------------------------------------- /src/deps/rxi_map/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/rxi_map/map.h -------------------------------------------------------------------------------- /src/deps/sdl/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/.clang-format -------------------------------------------------------------------------------- /src/deps/sdl/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/.clang-tidy -------------------------------------------------------------------------------- /src/deps/sdl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/.editorconfig -------------------------------------------------------------------------------- /src/deps/sdl/.git-hash: -------------------------------------------------------------------------------- 1 | 535d80badefc83c5c527ec5748f2a20d6a9310fe 2 | -------------------------------------------------------------------------------- /src/deps/sdl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/Android.mk -------------------------------------------------------------------------------- /src/deps/sdl/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/BUGS.txt -------------------------------------------------------------------------------- /src/deps/sdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/sdl/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/CREDITS.md -------------------------------------------------------------------------------- /src/deps/sdl/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/INSTALL.md -------------------------------------------------------------------------------- /src/deps/sdl/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/LICENSE.txt -------------------------------------------------------------------------------- /src/deps/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/README.md -------------------------------------------------------------------------------- /src/deps/sdl/REVISION.txt: -------------------------------------------------------------------------------- 1 | release-3.2.0-0-g535d80bad 2 | -------------------------------------------------------------------------------- /src/deps/sdl/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/VisualC/SDL.sln -------------------------------------------------------------------------------- /src/deps/sdl/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/VisualC/clean.sh -------------------------------------------------------------------------------- /src/deps/sdl/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/WhatsNew.txt -------------------------------------------------------------------------------- /src/deps/sdl/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /src/deps/sdl/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /src/deps/sdl/cmake/sdl3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/cmake/sdl3.pc.in -------------------------------------------------------------------------------- /src/deps/sdl/cmake/xxd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/cmake/xxd.py -------------------------------------------------------------------------------- /src/deps/sdl/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/docs/README.md -------------------------------------------------------------------------------- /src/deps/sdl/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/docs/doxyfile -------------------------------------------------------------------------------- /src/deps/sdl/docs/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/docs/hello.c -------------------------------------------------------------------------------- /src/deps/sdl/examples/asyncio/description.txt: -------------------------------------------------------------------------------- 1 | Asynchronous I/O -------------------------------------------------------------------------------- /src/deps/sdl/examples/demo/01-snake/README.txt: -------------------------------------------------------------------------------- 1 | A complete game of Snake, written in SDL. 2 | -------------------------------------------------------------------------------- /src/deps/sdl/examples/demo/description.txt: -------------------------------------------------------------------------------- 1 | Full game and app demos -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL.c -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_assert.c -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_error.c -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_guid.c -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_hints.c -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_list.c -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_list.h -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_log.c -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_log_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_log_c.h -------------------------------------------------------------------------------- /src/deps/sdl/src/SDL_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/SDL_utils.c -------------------------------------------------------------------------------- /src/deps/sdl/src/hidapi/VERSION: -------------------------------------------------------------------------------- 1 | 0.14.0 -------------------------------------------------------------------------------- /src/deps/sdl/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/e_exp.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/e_log.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/e_pow.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/k_cos.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/k_sin.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/k_tan.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/s_cos.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/s_sin.c -------------------------------------------------------------------------------- /src/deps/sdl/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/src/libm/s_tan.c -------------------------------------------------------------------------------- /src/deps/sdl/src/render/gpu/shaders/.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-generated 2 | -------------------------------------------------------------------------------- /src/deps/sdl/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/COPYING -------------------------------------------------------------------------------- /src/deps/sdl/test/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/LICENSE.txt -------------------------------------------------------------------------------- /src/deps/sdl/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/checkkeys.c -------------------------------------------------------------------------------- /src/deps/sdl/test/glass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/glass.bmp -------------------------------------------------------------------------------- /src/deps/sdl/test/glass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/glass.h -------------------------------------------------------------------------------- /src/deps/sdl/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/icon.bmp -------------------------------------------------------------------------------- /src/deps/sdl/test/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/icon.h -------------------------------------------------------------------------------- /src/deps/sdl/test/icon2x.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/icon2x.bmp -------------------------------------------------------------------------------- /src/deps/sdl/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/loopwave.c -------------------------------------------------------------------------------- /src/deps/sdl/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/main.cpp -------------------------------------------------------------------------------- /src/deps/sdl/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/moose.dat -------------------------------------------------------------------------------- /src/deps/sdl/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/picture.xbm -------------------------------------------------------------------------------- /src/deps/sdl/test/pretest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/pretest.c -------------------------------------------------------------------------------- /src/deps/sdl/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/sample.bmp -------------------------------------------------------------------------------- /src/deps/sdl/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/sample.wav -------------------------------------------------------------------------------- /src/deps/sdl/test/speaker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/speaker.bmp -------------------------------------------------------------------------------- /src/deps/sdl/test/sword.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/sword.wav -------------------------------------------------------------------------------- /src/deps/sdl/test/testaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testaudio.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testdraw.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testerror.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testevdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testevdev.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testfile.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testgl.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testgles.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testgles2.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testiconv.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testime.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testkeys.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testlock.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testmodal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testmodal.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testmouse.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testpen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testpen.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testpopup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testpopup.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testpower.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testqsort.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testscale.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testsem.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testshape.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testtime.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testtimer.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testtray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testtray.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testurl.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testutils.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testutils.h -------------------------------------------------------------------------------- /src/deps/sdl/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testver.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testwm.c -------------------------------------------------------------------------------- /src/deps/sdl/test/testyuv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testyuv.bmp -------------------------------------------------------------------------------- /src/deps/sdl/test/testyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/testyuv.c -------------------------------------------------------------------------------- /src/deps/sdl/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sdl/test/utf8.txt -------------------------------------------------------------------------------- /src/deps/sokol/sokol_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sokol/sokol_gfx.h -------------------------------------------------------------------------------- /src/deps/sokol/sokol_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sokol/sokol_log.h -------------------------------------------------------------------------------- /src/deps/sokol/sokol_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/sokol/sokol_time.h -------------------------------------------------------------------------------- /src/deps/vorbis/files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/files.xml -------------------------------------------------------------------------------- /src/deps/vorbis/lib/barkmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/barkmel.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/bitrate.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/bitrate.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/block.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/floor0.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/floor1.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/info.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/lookup.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/lookup.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/lpc.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/lpc.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/lsp.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/lsp.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/masking.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/mdct.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/mdct.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/misc.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/os.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/psy.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/psy.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/psytune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/psytune.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/res0.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/scales.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/smallft.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/smallft.h -------------------------------------------------------------------------------- /src/deps/vorbis/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/tone.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/window.c -------------------------------------------------------------------------------- /src/deps/vorbis/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbis/lib/window.h -------------------------------------------------------------------------------- /src/deps/vorbisidec/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/asm_arm.h -------------------------------------------------------------------------------- /src/deps/vorbisidec/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/block.c -------------------------------------------------------------------------------- /src/deps/vorbisidec/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/block.h -------------------------------------------------------------------------------- /src/deps/vorbisidec/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/floor0.c -------------------------------------------------------------------------------- /src/deps/vorbisidec/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/floor1.c -------------------------------------------------------------------------------- /src/deps/vorbisidec/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/info.c -------------------------------------------------------------------------------- /src/deps/vorbisidec/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/mdct.c -------------------------------------------------------------------------------- /src/deps/vorbisidec/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/mdct.h -------------------------------------------------------------------------------- /src/deps/vorbisidec/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/misc.h -------------------------------------------------------------------------------- /src/deps/vorbisidec/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/os.h -------------------------------------------------------------------------------- /src/deps/vorbisidec/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/res012.c -------------------------------------------------------------------------------- /src/deps/vorbisidec/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/window.c -------------------------------------------------------------------------------- /src/deps/vorbisidec/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/vorbisidec/window.h -------------------------------------------------------------------------------- /src/deps/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /src/deps/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/LICENSE -------------------------------------------------------------------------------- /src/deps/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/README -------------------------------------------------------------------------------- /src/deps/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/adler32.c -------------------------------------------------------------------------------- /src/deps/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/compress.c -------------------------------------------------------------------------------- /src/deps/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/crc32.c -------------------------------------------------------------------------------- /src/deps/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/crc32.h -------------------------------------------------------------------------------- /src/deps/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/deflate.c -------------------------------------------------------------------------------- /src/deps/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/deflate.h -------------------------------------------------------------------------------- /src/deps/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/gzclose.c -------------------------------------------------------------------------------- /src/deps/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/gzguts.h -------------------------------------------------------------------------------- /src/deps/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/gzlib.c -------------------------------------------------------------------------------- /src/deps/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/gzread.c -------------------------------------------------------------------------------- /src/deps/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/deps/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/infback.c -------------------------------------------------------------------------------- /src/deps/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/inffast.c -------------------------------------------------------------------------------- /src/deps/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/inffast.h -------------------------------------------------------------------------------- /src/deps/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/inffixed.h -------------------------------------------------------------------------------- /src/deps/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/inflate.c -------------------------------------------------------------------------------- /src/deps/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/inflate.h -------------------------------------------------------------------------------- /src/deps/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/inftrees.c -------------------------------------------------------------------------------- /src/deps/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/inftrees.h -------------------------------------------------------------------------------- /src/deps/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/trees.c -------------------------------------------------------------------------------- /src/deps/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/trees.h -------------------------------------------------------------------------------- /src/deps/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/uncompr.c -------------------------------------------------------------------------------- /src/deps/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/zconf.h -------------------------------------------------------------------------------- /src/deps/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/zlib.h -------------------------------------------------------------------------------- /src/deps/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/zutil.c -------------------------------------------------------------------------------- /src/deps/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/deps/zlib/zutil.h -------------------------------------------------------------------------------- /src/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanis2000/binocle-c/HEAD/src/dummy.c -------------------------------------------------------------------------------- /tools/sokol-shdc/linux/readme.txt: -------------------------------------------------------------------------------- 1 | Precompiled binaries for Linux go here (64-bit statically linked). 2 | 3 | -------------------------------------------------------------------------------- /tools/sokol-shdc/osx/readme.txt: -------------------------------------------------------------------------------- 1 | Precompiled binaries for macOS go here. 2 | 3 | -------------------------------------------------------------------------------- /tools/sokol-shdc/win32/readme.txt: -------------------------------------------------------------------------------- 1 | Precompiled binaries for Windows (64-bit) go here. 2 | 3 | --------------------------------------------------------------------------------