├── .clang-format ├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .travis.yml ├── README.md ├── bin ├── Tracy.exe ├── openvr_api.dll ├── steam_api64.dll └── steam_appid.txt ├── data ├── controllers │ └── gamecontrollerdb.txt ├── fonts │ ├── Cardenio │ │ ├── Cardenio Modern Bold.ttf │ │ ├── Cardenio Modern License.txt │ │ └── Cardenio Modern Std.ttf │ ├── Carrois_Gothic_SC │ │ ├── CarroisGothicSC-Regular.ttf │ │ └── OFL.txt │ ├── Droid_Sans │ │ ├── DroidSans-Bold.ttf │ │ ├── DroidSans.ttf │ │ └── LICENSE.txt │ ├── Droid_Sans_Mono │ │ ├── DroidSansMono.ttf │ │ └── LICENSE.txt │ ├── Fontin_Sans │ │ ├── Fontin_Sans.txt │ │ ├── Fontin_Sans_BI_45b.otf │ │ ├── Fontin_Sans_B_45b.otf │ │ ├── Fontin_Sans_I_45b.otf │ │ ├── Fontin_Sans_R_45b.otf │ │ └── Fontin_Sans_SC_45b.otf │ ├── Game_Icons │ │ └── game-icons.ttf │ ├── Inconsolata │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-Regular.ttf │ │ └── OFL.txt │ ├── Square │ │ ├── square.ttf │ │ └── square.txt │ ├── ThaleahFat │ │ ├── ThaleahFat.ttf │ │ └── readme.txt │ ├── US101 │ │ ├── US101.ttf │ │ └── US101.txt │ ├── Walter_Turncoat │ │ ├── LICENSE.txt │ │ └── WalterTurncoat.ttf │ └── Zapato │ │ ├── clean_your_neighborhood.ttf │ │ ├── duarte_centenario.ttf │ │ ├── duarte_juramento.ttf │ │ ├── greensboro.ttf │ │ ├── readme.txt │ │ └── slow_down_girls.ttf ├── shaders │ ├── aa.materials │ ├── crt.materials │ └── default.materials ├── sounds │ ├── awesund │ │ ├── cg1.wav │ │ ├── explode.wav │ │ ├── explodemini.wav │ │ ├── flaunch.wav │ │ ├── readmeFX1.txt │ │ ├── rifle.wav │ │ ├── rlaunch.wav │ │ └── shotgun.wav │ └── tutorial │ │ ├── AUTHORS.TXT │ │ ├── Cyber-Dream-Loop short.ogg │ │ ├── alien_buzz2.ogg │ │ └── ufo hit.ogg └── textures │ ├── entity.png │ └── lobster.jpg ├── dev ├── CMakeLists.txt ├── LICENSE.txt ├── README.txt ├── TODO.txt ├── android-project │ ├── android-project.iml │ ├── app │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── put_lbc_and_other_files_here.txt │ │ │ ├── java │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── HIDDevice.java │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ ├── SDLControllerManager.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_osx.sh ├── compiled_lobster │ ├── .gitignore │ ├── compile.bat │ ├── compiled_lobster │ │ ├── compiled_lobster.sln │ │ └── compiled_lobster │ │ │ ├── compiled_lobster.vcxproj │ │ │ └── compiled_lobster.vcxproj.filters │ └── src │ │ └── .empty ├── emscripten │ ├── Makefile │ └── assets │ │ └── put_lpak_and_other_files_here.txt ├── external │ ├── SDL │ │ ├── CMakeLists.txt │ │ ├── SDL2.spec.in │ │ ├── build-scripts │ │ │ ├── android-prefab.sh │ │ │ ├── androidbuild.sh │ │ │ ├── androidbuildlibs.sh │ │ │ ├── checker-buildbot.sh │ │ │ ├── clang++-fat.sh │ │ │ ├── clang-fat.sh │ │ │ ├── clang-format-src.sh │ │ │ ├── codechecker-buildbot.sh │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── emscripten-buildbot.sh │ │ │ ├── fnsince.pl │ │ │ ├── gen_audio_channel_conversion.c │ │ │ ├── gen_audio_resampler_filter.c │ │ │ ├── git-pre-push-hook.pl │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── mkinstalldirs │ │ │ ├── nacl-buildbot.sh │ │ │ ├── naclbuild.sh │ │ │ ├── raspberrypi-buildbot.sh │ │ │ ├── showrev.sh │ │ │ ├── strip_fPIC.sh │ │ │ ├── test-versioning.sh │ │ │ ├── update-copyright.sh │ │ │ ├── update-version.sh │ │ │ ├── updaterev.sh │ │ │ ├── wikiheaders.pl │ │ │ └── windows-buildbot-zipper.bat │ │ ├── cmake │ │ │ ├── CheckCPUArchitecture.cmake │ │ │ ├── macros.cmake │ │ │ ├── sdlchecks.cmake │ │ │ ├── sdlfind.cmake │ │ │ ├── sdlplatform.cmake │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jni │ │ │ │ └── Android.mk │ │ │ │ ├── main_cli.c │ │ │ │ ├── main_gui.c │ │ │ │ ├── main_lib.c │ │ │ │ ├── test_pkgconfig.sh │ │ │ │ └── test_sdlconfig.sh │ │ ├── cmake_uninstall.cmake.in │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.cmake │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_emscripten.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_ngage.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_psp.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wingdk.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_config_xbox.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_revision.h.cmake │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── sdl2-config.in │ │ ├── sdl2.pc.in │ │ └── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_dataqueue.c │ │ │ ├── SDL_dataqueue.h │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_guid.c │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_hints_c.h │ │ │ ├── SDL_internal.h │ │ │ ├── SDL_list.c │ │ │ ├── SDL_list.h │ │ │ ├── SDL_log.c │ │ │ ├── SDL_log_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_audio_resampler_filter.h │ │ │ ├── SDL_audiocvt.c │ │ │ ├── SDL_audiodev.c │ │ │ ├── SDL_audiodev_c.h │ │ │ ├── SDL_audiotypecvt.c │ │ │ ├── SDL_mixer.c │ │ │ ├── SDL_sysaudio.h │ │ │ ├── SDL_wave.c │ │ │ ├── SDL_wave.h │ │ │ ├── aaudio │ │ │ │ ├── SDL_aaudio.c │ │ │ │ ├── SDL_aaudio.h │ │ │ │ └── SDL_aaudiofuncs.h │ │ │ ├── alsa │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ └── SDL_alsa_audio.h │ │ │ ├── android │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ └── SDL_androidaudio.h │ │ │ ├── arts │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ └── SDL_artsaudio.h │ │ │ ├── bsd │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ └── SDL_bsdaudio.h │ │ │ ├── coreaudio │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ └── SDL_coreaudio.m │ │ │ ├── directsound │ │ │ │ ├── SDL_directsound.c │ │ │ │ └── SDL_directsound.h │ │ │ ├── disk │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ └── SDL_diskaudio.h │ │ │ ├── dsp │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ └── SDL_dspaudio.h │ │ │ ├── dummy │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ └── SDL_dummyaudio.h │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ ├── esd │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ └── SDL_esdaudio.h │ │ │ ├── fusionsound │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ └── SDL_fsaudio.h │ │ │ ├── haiku │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ └── SDL_haikuaudio.h │ │ │ ├── jack │ │ │ │ ├── SDL_jackaudio.c │ │ │ │ └── SDL_jackaudio.h │ │ │ ├── n3ds │ │ │ │ ├── SDL_n3dsaudio.c │ │ │ │ └── SDL_n3dsaudio.h │ │ │ ├── nacl │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ └── SDL_naclaudio.h │ │ │ ├── nas │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ └── SDL_nasaudio.h │ │ │ ├── netbsd │ │ │ │ ├── SDL_netbsdaudio.c │ │ │ │ └── SDL_netbsdaudio.h │ │ │ ├── openslES │ │ │ │ ├── SDL_openslES.c │ │ │ │ └── SDL_openslES.h │ │ │ ├── os2 │ │ │ │ ├── SDL_os2audio.c │ │ │ │ └── SDL_os2audio.h │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.h │ │ │ ├── pipewire │ │ │ │ ├── SDL_pipewire.c │ │ │ │ └── SDL_pipewire.h │ │ │ ├── ps2 │ │ │ │ ├── SDL_ps2audio.c │ │ │ │ └── SDL_ps2audio.h │ │ │ ├── psp │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ └── SDL_pspaudio.h │ │ │ ├── pulseaudio │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ └── SDL_pulseaudio.h │ │ │ ├── qsa │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ └── SDL_qsa_audio.h │ │ │ ├── sdlgenaudiocvt.pl │ │ │ ├── sndio │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ └── SDL_sndioaudio.h │ │ │ ├── sun │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ └── SDL_sunaudio.h │ │ │ ├── vita │ │ │ │ ├── SDL_vitaaudio.c │ │ │ │ └── SDL_vitaaudio.h │ │ │ ├── wasapi │ │ │ │ ├── SDL_wasapi.c │ │ │ │ ├── SDL_wasapi.h │ │ │ │ ├── SDL_wasapi_win32.c │ │ │ │ └── SDL_wasapi_winrt.cpp │ │ │ ├── winmm │ │ │ │ ├── SDL_winmm.c │ │ │ │ └── SDL_winmm.h │ │ │ └── xaudio2 │ │ │ │ ├── SDL_xaudio2.c │ │ │ │ ├── SDL_xaudio2.h │ │ │ │ ├── SDL_xaudio2_winrthelpers.cpp │ │ │ │ └── SDL_xaudio2_winrthelpers.h │ │ │ ├── core │ │ │ ├── android │ │ │ │ ├── SDL_android.c │ │ │ │ ├── SDL_android.h │ │ │ │ └── keyinfotable.h │ │ │ ├── freebsd │ │ │ │ ├── SDL_evdev_kbd_default_keyaccmap.h │ │ │ │ └── SDL_evdev_kbd_freebsd.c │ │ │ ├── gdk │ │ │ │ ├── SDL_gdk.cpp │ │ │ │ └── SDL_gdk.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_sandbox.c │ │ │ │ ├── SDL_sandbox.h │ │ │ │ ├── SDL_threadprio.c │ │ │ │ ├── SDL_udev.c │ │ │ │ └── SDL_udev.h │ │ │ ├── openbsd │ │ │ │ ├── SDL_wscons.h │ │ │ │ ├── SDL_wscons_kbd.c │ │ │ │ └── SDL_wscons_mouse.c │ │ │ ├── os2 │ │ │ │ ├── SDL_os2.c │ │ │ │ ├── SDL_os2.h │ │ │ │ └── geniconv │ │ │ │ │ ├── geniconv.c │ │ │ │ │ ├── geniconv.h │ │ │ │ │ ├── iconv.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── os2cp.c │ │ │ │ │ ├── os2cp.h │ │ │ │ │ ├── os2iconv.c │ │ │ │ │ ├── sys2utf8.c │ │ │ │ │ └── test.c │ │ │ ├── unix │ │ │ │ ├── SDL_poll.c │ │ │ │ └── SDL_poll.h │ │ │ ├── windows │ │ │ │ ├── SDL_directx.h │ │ │ │ ├── SDL_hid.c │ │ │ │ ├── SDL_hid.h │ │ │ │ ├── SDL_immdevice.c │ │ │ │ ├── SDL_immdevice.h │ │ │ │ ├── SDL_windows.c │ │ │ │ ├── SDL_windows.h │ │ │ │ ├── SDL_xinput.c │ │ │ │ └── SDL_xinput.h │ │ │ └── winrt │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ └── SDL_winrtapp_xaml.h │ │ │ ├── cpuinfo │ │ │ └── SDL_cpuinfo.c │ │ │ ├── dynapi │ │ │ ├── SDL2.exports │ │ │ ├── SDL_dynapi.c │ │ │ ├── SDL_dynapi.h │ │ │ ├── SDL_dynapi_overrides.h │ │ │ ├── SDL_dynapi_procs.h │ │ │ └── gendynapi.pl │ │ │ ├── events │ │ │ ├── SDL_clipboardevents.c │ │ │ ├── SDL_clipboardevents_c.h │ │ │ ├── SDL_displayevents.c │ │ │ ├── SDL_displayevents_c.h │ │ │ ├── SDL_dropevents.c │ │ │ ├── SDL_dropevents_c.h │ │ │ ├── SDL_events.c │ │ │ ├── SDL_events_c.h │ │ │ ├── SDL_gesture.c │ │ │ ├── SDL_gesture_c.h │ │ │ ├── SDL_keyboard.c │ │ │ ├── SDL_keyboard_c.h │ │ │ ├── SDL_keysym_to_scancode.c │ │ │ ├── SDL_keysym_to_scancode_c.h │ │ │ ├── SDL_mouse.c │ │ │ ├── SDL_mouse_c.h │ │ │ ├── SDL_quit.c │ │ │ ├── SDL_scancode_tables.c │ │ │ ├── SDL_scancode_tables_c.h │ │ │ ├── SDL_sysevents.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_ascii.h │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ ├── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ │ └── n3ds │ │ │ │ ├── SDL_rwopsromfs.c │ │ │ │ └── SDL_rwopsromfs.h │ │ │ ├── filesystem │ │ │ ├── android │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── cocoa │ │ │ │ └── SDL_sysfilesystem.m │ │ │ ├── dummy │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── emscripten │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ ├── n3ds │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── nacl │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── os2 │ │ │ │ └── SDL_sysfilesystem.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 │ │ │ └── winrt │ │ │ │ └── SDL_sysfilesystem.cpp │ │ │ ├── haptic │ │ │ ├── SDL_haptic.c │ │ │ ├── SDL_haptic_c.h │ │ │ ├── SDL_syshaptic.h │ │ │ ├── android │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ │ ├── darwin │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── linux │ │ │ │ └── SDL_syshaptic.c │ │ │ └── windows │ │ │ │ ├── SDL_dinputhaptic.c │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ └── SDL_xinputhaptic_c.h │ │ │ ├── hidapi │ │ │ ├── AUTHORS.txt │ │ │ ├── HACKING.txt │ │ │ ├── LICENSE-bsd.txt │ │ │ ├── LICENSE-gpl3.txt │ │ │ ├── LICENSE-orig.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile.am │ │ │ ├── README.txt │ │ │ ├── SDL_hidapi.c │ │ │ ├── SDL_hidapi_c.h │ │ │ ├── android │ │ │ │ ├── hid.cpp │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ │ └── project.properties │ │ │ ├── bootstrap │ │ │ ├── configure.ac │ │ │ ├── doxygen │ │ │ │ └── Doxyfile │ │ │ ├── hidapi │ │ │ │ └── hidapi.h │ │ │ ├── hidtest │ │ │ │ ├── Makefile.am │ │ │ │ └── hidtest.cpp │ │ │ ├── ios │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ └── hid.m │ │ │ ├── libusb │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.freebsd │ │ │ │ ├── Makefile.linux │ │ │ │ ├── hid.c │ │ │ │ └── hidusb.cpp │ │ │ ├── linux │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── hid.c │ │ │ │ ├── hid.cpp │ │ │ │ └── hidraw.cpp │ │ │ ├── m4 │ │ │ │ ├── ax_pthread.m4 │ │ │ │ └── pkg.m4 │ │ │ ├── mac │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ └── hid.c │ │ │ ├── pc │ │ │ │ ├── hidapi-hidraw.pc.in │ │ │ │ ├── hidapi-libusb.pc.in │ │ │ │ └── hidapi.pc.in │ │ │ ├── testgui │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.freebsd │ │ │ │ ├── Makefile.linux │ │ │ │ ├── Makefile.mac │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── TestGUI.app.in │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Signal11.icns │ │ │ │ ├── copy_to_bundle.sh │ │ │ │ ├── mac_support.cpp │ │ │ │ ├── mac_support.h │ │ │ │ ├── mac_support_cocoa.m │ │ │ │ ├── start.sh │ │ │ │ ├── test.cpp │ │ │ │ ├── testgui.sln │ │ │ │ └── testgui.vcproj │ │ │ ├── udev │ │ │ │ └── 99-hid.rules │ │ │ └── windows │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── ddk_build │ │ │ │ ├── hidapi.def │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── hid.c │ │ │ │ ├── hidapi.sln │ │ │ │ ├── hidapi.vcproj │ │ │ │ └── hidtest.vcproj │ │ │ ├── joystick │ │ │ ├── SDL_gamecontroller.c │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ ├── SDL_joystick.c │ │ │ ├── SDL_joystick_c.h │ │ │ ├── SDL_sysjoystick.h │ │ │ ├── android │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── bsd │ │ │ │ ├── SDL_bsdjoystick.c │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── check_8bitdo.sh │ │ │ ├── controller_list.h │ │ │ ├── controller_type.c │ │ │ ├── controller_type.h │ │ │ ├── darwin │ │ │ │ ├── SDL_iokitjoystick.c │ │ │ │ ├── SDL_iokitjoystick_c.h │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── emscripten │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── 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_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 │ │ │ ├── iphoneos │ │ │ │ ├── SDL_mfijoystick.m │ │ │ │ ├── SDL_mfijoystick_c.h │ │ │ │ ├── SDL_sysjoystick.m │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── n3ds │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── os2 │ │ │ │ └── SDL_os2joystick.c │ │ │ ├── ps2 │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── psp │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── sort_controllers.py │ │ │ ├── steam │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ └── SDL_steamcontroller.h │ │ │ ├── usb_ids.h │ │ │ ├── virtual │ │ │ │ ├── SDL_virtualjoystick.c │ │ │ │ └── SDL_virtualjoystick_c.h │ │ │ ├── vita │ │ │ │ └── SDL_sysjoystick.c │ │ │ └── windows │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ ├── SDL_rawinputjoystick.c │ │ │ │ ├── SDL_rawinputjoystick_c.h │ │ │ │ ├── SDL_windows_gaming_input.c │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ ├── libm │ │ │ ├── e_atan2.c │ │ │ ├── e_exp.c │ │ │ ├── e_fmod.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_sqrt.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── k_tan.c │ │ │ ├── math_libm.h │ │ │ ├── math_private.h │ │ │ ├── s_atan.c │ │ │ ├── s_copysign.c │ │ │ ├── s_cos.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_sin.c │ │ │ └── s_tan.c │ │ │ ├── loadso │ │ │ ├── dlopen │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── os2 │ │ │ │ └── SDL_sysloadso.c │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── locale │ │ │ ├── SDL_locale.c │ │ │ ├── SDL_syslocale.h │ │ │ ├── android │ │ │ │ └── SDL_syslocale.c │ │ │ ├── dummy │ │ │ │ └── SDL_syslocale.c │ │ │ ├── emscripten │ │ │ │ └── SDL_syslocale.c │ │ │ ├── haiku │ │ │ │ └── SDL_syslocale.cc │ │ │ ├── macosx │ │ │ │ └── SDL_syslocale.m │ │ │ ├── n3ds │ │ │ │ └── SDL_syslocale.c │ │ │ ├── unix │ │ │ │ └── SDL_syslocale.c │ │ │ ├── vita │ │ │ │ └── SDL_syslocale.c │ │ │ ├── windows │ │ │ │ └── SDL_syslocale.c │ │ │ └── winrt │ │ │ │ └── SDL_syslocale.c │ │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.c │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ ├── gdk │ │ │ │ └── SDL_gdk_main.c │ │ │ ├── haiku │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── n3ds │ │ │ │ └── SDL_n3ds_main.c │ │ │ ├── nacl │ │ │ │ └── SDL_nacl_main.c │ │ │ ├── ngage │ │ │ │ └── SDL_ngage_main.cpp │ │ │ ├── ps2 │ │ │ │ └── SDL_ps2_main.c │ │ │ ├── psp │ │ │ │ └── SDL_psp_main.c │ │ │ ├── uikit │ │ │ │ └── SDL_uikit_main.c │ │ │ ├── windows │ │ │ │ ├── SDL_windows_main.c │ │ │ │ └── version.rc │ │ │ └── winrt │ │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ │ ├── SDL2-WinRTResources.rc │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ │ ├── misc │ │ │ ├── SDL_sysurl.h │ │ │ ├── SDL_url.c │ │ │ ├── android │ │ │ │ └── SDL_sysurl.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysurl.c │ │ │ ├── emscripten │ │ │ │ └── SDL_sysurl.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysurl.cc │ │ │ ├── ios │ │ │ │ └── SDL_sysurl.m │ │ │ ├── macosx │ │ │ │ └── SDL_sysurl.m │ │ │ ├── riscos │ │ │ │ └── SDL_sysurl.c │ │ │ ├── unix │ │ │ │ └── SDL_sysurl.c │ │ │ ├── vita │ │ │ │ └── SDL_sysurl.c │ │ │ ├── windows │ │ │ │ └── SDL_sysurl.c │ │ │ └── winrt │ │ │ │ └── SDL_sysurl.cpp │ │ │ ├── power │ │ │ ├── SDL_power.c │ │ │ ├── SDL_syspower.h │ │ │ ├── android │ │ │ │ └── SDL_syspower.c │ │ │ ├── emscripten │ │ │ │ └── SDL_syspower.c │ │ │ ├── haiku │ │ │ │ └── SDL_syspower.c │ │ │ ├── linux │ │ │ │ └── SDL_syspower.c │ │ │ ├── macosx │ │ │ │ └── SDL_syspower.c │ │ │ ├── n3ds │ │ │ │ └── SDL_syspower.c │ │ │ ├── psp │ │ │ │ └── SDL_syspower.c │ │ │ ├── uikit │ │ │ │ ├── SDL_syspower.h │ │ │ │ └── SDL_syspower.m │ │ │ ├── vita │ │ │ │ └── SDL_syspower.c │ │ │ ├── windows │ │ │ │ └── SDL_syspower.c │ │ │ └── winrt │ │ │ │ └── SDL_syspower.cpp │ │ │ ├── render │ │ │ ├── SDL_d3dmath.c │ │ │ ├── SDL_d3dmath.h │ │ │ ├── SDL_render.c │ │ │ ├── SDL_sysrender.h │ │ │ ├── SDL_yuv_mmx.c │ │ │ ├── SDL_yuv_mmx_c.h │ │ │ ├── SDL_yuv_sw.c │ │ │ ├── SDL_yuv_sw_c.h │ │ │ ├── direct3d │ │ │ │ ├── SDL_render_d3d.c │ │ │ │ ├── SDL_shaders_d3d.c │ │ │ │ └── SDL_shaders_d3d.h │ │ │ ├── direct3d11 │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ ├── SDL_render_winrt.h │ │ │ │ ├── SDL_shaders_d3d11.c │ │ │ │ └── SDL_shaders_d3d11.h │ │ │ ├── direct3d12 │ │ │ │ ├── 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 │ │ │ ├── metal │ │ │ │ ├── SDL_render_metal.m │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ ├── SDL_shaders_metal_iphonesimulator.h │ │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ │ ├── SDL_shaders_metal_tvsimulator.h │ │ │ │ └── build-metal-shaders.sh │ │ │ ├── mmx.h │ │ │ ├── opengl │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ ├── SDL_render_gl.c │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ └── SDL_shaders_gl.h │ │ │ ├── opengles │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ └── SDL_render_gles.c │ │ │ ├── opengles2 │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ └── SDL_shaders_gles2.h │ │ │ ├── ps2 │ │ │ │ └── SDL_render_ps2.c │ │ │ ├── psp │ │ │ │ └── SDL_render_psp.c │ │ │ ├── software │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ ├── SDL_blendline.c │ │ │ │ ├── SDL_blendline.h │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ ├── SDL_draw.h │ │ │ │ ├── SDL_drawline.c │ │ │ │ ├── SDL_drawline.h │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ ├── SDL_render_sw.c │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ ├── SDL_rotate.c │ │ │ │ ├── SDL_rotate.h │ │ │ │ ├── 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 │ │ │ ├── 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_crc16.c │ │ │ ├── SDL_crc32.c │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_mslibc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ ├── SDL_string.c │ │ │ ├── SDL_strtokr.c │ │ │ └── SDL_vacopy.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_imageBlit.c │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ ├── SDL_test_imageFace.c │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ ├── SDL_test_log.c │ │ │ ├── SDL_test_md5.c │ │ │ ├── SDL_test_memory.c │ │ │ └── SDL_test_random.c │ │ │ ├── thread │ │ │ ├── SDL_systhread.h │ │ │ ├── SDL_thread.c │ │ │ ├── SDL_thread_c.h │ │ │ ├── generic │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── n3ds │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── ngage │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ ├── SDL_syssem.cpp │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── os2 │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ ├── SDL_systls.c │ │ │ │ └── SDL_systls_c.h │ │ │ ├── ps2 │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── psp │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── pthread │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── stdcpp │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── vita │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ └── windows │ │ │ │ ├── SDL_syscond_cv.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── timer │ │ │ ├── SDL_timer.c │ │ │ ├── SDL_timer_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_systimer.c │ │ │ ├── haiku │ │ │ │ └── SDL_systimer.c │ │ │ ├── n3ds │ │ │ │ └── SDL_systimer.c │ │ │ ├── ngage │ │ │ │ └── SDL_systimer.cpp │ │ │ ├── os2 │ │ │ │ └── SDL_systimer.c │ │ │ ├── ps2 │ │ │ │ └── SDL_systimer.c │ │ │ ├── psp │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── SDL_systimer.c │ │ │ ├── vita │ │ │ │ └── SDL_systimer.c │ │ │ └── windows │ │ │ │ └── SDL_systimer.c │ │ │ └── video │ │ │ ├── SDL_RLEaccel.c │ │ │ ├── SDL_RLEaccel_c.h │ │ │ ├── SDL_blit.c │ │ │ ├── SDL_blit.h │ │ │ ├── SDL_blit_0.c │ │ │ ├── SDL_blit_1.c │ │ │ ├── SDL_blit_A.c │ │ │ ├── SDL_blit_N.c │ │ │ ├── SDL_blit_auto.c │ │ │ ├── SDL_blit_auto.h │ │ │ ├── SDL_blit_copy.c │ │ │ ├── SDL_blit_copy.h │ │ │ ├── SDL_blit_slow.c │ │ │ ├── SDL_blit_slow.h │ │ │ ├── SDL_bmp.c │ │ │ ├── SDL_clipboard.c │ │ │ ├── SDL_egl.c │ │ │ ├── SDL_egl_c.h │ │ │ ├── SDL_fillrect.c │ │ │ ├── SDL_pixels.c │ │ │ ├── SDL_pixels_c.h │ │ │ ├── SDL_rect.c │ │ │ ├── SDL_rect_c.h │ │ │ ├── SDL_rect_impl.h │ │ │ ├── SDL_shape.c │ │ │ ├── SDL_shape_internals.h │ │ │ ├── SDL_stretch.c │ │ │ ├── SDL_surface.c │ │ │ ├── SDL_sysvideo.h │ │ │ ├── SDL_video.c │ │ │ ├── SDL_vulkan_internal.h │ │ │ ├── SDL_vulkan_utils.c │ │ │ ├── SDL_yuv.c │ │ │ ├── SDL_yuv_c.h │ │ │ ├── android │ │ │ ├── SDL_androidclipboard.c │ │ │ ├── SDL_androidclipboard.h │ │ │ ├── SDL_androidevents.c │ │ │ ├── SDL_androidevents.h │ │ │ ├── SDL_androidgl.c │ │ │ ├── SDL_androidgl.h │ │ │ ├── SDL_androidkeyboard.c │ │ │ ├── SDL_androidkeyboard.h │ │ │ ├── SDL_androidmessagebox.c │ │ │ ├── SDL_androidmessagebox.h │ │ │ ├── SDL_androidmouse.c │ │ │ ├── SDL_androidmouse.h │ │ │ ├── SDL_androidtouch.c │ │ │ ├── SDL_androidtouch.h │ │ │ ├── SDL_androidvideo.c │ │ │ ├── SDL_androidvideo.h │ │ │ ├── SDL_androidvulkan.c │ │ │ ├── SDL_androidvulkan.h │ │ │ ├── SDL_androidwindow.c │ │ │ └── SDL_androidwindow.h │ │ │ ├── arm │ │ │ ├── pixman-arm-asm.h │ │ │ ├── pixman-arm-neon-asm.S │ │ │ ├── pixman-arm-neon-asm.h │ │ │ ├── pixman-arm-simd-asm.S │ │ │ └── pixman-arm-simd-asm.h │ │ │ ├── cocoa │ │ │ ├── SDL_cocoaclipboard.h │ │ │ ├── SDL_cocoaclipboard.m │ │ │ ├── SDL_cocoaevents.h │ │ │ ├── SDL_cocoaevents.m │ │ │ ├── SDL_cocoakeyboard.h │ │ │ ├── SDL_cocoakeyboard.m │ │ │ ├── SDL_cocoamessagebox.h │ │ │ ├── SDL_cocoamessagebox.m │ │ │ ├── SDL_cocoametalview.h │ │ │ ├── SDL_cocoametalview.m │ │ │ ├── SDL_cocoamodes.h │ │ │ ├── SDL_cocoamodes.m │ │ │ ├── SDL_cocoamouse.h │ │ │ ├── SDL_cocoamouse.m │ │ │ ├── SDL_cocoamousetap.h │ │ │ ├── SDL_cocoamousetap.m │ │ │ ├── SDL_cocoaopengl.h │ │ │ ├── SDL_cocoaopengl.m │ │ │ ├── SDL_cocoaopengles.h │ │ │ ├── SDL_cocoaopengles.m │ │ │ ├── SDL_cocoashape.h │ │ │ ├── SDL_cocoashape.m │ │ │ ├── SDL_cocoavideo.h │ │ │ ├── SDL_cocoavideo.m │ │ │ ├── SDL_cocoavulkan.h │ │ │ ├── SDL_cocoavulkan.m │ │ │ ├── SDL_cocoawindow.h │ │ │ └── SDL_cocoawindow.m │ │ │ ├── directfb │ │ │ ├── SDL_DirectFB_WM.c │ │ │ ├── SDL_DirectFB_WM.h │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ ├── SDL_DirectFB_events.c │ │ │ ├── SDL_DirectFB_events.h │ │ │ ├── SDL_DirectFB_modes.c │ │ │ ├── SDL_DirectFB_modes.h │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ ├── SDL_DirectFB_render.c │ │ │ ├── SDL_DirectFB_render.h │ │ │ ├── SDL_DirectFB_shape.c │ │ │ ├── SDL_DirectFB_shape.h │ │ │ ├── SDL_DirectFB_video.c │ │ │ ├── SDL_DirectFB_video.h │ │ │ ├── SDL_DirectFB_vulkan.c │ │ │ ├── SDL_DirectFB_vulkan.h │ │ │ ├── SDL_DirectFB_window.c │ │ │ └── SDL_DirectFB_window.h │ │ │ ├── dummy │ │ │ ├── SDL_nullevents.c │ │ │ ├── SDL_nullevents_c.h │ │ │ ├── SDL_nullframebuffer.c │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ ├── SDL_nullvideo.c │ │ │ └── SDL_nullvideo.h │ │ │ ├── emscripten │ │ │ ├── SDL_emscriptenevents.c │ │ │ ├── SDL_emscriptenevents.h │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ ├── SDL_emscriptenmouse.c │ │ │ ├── SDL_emscriptenmouse.h │ │ │ ├── SDL_emscriptenopengles.c │ │ │ ├── SDL_emscriptenopengles.h │ │ │ ├── SDL_emscriptenvideo.c │ │ │ └── SDL_emscriptenvideo.h │ │ │ ├── haiku │ │ │ ├── SDL_BApp.h │ │ │ ├── SDL_BWin.h │ │ │ ├── SDL_bclipboard.cc │ │ │ ├── SDL_bclipboard.h │ │ │ ├── SDL_bevents.cc │ │ │ ├── SDL_bevents.h │ │ │ ├── SDL_bframebuffer.cc │ │ │ ├── SDL_bframebuffer.h │ │ │ ├── SDL_bkeyboard.cc │ │ │ ├── SDL_bkeyboard.h │ │ │ ├── SDL_bmessagebox.cc │ │ │ ├── SDL_bmessagebox.h │ │ │ ├── SDL_bmodes.cc │ │ │ ├── SDL_bmodes.h │ │ │ ├── SDL_bopengl.cc │ │ │ ├── SDL_bopengl.h │ │ │ ├── SDL_bvideo.cc │ │ │ ├── SDL_bvideo.h │ │ │ ├── SDL_bwindow.cc │ │ │ └── SDL_bwindow.h │ │ │ ├── khronos │ │ │ ├── EGL │ │ │ │ ├── egl.h │ │ │ │ ├── eglext.h │ │ │ │ └── eglplatform.h │ │ │ ├── GLES2 │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ ├── KHR │ │ │ │ └── khrplatform.h │ │ │ └── vulkan │ │ │ │ ├── vk_icd.h │ │ │ │ ├── vk_layer.h │ │ │ │ ├── vk_platform.h │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ ├── vulkan.h │ │ │ │ ├── vulkan.hpp │ │ │ │ ├── vulkan_android.h │ │ │ │ ├── vulkan_beta.h │ │ │ │ ├── vulkan_core.h │ │ │ │ ├── vulkan_directfb.h │ │ │ │ ├── vulkan_enums.hpp │ │ │ │ ├── vulkan_format_traits.hpp │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ ├── vulkan_funcs.hpp │ │ │ │ ├── vulkan_ggp.h │ │ │ │ ├── vulkan_handles.hpp │ │ │ │ ├── vulkan_hash.hpp │ │ │ │ ├── vulkan_ios.h │ │ │ │ ├── vulkan_macos.h │ │ │ │ ├── vulkan_metal.h │ │ │ │ ├── vulkan_mir.h │ │ │ │ ├── vulkan_raii.hpp │ │ │ │ ├── vulkan_screen.h │ │ │ │ ├── vulkan_static_assertions.hpp │ │ │ │ ├── vulkan_structs.hpp │ │ │ │ ├── vulkan_to_string.hpp │ │ │ │ ├── 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 │ │ │ ├── mir │ │ │ ├── SDL_mirdyn.c │ │ │ ├── SDL_mirdyn.h │ │ │ ├── SDL_mirevents.c │ │ │ ├── SDL_mirevents.h │ │ │ ├── SDL_mirframebuffer.c │ │ │ ├── SDL_mirframebuffer.h │ │ │ ├── SDL_mirmouse.c │ │ │ ├── SDL_mirmouse.h │ │ │ ├── SDL_miropengl.c │ │ │ ├── SDL_miropengl.h │ │ │ ├── SDL_mirsym.h │ │ │ ├── SDL_mirvideo.c │ │ │ ├── SDL_mirvideo.h │ │ │ ├── SDL_mirvulkan.c │ │ │ ├── SDL_mirvulkan.h │ │ │ ├── SDL_mirwindow.c │ │ │ └── SDL_mirwindow.h │ │ │ ├── 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 │ │ │ ├── nacl │ │ │ ├── SDL_naclevents.c │ │ │ ├── SDL_naclevents_c.h │ │ │ ├── SDL_naclglue.c │ │ │ ├── SDL_naclopengles.c │ │ │ ├── SDL_naclopengles.h │ │ │ ├── SDL_naclvideo.c │ │ │ ├── SDL_naclvideo.h │ │ │ ├── SDL_naclwindow.c │ │ │ └── SDL_naclwindow.h │ │ │ ├── ngage │ │ │ ├── SDL_ngageevents.cpp │ │ │ ├── SDL_ngageevents_c.h │ │ │ ├── SDL_ngageframebuffer.cpp │ │ │ ├── SDL_ngageframebuffer_c.h │ │ │ ├── SDL_ngagevideo.cpp │ │ │ ├── SDL_ngagevideo.h │ │ │ ├── SDL_ngagewindow.cpp │ │ │ └── SDL_ngagewindow.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_offscreenwindow.c │ │ │ └── SDL_offscreenwindow.h │ │ │ ├── os2 │ │ │ ├── SDL_gradd.h │ │ │ ├── SDL_os2dive.c │ │ │ ├── SDL_os2messagebox.c │ │ │ ├── SDL_os2messagebox.h │ │ │ ├── SDL_os2mouse.c │ │ │ ├── SDL_os2mouse.h │ │ │ ├── SDL_os2output.h │ │ │ ├── SDL_os2util.c │ │ │ ├── SDL_os2util.h │ │ │ ├── SDL_os2video.c │ │ │ ├── SDL_os2video.h │ │ │ └── SDL_os2vman.c │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.h │ │ │ ├── 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 │ │ │ ├── gl.c │ │ │ ├── keyboard.c │ │ │ ├── sdl_qnx.h │ │ │ └── video.c │ │ │ ├── raspberry │ │ │ ├── SDL_rpievents.c │ │ │ ├── SDL_rpievents_c.h │ │ │ ├── SDL_rpimouse.c │ │ │ ├── SDL_rpimouse.h │ │ │ ├── SDL_rpiopengles.c │ │ │ ├── SDL_rpiopengles.h │ │ │ ├── SDL_rpivideo.c │ │ │ └── SDL_rpivideo.h │ │ │ ├── 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_uikitvideo.h │ │ │ ├── SDL_uikitvideo.m │ │ │ ├── SDL_uikitview.h │ │ │ ├── SDL_uikitview.m │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ ├── SDL_uikitvulkan.h │ │ │ ├── SDL_uikitvulkan.m │ │ │ ├── SDL_uikitwindow.h │ │ │ ├── SDL_uikitwindow.m │ │ │ └── keyinfotable.h │ │ │ ├── vita │ │ │ ├── SDL_vitaframebuffer.c │ │ │ ├── SDL_vitaframebuffer.h │ │ │ ├── SDL_vitagl_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_waylandsym.h │ │ │ ├── SDL_waylandtouch.c │ │ │ ├── SDL_waylandtouch.h │ │ │ ├── SDL_waylandvideo.c │ │ │ ├── SDL_waylandvideo.h │ │ │ ├── SDL_waylandvulkan.c │ │ │ ├── SDL_waylandvulkan.h │ │ │ ├── SDL_waylandwindow.c │ │ │ └── SDL_waylandwindow.h │ │ │ ├── windows │ │ │ ├── SDL_msctf.h │ │ │ ├── SDL_vkeys.h │ │ │ ├── SDL_windowsclipboard.c │ │ │ ├── SDL_windowsclipboard.h │ │ │ ├── SDL_windowsevents.c │ │ │ ├── SDL_windowsevents.h │ │ │ ├── SDL_windowsframebuffer.c │ │ │ ├── SDL_windowsframebuffer.h │ │ │ ├── SDL_windowskeyboard.c │ │ │ ├── SDL_windowskeyboard.h │ │ │ ├── SDL_windowsmessagebox.c │ │ │ ├── SDL_windowsmessagebox.h │ │ │ ├── SDL_windowsmodes.c │ │ │ ├── SDL_windowsmodes.h │ │ │ ├── SDL_windowsmouse.c │ │ │ ├── SDL_windowsmouse.h │ │ │ ├── SDL_windowsopengl.c │ │ │ ├── SDL_windowsopengl.h │ │ │ ├── SDL_windowsopengles.c │ │ │ ├── SDL_windowsopengles.h │ │ │ ├── SDL_windowsshape.c │ │ │ ├── SDL_windowsshape.h │ │ │ ├── SDL_windowstaskdialog.h │ │ │ ├── SDL_windowsvideo.c │ │ │ ├── SDL_windowsvideo.h │ │ │ ├── SDL_windowsvulkan.c │ │ │ ├── SDL_windowsvulkan.h │ │ │ ├── SDL_windowswindow.c │ │ │ ├── SDL_windowswindow.h │ │ │ └── wmmsg.h │ │ │ ├── winrt │ │ │ ├── SDL_winrtevents.cpp │ │ │ ├── SDL_winrtevents_c.h │ │ │ ├── SDL_winrtgamebar.cpp │ │ │ ├── SDL_winrtgamebar_cpp.h │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ ├── SDL_winrtmessagebox.h │ │ │ ├── SDL_winrtmouse.cpp │ │ │ ├── SDL_winrtmouse_c.h │ │ │ ├── SDL_winrtopengles.cpp │ │ │ ├── SDL_winrtopengles.h │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ ├── SDL_winrtvideo.cpp │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ ├── x11 │ │ │ ├── SDL_x11clipboard.c │ │ │ ├── SDL_x11clipboard.h │ │ │ ├── SDL_x11dyn.c │ │ │ ├── SDL_x11dyn.h │ │ │ ├── SDL_x11events.c │ │ │ ├── SDL_x11events.h │ │ │ ├── SDL_x11framebuffer.c │ │ │ ├── SDL_x11framebuffer.h │ │ │ ├── SDL_x11keyboard.c │ │ │ ├── SDL_x11keyboard.h │ │ │ ├── SDL_x11messagebox.c │ │ │ ├── SDL_x11messagebox.h │ │ │ ├── SDL_x11modes.c │ │ │ ├── SDL_x11modes.h │ │ │ ├── SDL_x11mouse.c │ │ │ ├── SDL_x11mouse.h │ │ │ ├── SDL_x11opengl.c │ │ │ ├── SDL_x11opengl.h │ │ │ ├── SDL_x11opengles.c │ │ │ ├── SDL_x11opengles.h │ │ │ ├── SDL_x11shape.c │ │ │ ├── SDL_x11shape.h │ │ │ ├── SDL_x11sym.h │ │ │ ├── SDL_x11touch.c │ │ │ ├── SDL_x11touch.h │ │ │ ├── SDL_x11video.c │ │ │ ├── SDL_x11video.h │ │ │ ├── SDL_x11vulkan.c │ │ │ ├── SDL_x11vulkan.h │ │ │ ├── SDL_x11window.c │ │ │ ├── SDL_x11window.h │ │ │ ├── SDL_x11xfixes.c │ │ │ ├── SDL_x11xfixes.h │ │ │ ├── SDL_x11xinput2.c │ │ │ ├── SDL_x11xinput2.h │ │ │ ├── edid-parse.c │ │ │ ├── edid.h │ │ │ ├── imKStoUCS.c │ │ │ └── imKStoUCS.h │ │ │ └── yuv2rgb │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── yuv_rgb.c │ │ │ ├── yuv_rgb.h │ │ │ ├── yuv_rgb_lsx_func.h │ │ │ ├── yuv_rgb_sse_func.h │ │ │ └── yuv_rgb_std_func.h │ ├── SDLMixer │ │ ├── COPYING.txt │ │ ├── SDL_mixer.h │ │ ├── codecs │ │ │ ├── dr_libs │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dr_flac.h │ │ │ │ └── dr_mp3.h │ │ │ ├── load_aiff.c │ │ │ ├── load_aiff.h │ │ │ ├── load_voc.c │ │ │ ├── load_voc.h │ │ │ ├── mp3utils.c │ │ │ ├── mp3utils.h │ │ │ ├── music_cmd.c │ │ │ ├── music_cmd.h │ │ │ ├── music_drflac.c │ │ │ ├── music_drflac.h │ │ │ ├── music_drmp3.c │ │ │ ├── music_drmp3.h │ │ │ ├── music_flac.c │ │ │ ├── music_flac.h │ │ │ ├── music_fluidsynth.c │ │ │ ├── music_fluidsynth.h │ │ │ ├── music_modplug.c │ │ │ ├── music_modplug.h │ │ │ ├── music_mpg123.c │ │ │ ├── music_mpg123.h │ │ │ ├── music_nativemidi.c │ │ │ ├── music_nativemidi.h │ │ │ ├── music_ogg.c │ │ │ ├── music_ogg.h │ │ │ ├── music_ogg_stb.c │ │ │ ├── music_opus.c │ │ │ ├── music_opus.h │ │ │ ├── music_timidity.c │ │ │ ├── music_timidity.h │ │ │ ├── music_wav.c │ │ │ ├── music_wav.h │ │ │ ├── music_xmp.c │ │ │ ├── music_xmp.h │ │ │ ├── native_midi │ │ │ │ ├── native_midi.h │ │ │ │ ├── native_midi_common.c │ │ │ │ ├── native_midi_common.h │ │ │ │ ├── native_midi_haiku.cpp │ │ │ │ ├── native_midi_macosx.c │ │ │ │ └── native_midi_win32.c │ │ │ ├── stb_vorbis │ │ │ │ ├── README.txt │ │ │ │ └── stb_vorbis.h │ │ │ └── timidity │ │ │ │ ├── Android.mk │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── FAQ │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── instrum.c │ │ │ │ ├── instrum.h │ │ │ │ ├── mix.c │ │ │ │ ├── mix.h │ │ │ │ ├── options.h │ │ │ │ ├── output.c │ │ │ │ ├── output.h │ │ │ │ ├── playmidi.c │ │ │ │ ├── playmidi.h │ │ │ │ ├── readmidi.c │ │ │ │ ├── readmidi.h │ │ │ │ ├── resample.c │ │ │ │ ├── resample.h │ │ │ │ ├── tables.c │ │ │ │ ├── tables.h │ │ │ │ ├── timidity.c │ │ │ │ └── timidity.h │ │ ├── effect_position.c │ │ ├── effect_stereoreverse.c │ │ ├── effects_internal.c │ │ ├── effects_internal.h │ │ ├── mixer.c │ │ ├── mixer.h │ │ ├── music.c │ │ ├── music.h │ │ ├── utils.c │ │ └── utils.h │ ├── flatbuffers │ │ └── src │ │ │ ├── idl_gen_text.cpp │ │ │ ├── idl_gen_text.h │ │ │ ├── idl_parser.cpp │ │ │ └── util.cpp │ ├── freetype │ │ ├── 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 │ │ │ │ ├── ft2build.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftautoh.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftcffdrv.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 │ │ │ │ ├── ftttdrv.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── cffotypes.h │ │ │ │ │ ├── cfftypes.h │ │ │ │ │ ├── compiler-macros.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── ftdrv.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── fthash.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftmmtypes.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpic.h │ │ │ │ │ ├── ftpsprop.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── internal.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 │ │ │ │ └── ttunpat.h │ │ │ └── ft2build.h │ │ └── src │ │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afpic.c │ │ │ ├── afpic.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── afwrtsys.h │ │ │ ├── afws-decl.h │ │ │ ├── afws-iter.h │ │ │ ├── autofit.c │ │ │ ├── ft-hb.c │ │ │ ├── ft-hb.h │ │ │ ├── hbshim.c │ │ │ ├── hbshim.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── base │ │ │ ├── Jamfile │ │ │ ├── basepic.c │ │ │ ├── basepic.h │ │ │ ├── ftadvanc.c │ │ │ ├── ftapi.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── 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 │ │ │ ├── ftpic.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 │ │ │ ├── Jamfile │ │ │ ├── cf2arrst.c │ │ │ ├── cf2arrst.h │ │ │ ├── cf2blues.c │ │ │ ├── cf2blues.h │ │ │ ├── cf2error.c │ │ │ ├── cf2error.h │ │ │ ├── cf2fixed.h │ │ │ ├── cf2font.c │ │ │ ├── cf2font.h │ │ │ ├── cf2ft.c │ │ │ ├── cf2ft.h │ │ │ ├── cf2glue.h │ │ │ ├── cf2hints.c │ │ │ ├── cf2hints.h │ │ │ ├── cf2intrp.c │ │ │ ├── cf2intrp.h │ │ │ ├── cf2read.c │ │ │ ├── cf2read.h │ │ │ ├── cf2stack.c │ │ │ ├── cf2stack.h │ │ │ ├── cf2types.h │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cffpic.c │ │ │ ├── cffpic.h │ │ │ ├── cfftoken.h │ │ │ ├── cfftypes.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── cid │ │ │ ├── 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 │ │ │ ├── infback.c │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshpic.c │ │ │ ├── pshpic.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ │ ├── psnames │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pspic.c │ │ │ ├── pspic.h │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ │ ├── raster │ │ │ ├── Jamfile │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ ├── rastpic.c │ │ │ ├── rastpic.h │ │ │ └── rules.mk │ │ │ ├── sdf │ │ │ ├── ftbsdf.c │ │ │ ├── ftsdf.c │ │ │ ├── ftsdf.h │ │ │ ├── ftsdfcommon.c │ │ │ ├── ftsdfcommon.h │ │ │ ├── ftsdferrs.h │ │ │ ├── ftsdfrend.c │ │ │ ├── ftsdfrend.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── sdf.c │ │ │ ├── sfnt │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfntpic.c │ │ │ ├── sfntpic.h │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── ftspic.c │ │ │ ├── ftspic.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 │ │ │ │ ├── Makefile │ │ │ │ ├── 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 │ │ │ ├── truetype │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpic.c │ │ │ ├── ttpic.h │ │ │ ├── ttpload.c │ │ │ ├── ttpload.h │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.h │ │ │ ├── type1 │ │ │ ├── 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 │ ├── imgui │ │ ├── LICENSE.txt │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_opengl3_loader.h │ │ ├── imgui_impl_sdl2.cpp │ │ ├── imgui_impl_sdl2.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ ├── libtcc │ │ ├── arm-asm.c │ │ ├── arm-gen.c │ │ ├── arm-link.c │ │ ├── arm-tok.h │ │ ├── arm64-asm.c │ │ ├── arm64-gen.c │ │ ├── arm64-link.c │ │ ├── config.h │ │ ├── dwarf.h │ │ ├── elf.h │ │ ├── i386-asm.c │ │ ├── i386-asm.h │ │ ├── i386-gen.c │ │ ├── i386-link.c │ │ ├── i386-tok.h │ │ ├── libtcc.c │ │ ├── libtcc.h │ │ ├── readmes │ │ │ ├── COPYING │ │ │ ├── README │ │ │ └── VERSION │ │ ├── stab.def │ │ ├── stab.h │ │ ├── tcc.h │ │ ├── tccasm.c │ │ ├── tccdbg.c │ │ ├── tccdefs_.h │ │ ├── tccelf.c │ │ ├── tccgen.c │ │ ├── tccmacho.c │ │ ├── tccpe.c │ │ ├── tccpp.c │ │ ├── tccrun.c │ │ ├── tcctok.h │ │ ├── x86_64-asm.h │ │ ├── x86_64-gen.c │ │ └── x86_64-link.c │ ├── openvr │ │ ├── LICENSE │ │ ├── README │ │ ├── headers │ │ │ └── openvr.h │ │ └── lib │ │ │ └── win64 │ │ │ └── openvr_api.lib │ ├── steamworks │ │ ├── include │ │ │ └── steam │ │ │ │ ├── isteamapplist.h │ │ │ │ ├── isteamapps.h │ │ │ │ ├── isteamappticket.h │ │ │ │ ├── isteamclient.h │ │ │ │ ├── isteamcontroller.h │ │ │ │ ├── isteamdualsense.h │ │ │ │ ├── isteamfriends.h │ │ │ │ ├── isteamgamecoordinator.h │ │ │ │ ├── isteamgameserver.h │ │ │ │ ├── isteamgameserverstats.h │ │ │ │ ├── isteamhtmlsurface.h │ │ │ │ ├── isteamhttp.h │ │ │ │ ├── isteaminput.h │ │ │ │ ├── isteaminventory.h │ │ │ │ ├── isteammatchmaking.h │ │ │ │ ├── isteammusic.h │ │ │ │ ├── isteammusicremote.h │ │ │ │ ├── isteamnetworking.h │ │ │ │ ├── isteamnetworkingmessages.h │ │ │ │ ├── isteamnetworkingsockets.h │ │ │ │ ├── isteamnetworkingutils.h │ │ │ │ ├── isteamparentalsettings.h │ │ │ │ ├── isteamps3overlayrenderer.h │ │ │ │ ├── isteamremoteplay.h │ │ │ │ ├── isteamremotestorage.h │ │ │ │ ├── isteamscreenshots.h │ │ │ │ ├── isteamugc.h │ │ │ │ ├── isteamuser.h │ │ │ │ ├── isteamuserstats.h │ │ │ │ ├── isteamutils.h │ │ │ │ ├── isteamvideo.h │ │ │ │ ├── matchmakingtypes.h │ │ │ │ ├── steam_api.h │ │ │ │ ├── steam_api.json │ │ │ │ ├── steam_api_common.h │ │ │ │ ├── steam_api_flat.h │ │ │ │ ├── steam_api_internal.h │ │ │ │ ├── steam_gameserver.h │ │ │ │ ├── steamclientpublic.h │ │ │ │ ├── steamencryptedappticket.h │ │ │ │ ├── steamhttpenums.h │ │ │ │ ├── steamnetworkingfakeip.h │ │ │ │ ├── steamnetworkingtypes.h │ │ │ │ ├── steamps3params.h │ │ │ │ ├── steamtypes.h │ │ │ │ └── steamuniverse.h │ │ └── lib │ │ │ └── win64 │ │ │ └── steam_api64.lib │ └── tracy │ │ ├── Tracy.hpp │ │ ├── TracyC.h │ │ ├── TracyClient.cpp │ │ ├── TracyOpenGL.hpp │ │ ├── client │ │ ├── TracyAlloc.cpp │ │ ├── TracyArmCpuTable.hpp │ │ ├── TracyCallstack.cpp │ │ ├── TracyCallstack.h │ │ ├── TracyCallstack.hpp │ │ ├── TracyCpuid.hpp_ │ │ ├── TracyDebug.hpp │ │ ├── TracyDxt1.cpp │ │ ├── TracyDxt1.hpp │ │ ├── TracyFastVector.hpp │ │ ├── TracyKCore.cpp │ │ ├── TracyKCore.hpp │ │ ├── TracyLock.hpp │ │ ├── TracyOverride.cpp │ │ ├── TracyProfiler.cpp │ │ ├── TracyProfiler.hpp │ │ ├── TracyRingBuffer.hpp │ │ ├── TracyScoped.hpp │ │ ├── TracyStringHelpers.hpp │ │ ├── TracySysPower.cpp │ │ ├── TracySysPower.hpp │ │ ├── TracySysTime.cpp │ │ ├── TracySysTime.hpp │ │ ├── TracySysTrace.cpp │ │ ├── TracySysTrace.hpp │ │ ├── TracyThread.hpp │ │ ├── tracy_SPSCQueue.h │ │ ├── tracy_concurrentqueue.h │ │ ├── tracy_rpmalloc.cpp │ │ └── tracy_rpmalloc.hpp │ │ └── common │ │ ├── TracyAlign.hpp │ │ ├── TracyAlloc.hpp │ │ ├── TracyApi.h │ │ ├── TracyColor.hpp │ │ ├── TracyForceInline.hpp │ │ ├── TracyMutex.hpp │ │ ├── TracyProtocol.hpp │ │ ├── TracyQueue.hpp │ │ ├── TracySocket.cpp │ │ ├── TracySocket.hpp │ │ ├── TracyStackFrames.cpp │ │ ├── TracyStackFrames.hpp │ │ ├── TracySystem.cpp │ │ ├── TracySystem.hpp │ │ ├── TracyUwp.hpp │ │ ├── TracyVersion.hpp │ │ ├── TracyYield.hpp │ │ ├── tracy_lz4.cpp │ │ ├── tracy_lz4.hpp │ │ ├── tracy_lz4hc.cpp │ │ └── tracy_lz4hc.hpp ├── include │ ├── Box2D │ │ ├── Box2D.h │ │ ├── Collision │ │ │ ├── Shapes │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ ├── b2ChainShape.h │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ ├── b2CircleShape.h │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ ├── b2EdgeShape.h │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ ├── b2PolygonShape.h │ │ │ │ └── b2Shape.h │ │ │ ├── b2BroadPhase.cpp │ │ │ ├── b2BroadPhase.h │ │ │ ├── b2CollideCircle.cpp │ │ │ ├── b2CollideEdge.cpp │ │ │ ├── b2CollidePolygon.cpp │ │ │ ├── b2Collision.cpp │ │ │ ├── b2Collision.h │ │ │ ├── b2Distance.cpp │ │ │ ├── b2Distance.h │ │ │ ├── b2DynamicTree.cpp │ │ │ ├── b2DynamicTree.h │ │ │ ├── b2TimeOfImpact.cpp │ │ │ └── b2TimeOfImpact.h │ │ ├── Common │ │ │ ├── b2BlockAllocator.cpp │ │ │ ├── b2BlockAllocator.h │ │ │ ├── b2Draw.cpp │ │ │ ├── b2Draw.h │ │ │ ├── b2FreeList.cpp │ │ │ ├── b2FreeList.h │ │ │ ├── b2GrowableBuffer.h │ │ │ ├── b2GrowableStack.h │ │ │ ├── b2IntrusiveList.h │ │ │ ├── b2Math.cpp │ │ │ ├── b2Math.h │ │ │ ├── b2Settings.cpp │ │ │ ├── b2Settings.h │ │ │ ├── b2SlabAllocator.h │ │ │ ├── b2StackAllocator.cpp │ │ │ ├── b2StackAllocator.h │ │ │ ├── b2Stat.cpp │ │ │ ├── b2Stat.h │ │ │ ├── b2Timer.cpp │ │ │ ├── b2Timer.h │ │ │ ├── b2TrackedBlock.cpp │ │ │ └── b2TrackedBlock.h │ │ ├── Dynamics │ │ │ ├── Contacts │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ ├── b2CircleContact.h │ │ │ │ ├── b2Contact.cpp │ │ │ │ ├── b2Contact.h │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ ├── b2ContactSolver.h │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ └── b2PolygonContact.h │ │ │ ├── Joints │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ ├── b2GearJoint.h │ │ │ │ ├── b2Joint.cpp │ │ │ │ ├── b2Joint.h │ │ │ │ ├── b2MotorJoint.cpp │ │ │ │ ├── b2MotorJoint.h │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ ├── b2MouseJoint.h │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ ├── b2RopeJoint.h │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ ├── b2WeldJoint.h │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ └── b2WheelJoint.h │ │ │ ├── b2Body.cpp │ │ │ ├── b2Body.h │ │ │ ├── b2ContactManager.cpp │ │ │ ├── b2ContactManager.h │ │ │ ├── b2Fixture.cpp │ │ │ ├── b2Fixture.h │ │ │ ├── b2Island.cpp │ │ │ ├── b2Island.h │ │ │ ├── b2TimeStep.h │ │ │ ├── b2World.cpp │ │ │ ├── b2World.h │ │ │ ├── b2WorldCallbacks.cpp │ │ │ └── b2WorldCallbacks.h │ │ ├── Particle │ │ │ ├── b2Particle.cpp │ │ │ ├── b2Particle.h │ │ │ ├── b2ParticleAssembly.cpp │ │ │ ├── b2ParticleAssembly.h │ │ │ ├── b2ParticleAssembly.neon.s │ │ │ ├── b2ParticleGroup.cpp │ │ │ ├── b2ParticleGroup.h │ │ │ ├── b2ParticleSystem.cpp │ │ │ ├── b2ParticleSystem.h │ │ │ ├── b2StackQueue.h │ │ │ ├── b2VoronoiDiagram.cpp │ │ │ └── b2VoronoiDiagram.h │ │ ├── README.txt │ │ └── Rope │ │ │ ├── b2Rope.cpp │ │ │ └── b2Rope.h │ ├── GL │ │ ├── gl3.h │ │ └── glext.h │ ├── KHR │ │ └── khrplatform.h │ ├── StackWalker │ │ ├── StackWalker.cpp │ │ ├── StackWalker.h │ │ ├── StackWalkerHelpers.cpp │ │ └── StackWalkerHelpers.h │ ├── ThreadPool │ │ ├── ThreadPool.h │ │ └── readme.txt │ ├── flatbuffers │ │ ├── allocator.h │ │ ├── array.h │ │ ├── base.h │ │ ├── buffer.h │ │ ├── buffer_ref.h │ │ ├── code_generator.h │ │ ├── code_generators.h │ │ ├── default_allocator.h │ │ ├── detached_buffer.h │ │ ├── file_manager.h │ │ ├── flatbuffer_builder.h │ │ ├── flatbuffers.h │ │ ├── flatc.h │ │ ├── flex_flat_util.h │ │ ├── flexbuffers.h │ │ ├── grpc.h │ │ ├── hash.h │ │ ├── idl.h │ │ ├── minireflect.h │ │ ├── pch │ │ │ ├── flatc_pch.h │ │ │ └── pch.h │ │ ├── reflection.h │ │ ├── reflection_generated.h │ │ ├── registry.h │ │ ├── stl_emulation.h │ │ ├── string.h │ │ ├── struct.h │ │ ├── table.h │ │ ├── util.h │ │ ├── vector.h │ │ ├── vector_downward.h │ │ └── verifier.h │ ├── renderdoc_app.h │ ├── slm │ │ ├── float_util.h │ │ ├── float_util.inl │ │ ├── intersect_util.h │ │ ├── mat4.h │ │ ├── mat4.inl │ │ ├── mtrnd.h │ │ ├── no_simd.h │ │ ├── quat.h │ │ ├── quat.inl │ │ ├── random.h │ │ ├── random.inl │ │ ├── runtime_checks.h │ │ ├── runtime_checks.inl │ │ ├── simd.h │ │ ├── slmath.h │ │ ├── slmath_configure.h │ │ ├── slmath_pp.h │ │ ├── vec2.h │ │ ├── vec2.inl │ │ ├── vec3.h │ │ ├── vec3.inl │ │ ├── vec4.h │ │ ├── vec4.inl │ │ ├── vec_impl.h │ │ └── vector_sse.h │ ├── stb │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ └── stb_truetype.h │ └── subprocess.h ├── lobster │ ├── NatvisFile.natvis │ ├── cloc.exe │ ├── cloc_cpp.bat │ ├── cloc_lobster.bat │ ├── flatc.exe │ ├── generate_flatbuffers.bat │ ├── icon1.ico │ ├── language.vcxproj │ ├── language.vcxproj.filters │ ├── lobster.rc │ ├── lobster.sln │ ├── lobster.vcxproj │ ├── lobster.vcxproj.filters │ ├── main.vcxproj │ ├── main.vcxproj.filters │ ├── resource.h │ ├── tcc_objdump.bat │ ├── test_all.bat │ ├── test_all.sh │ ├── test_all_compile_only.bat │ ├── test_all_compile_only_verbose_no_projects.bat │ ├── test_all_no_projects.bat │ └── test_all_unittest_only.bat ├── lsp │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── document.ts │ │ ├── features │ │ │ ├── code_action.ts │ │ │ ├── completion.ts │ │ │ ├── definition.ts │ │ │ └── hover.ts │ │ ├── lobster.test.ts │ │ ├── lobster.ts │ │ ├── lsp.ts │ │ ├── server.ts │ │ └── utils.ts │ ├── testFixture │ │ ├── invalid.lobster │ │ └── valid.lobster │ ├── tsconfig.json │ └── webpack.config.js ├── src │ ├── audio.cpp │ ├── builtins.cpp │ ├── bytecode.fbs │ ├── compiler.cpp │ ├── cubegen.cpp │ ├── engine.cpp │ ├── file.cpp │ ├── font.cpp │ ├── fontrenderer.cpp │ ├── glgeom.cpp │ ├── glloadiqm.cpp │ ├── glshader.cpp │ ├── glsystem.cpp │ ├── gltexture.cpp │ ├── gltimequery.cpp │ ├── glvr.cpp │ ├── graphics.cpp │ ├── imbind.cpp │ ├── lobster │ │ ├── 3dgrid.h │ │ ├── accumulator.h │ │ ├── bytecode_generated.h │ │ ├── codegen.h │ │ ├── compiler.h │ │ ├── constval.h │ │ ├── cubegen.h │ │ ├── dllist.h │ │ ├── fontrenderer.h │ │ ├── geom.h │ │ ├── glincludes.h │ │ ├── glinterface.h │ │ ├── graphics.h │ │ ├── idents.h │ │ ├── il.h │ │ ├── lex.h │ │ ├── lobsterreader.h │ │ ├── mctables.h │ │ ├── meshgen.h │ │ ├── natreg.h │ │ ├── node.h │ │ ├── optimizer.h │ │ ├── packed_vector.h │ │ ├── parser.h │ │ ├── platform.h │ │ ├── polyreduce.h │ │ ├── resource_manager.h │ │ ├── rng_hash.h │ │ ├── sdlincludes.h │ │ ├── sdlinterface.h │ │ ├── simplex.h │ │ ├── slaballoc.h │ │ ├── small_vector.h │ │ ├── stack_vector.h │ │ ├── stdafx.h │ │ ├── string_tools.h │ │ ├── tonative.h │ │ ├── tools.h │ │ ├── ttypes.h │ │ ├── type.h │ │ ├── typecheck.h │ │ ├── unicode.h │ │ ├── varint.h │ │ ├── vmdata.h │ │ ├── vmops.h │ │ ├── wasm_binary_writer.h │ │ ├── wasm_binary_writer_test.h │ │ ├── wentropy.h │ │ └── wfc.h │ ├── lobsterreader.cpp │ ├── main.cpp │ ├── meshgen.cpp │ ├── physics.cpp │ ├── platform.cpp │ ├── sdlaudiosfxr.cpp │ ├── sdlsystem.cpp │ ├── simplex.cpp │ ├── stdafx.cpp │ ├── steamworks.cpp │ ├── tccbind.cpp │ ├── tonative.cpp │ ├── towasm.cpp │ ├── vm.cpp │ └── vmdata.cpp └── vscode-ext │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json │ ├── .vscodeignore │ ├── LICENSE.txt │ ├── README.md │ ├── language-configuration.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── commands.ts │ ├── dap.ts │ ├── extension.ts │ └── lobsterDebug.ts │ ├── syntaxes │ └── lobster.tmLanguage.json │ ├── tsconfig.json │ └── webpack.config.js ├── docs ├── C_style language Cheat Sheet for Lobster.html ├── README_FIRST.html ├── _config.yml ├── builtin_functions_reference.html ├── command_line_usage.html ├── engine.html ├── generate_builtin_functions_reference.bat ├── getting_started.html ├── github.css ├── implementation.html ├── implementation_wasm_REMOVED.html ├── language_reference.html ├── lobster.png ├── lobster.svg ├── lsp.html ├── memory_management.html ├── notepad++ │ └── notepadpp_udl_lobster.xml ├── notepadpp_ide.html ├── philosophy.html ├── screenshots │ └── shooter │ │ ├── tut1.jpg │ │ ├── tut2.jpg │ │ ├── tut3.jpg │ │ ├── tut4.jpg │ │ ├── tut5.jpg │ │ └── tut6.jpg ├── shooter_tutorial.html ├── source │ ├── README_FIRST.md │ ├── command_line_usage.md │ ├── engine.md │ ├── generate_html_docs_from_markdown.bat │ ├── generate_html_docs_from_markdown.sh │ ├── getting_started.md │ ├── head.html │ ├── implementation.md │ ├── implementation_wasm_REMOVED.md │ ├── language_reference.md │ ├── lsp.md │ ├── memory_management.md │ ├── mmd_header.txt │ ├── notepadpp_ide.md │ ├── philosophy.md │ ├── shooter_tutorial.md │ ├── style_guide.md │ ├── sublime_ide.md │ ├── type_checker.md │ └── vscode_ide.md ├── style_guide.html ├── sublime │ ├── lobster.sublime-build │ ├── lobster.sublime-syntax │ ├── lobster.tmPreferences │ └── lobster_exec.py ├── sublime_ide.html ├── type_checker.html ├── vscode │ ├── lobster.vsix │ └── tasks.json └── vscode_ide.html ├── modules ├── astar.lobster ├── camera.lobster ├── color.lobster ├── controller.lobster ├── date_time.lobster ├── dictionary.lobster ├── exception.lobster ├── floodfillpath.lobster ├── gl.lobster ├── gui.lobster ├── imgui.lobster ├── mat2x2.lobster ├── mat4x4.lobster ├── match.lobster ├── mg.lobster ├── navmap.lobster ├── physics.lobster ├── plugintest.lobster ├── quaternion.lobster ├── std.lobster ├── stdtype.lobster ├── steam.lobster ├── testing.lobster ├── texture.lobster ├── utilui.lobster └── vec.lobster ├── samples ├── binary.lobster ├── bspgraphic.lobster ├── cgtest.lobster ├── collision.lobster ├── cube.lobster ├── custom_shader_metaballs.lobster ├── custom_shader_sobel.lobster ├── demos │ ├── custom_shader_pt │ │ ├── custom_shader_pt.glsl │ │ └── custom_shader_pt.lobster │ ├── dirbrowse.lobster │ ├── langtons.lobster │ ├── simple_parser_eval.lobster │ └── smallpt.lobster ├── dragtest.lobster ├── dungeongen.lobster ├── dynamic_dispatch.lobster ├── eulerspiral.lobster ├── guitest.lobster ├── hypocycloid.lobster ├── iconfont.lobster ├── image.lobster ├── imguitest.lobster ├── iqmtest │ ├── iqmtest.lobster │ └── models │ │ ├── Body.png │ │ ├── Head.png │ │ └── mrfixit.iqm ├── knights_tour.lobster ├── lazy_py_triples.lobster ├── lobbytest.lobster ├── lobstercraft.lobster ├── mazepattern.lobster ├── mgtest.lobster ├── pendulum.lobster ├── physics_boxes.lobster ├── physics_water.lobster ├── platform │ └── t2s.lobster ├── pythtree.lobster ├── reach.lobster ├── rosettacode │ ├── README.txt │ ├── fizzbuzz.lobster │ ├── hello_world_graphical.lobster │ ├── hello_world_test.lobster │ ├── quicksort.lobster │ └── quine.lobster ├── shooter_tutorial │ ├── tut1.lobster │ ├── tut2.lobster │ ├── tut3.lobster │ ├── tut4.lobster │ ├── tut5.lobster │ ├── tut6.lobster │ ├── tut_net.lobster │ ├── tut_obj.lobster │ └── tut_sound.lobster ├── sierpinski.lobster ├── subprocess.lobster ├── textinput.lobster ├── threads.lobster ├── tixy.lobster ├── tixy3D.lobster ├── tools │ └── dumpview.lobster ├── vonkoch.lobster ├── vrtest.lobster ├── wave_function_collapse.lobster ├── wavtest.lobster └── will_it_shuffle.lobster └── tests ├── astartest.lobster ├── builtintest.lobster ├── errors ├── dispatchorder._lobster ├── flow_specific_specialization.lobster ├── flow_specific_specialization2.lobster ├── flow_specific_specialization3.lobster ├── recursive_non_local_return.lobster └── show_stacktrace._lobster ├── floodtest.lobster ├── freevars.lobster ├── goaptest.lobster ├── gradienttest.lobster ├── knightstest.lobster ├── lifetimetest.lobster ├── matrixtest.lobster ├── misc ├── control.lobster ├── dd_with_no_root_freevars.lobster ├── default_arg_overlap.lobster ├── frame.lobster ├── function_def_arg.lobster ├── generate_stress_test.lobster ├── keep_dispatch.lobster ├── multi_ret_if.lobster ├── namespace_error1.lobster ├── nil_overload.lobster ├── nil_vtable_entry_for_unused_subclass.lobster ├── overload_selection_on_given_types.lobster ├── ref_structs_must_be_forced_to_keep.lobster ├── specialized_field_defaults.lobster ├── var_remains.lobster └── void_constructor.lobster ├── mischtest.lobster ├── misctest.lobster ├── operators.lobster ├── parsertest.lobster ├── smallpttest.lobster ├── speedtest.lobster ├── springstest.lobster ├── stringtest.lobster ├── structtest.lobster ├── syntax_highlight.lobster ├── typeswitch.lobster ├── typetest.lobster ├── unittest.lobster └── watertest.lobster /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/README.md -------------------------------------------------------------------------------- /bin/Tracy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/bin/Tracy.exe -------------------------------------------------------------------------------- /bin/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/bin/openvr_api.dll -------------------------------------------------------------------------------- /bin/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/bin/steam_api64.dll -------------------------------------------------------------------------------- /bin/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 480 -------------------------------------------------------------------------------- /data/controllers/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/controllers/gamecontrollerdb.txt -------------------------------------------------------------------------------- /data/fonts/Carrois_Gothic_SC/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Carrois_Gothic_SC/OFL.txt -------------------------------------------------------------------------------- /data/fonts/Droid_Sans/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Droid_Sans/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /data/fonts/Droid_Sans/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Droid_Sans/DroidSans.ttf -------------------------------------------------------------------------------- /data/fonts/Droid_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Droid_Sans/LICENSE.txt -------------------------------------------------------------------------------- /data/fonts/Droid_Sans_Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Droid_Sans_Mono/LICENSE.txt -------------------------------------------------------------------------------- /data/fonts/Fontin_Sans/Fontin_Sans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Fontin_Sans/Fontin_Sans.txt -------------------------------------------------------------------------------- /data/fonts/Game_Icons/game-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Game_Icons/game-icons.ttf -------------------------------------------------------------------------------- /data/fonts/Inconsolata/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Inconsolata/OFL.txt -------------------------------------------------------------------------------- /data/fonts/Square/square.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Square/square.ttf -------------------------------------------------------------------------------- /data/fonts/Square/square.txt: -------------------------------------------------------------------------------- 1 | http://strlen.com/square 2 | -------------------------------------------------------------------------------- /data/fonts/ThaleahFat/ThaleahFat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/ThaleahFat/ThaleahFat.ttf -------------------------------------------------------------------------------- /data/fonts/ThaleahFat/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/ThaleahFat/readme.txt -------------------------------------------------------------------------------- /data/fonts/US101/US101.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/US101/US101.ttf -------------------------------------------------------------------------------- /data/fonts/US101/US101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/US101/US101.txt -------------------------------------------------------------------------------- /data/fonts/Walter_Turncoat/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Walter_Turncoat/LICENSE.txt -------------------------------------------------------------------------------- /data/fonts/Zapato/duarte_centenario.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Zapato/duarte_centenario.ttf -------------------------------------------------------------------------------- /data/fonts/Zapato/duarte_juramento.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Zapato/duarte_juramento.ttf -------------------------------------------------------------------------------- /data/fonts/Zapato/greensboro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Zapato/greensboro.ttf -------------------------------------------------------------------------------- /data/fonts/Zapato/readme.txt: -------------------------------------------------------------------------------- 1 | From: https://zapatopi.net/fonts/ 2 | -------------------------------------------------------------------------------- /data/fonts/Zapato/slow_down_girls.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/fonts/Zapato/slow_down_girls.ttf -------------------------------------------------------------------------------- /data/shaders/aa.materials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/shaders/aa.materials -------------------------------------------------------------------------------- /data/shaders/crt.materials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/shaders/crt.materials -------------------------------------------------------------------------------- /data/shaders/default.materials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/shaders/default.materials -------------------------------------------------------------------------------- /data/sounds/awesund/cg1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/cg1.wav -------------------------------------------------------------------------------- /data/sounds/awesund/explode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/explode.wav -------------------------------------------------------------------------------- /data/sounds/awesund/explodemini.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/explodemini.wav -------------------------------------------------------------------------------- /data/sounds/awesund/flaunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/flaunch.wav -------------------------------------------------------------------------------- /data/sounds/awesund/readmeFX1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/readmeFX1.txt -------------------------------------------------------------------------------- /data/sounds/awesund/rifle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/rifle.wav -------------------------------------------------------------------------------- /data/sounds/awesund/rlaunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/rlaunch.wav -------------------------------------------------------------------------------- /data/sounds/awesund/shotgun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/awesund/shotgun.wav -------------------------------------------------------------------------------- /data/sounds/tutorial/AUTHORS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/tutorial/AUTHORS.TXT -------------------------------------------------------------------------------- /data/sounds/tutorial/alien_buzz2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/tutorial/alien_buzz2.ogg -------------------------------------------------------------------------------- /data/sounds/tutorial/ufo hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/sounds/tutorial/ufo hit.ogg -------------------------------------------------------------------------------- /data/textures/entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/textures/entity.png -------------------------------------------------------------------------------- /data/textures/lobster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/data/textures/lobster.jpg -------------------------------------------------------------------------------- /dev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/CMakeLists.txt -------------------------------------------------------------------------------- /dev/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/LICENSE.txt -------------------------------------------------------------------------------- /dev/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/README.txt -------------------------------------------------------------------------------- /dev/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/TODO.txt -------------------------------------------------------------------------------- /dev/android-project/android-project.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/android-project.iml -------------------------------------------------------------------------------- /dev/android-project/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/app/app.iml -------------------------------------------------------------------------------- /dev/android-project/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/app/build.gradle -------------------------------------------------------------------------------- /dev/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/app/jni/Android.mk -------------------------------------------------------------------------------- /dev/android-project/app/src/main/assets/put_lbc_and_other_files_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/android-project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/build.gradle -------------------------------------------------------------------------------- /dev/android-project/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/gradle.properties -------------------------------------------------------------------------------- /dev/android-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/gradlew -------------------------------------------------------------------------------- /dev/android-project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/android-project/gradlew.bat -------------------------------------------------------------------------------- /dev/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /dev/build_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/build_osx.sh -------------------------------------------------------------------------------- /dev/compiled_lobster/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/compiled_lobster/.gitignore -------------------------------------------------------------------------------- /dev/compiled_lobster/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/compiled_lobster/compile.bat -------------------------------------------------------------------------------- /dev/compiled_lobster/src/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/emscripten/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/emscripten/Makefile -------------------------------------------------------------------------------- /dev/emscripten/assets/put_lpak_and_other_files_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/external/SDL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/CMakeLists.txt -------------------------------------------------------------------------------- /dev/external/SDL/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/SDL2.spec.in -------------------------------------------------------------------------------- /dev/external/SDL/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /dev/external/SDL/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/cmake/macros.cmake -------------------------------------------------------------------------------- /dev/external/SDL/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /dev/external/SDL/cmake/sdlfind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/cmake/sdlfind.cmake -------------------------------------------------------------------------------- /dev/external/SDL/cmake/sdlplatform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/cmake/sdlplatform.cmake -------------------------------------------------------------------------------- /dev/external/SDL/cmake/test/main_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/cmake/test/main_cli.c -------------------------------------------------------------------------------- /dev/external/SDL/cmake/test/main_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/cmake/test/main_gui.c -------------------------------------------------------------------------------- /dev/external/SDL/cmake/test/main_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/cmake/test/main_lib.c -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_assert.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_atomic.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_audio.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_bits.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_blendmode.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_clipboard.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_config.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_config.h.in -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_copying.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_egl.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_endian.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_error.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_events.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_gesture.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_guid.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_haptic.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_hidapi.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_hints.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_joystick.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_keyboard.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_keycode.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_loadso.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_locale.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_log.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_main.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_metal.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_misc.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_mouse.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_mutex.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_name.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_opengl.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_opengles.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_opengles2.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_pixels.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_platform.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_power.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_quit.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_rect.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_render.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_revision.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_rwops.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_scancode.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_sensor.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_shape.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_stdinc.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_surface.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_system.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_syswm.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_test.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_test_font.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_test_log.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_test_md5.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_thread.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_timer.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_touch.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_types.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_version.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_video.h -------------------------------------------------------------------------------- /dev/external/SDL/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/SDL_vulkan.h -------------------------------------------------------------------------------- /dev/external/SDL/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/begin_code.h -------------------------------------------------------------------------------- /dev/external/SDL/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/include/close_code.h -------------------------------------------------------------------------------- /dev/external/SDL/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/sdl2-config.in -------------------------------------------------------------------------------- /dev/external/SDL/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/sdl2.pc.in -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_assert.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_assert_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_dataqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_dataqueue.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_dataqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_dataqueue.h -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_error.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_error_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_guid.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_hints.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_hints_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_hints_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_internal.h -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_list.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_list.h -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_log.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_log_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_log_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_utils.c -------------------------------------------------------------------------------- /dev/external/SDL/src/SDL_utils_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/SDL_utils_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /dev/external/SDL/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /dev/external/SDL/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /dev/external/SDL/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /dev/external/SDL/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /dev/external/SDL/src/core/gdk/SDL_gdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/core/gdk/SDL_gdk.h -------------------------------------------------------------------------------- /dev/external/SDL/src/core/os2/SDL_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/core/os2/SDL_os2.c -------------------------------------------------------------------------------- /dev/external/SDL/src/core/os2/SDL_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/core/os2/SDL_os2.h -------------------------------------------------------------------------------- /dev/external/SDL/src/dynapi/SDL2.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/dynapi/SDL2.exports -------------------------------------------------------------------------------- /dev/external/SDL/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /dev/external/SDL/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /dev/external/SDL/src/dynapi/gendynapi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/dynapi/gendynapi.pl -------------------------------------------------------------------------------- /dev/external/SDL/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/events/SDL_events.c -------------------------------------------------------------------------------- /dev/external/SDL/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /dev/external/SDL/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/events/SDL_quit.c -------------------------------------------------------------------------------- /dev/external/SDL/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/events/SDL_touch.c -------------------------------------------------------------------------------- /dev/external/SDL/src/events/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/events/imKStoUCS.c -------------------------------------------------------------------------------- /dev/external/SDL/src/events/imKStoUCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/events/imKStoUCS.h -------------------------------------------------------------------------------- /dev/external/SDL/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /dev/external/SDL/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/AUTHORS.txt -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/HACKING.txt -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/LICENSE.txt -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/Makefile.am -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/README.txt -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/SDL_hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/SDL_hidapi.c -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/bootstrap -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/configure.ac -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/ios/hid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/ios/hid.m -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/libusb/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/libusb/hid.c -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/linux/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/linux/hid.c -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/m4/pkg.m4 -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/mac/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/hidapi/mac/hid.c -------------------------------------------------------------------------------- /dev/external/SDL/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /dev/external/SDL/src/joystick/usb_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/joystick/usb_ids.h -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_atan2.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_exp.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_fmod.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_log.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_log10.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_pow.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/k_cos.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/k_sin.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/k_tan.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/math_libm.h -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/math_private.h -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_atan.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_copysign.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_cos.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_fabs.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_floor.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_sin.c -------------------------------------------------------------------------------- /dev/external/SDL/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/libm/s_tan.c -------------------------------------------------------------------------------- /dev/external/SDL/src/locale/SDL_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/locale/SDL_locale.c -------------------------------------------------------------------------------- /dev/external/SDL/src/misc/SDL_sysurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/misc/SDL_sysurl.h -------------------------------------------------------------------------------- /dev/external/SDL/src/misc/SDL_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/misc/SDL_url.c -------------------------------------------------------------------------------- /dev/external/SDL/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/power/SDL_power.c -------------------------------------------------------------------------------- /dev/external/SDL/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/render/SDL_render.c -------------------------------------------------------------------------------- /dev/external/SDL/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /dev/external/SDL/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/render/mmx.h -------------------------------------------------------------------------------- /dev/external/SDL/src/sensor/SDL_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/sensor/SDL_sensor.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_crc16.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_crc32.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_mslibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_mslibc.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /dev/external/SDL/src/stdlib/SDL_vacopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/stdlib/SDL_vacopy.h -------------------------------------------------------------------------------- /dev/external/SDL/src/test/SDL_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/test/SDL_test_log.c -------------------------------------------------------------------------------- /dev/external/SDL/src/test/SDL_test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/test/SDL_test_md5.c -------------------------------------------------------------------------------- /dev/external/SDL/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /dev/external/SDL/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /dev/external/SDL/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_blit.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_blit.h -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_egl.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_rect.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_shape.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_surface.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_video.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_yuv.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/SDL_yuv_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/SDL_yuv_c.h -------------------------------------------------------------------------------- /dev/external/SDL/src/video/qnx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/qnx/gl.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/qnx/sdl_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/qnx/sdl_qnx.h -------------------------------------------------------------------------------- /dev/external/SDL/src/video/qnx/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/qnx/video.c -------------------------------------------------------------------------------- /dev/external/SDL/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /dev/external/SDL/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDL/src/video/x11/edid.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/COPYING.txt -------------------------------------------------------------------------------- /dev/external/SDLMixer/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/SDL_mixer.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/load_aiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/load_aiff.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/load_aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/load_aiff.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/load_voc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/load_voc.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/load_voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/load_voc.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/mp3utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/mp3utils.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/mp3utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/mp3utils.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_cmd.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_cmd.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_ogg.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_ogg.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_wav.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_wav.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_xmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_xmp.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/codecs/music_xmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/codecs/music_xmp.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/effect_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/effect_position.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/effects_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/effects_internal.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/effects_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/effects_internal.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/mixer.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/mixer.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/music.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/music.h -------------------------------------------------------------------------------- /dev/external/SDLMixer/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/utils.c -------------------------------------------------------------------------------- /dev/external/SDLMixer/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/SDLMixer/utils.h -------------------------------------------------------------------------------- /dev/external/flatbuffers/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/flatbuffers/src/util.cpp -------------------------------------------------------------------------------- /dev/external/freetype/include/dlg/dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/include/dlg/dlg.h -------------------------------------------------------------------------------- /dev/external/freetype/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/include/ft2build.h -------------------------------------------------------------------------------- /dev/external/freetype/src/base/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/Jamfile -------------------------------------------------------------------------------- /dev/external/freetype/src/base/basepic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/basepic.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/basepic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/basepic.h -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftapi.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftbase.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftbase.h -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftbbox.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftbdf.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftcalc.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftcid.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftcolor.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftdebug.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftgasp.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftglyph.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftgxval.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/fthash.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftinit.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftmac.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftmm.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftobjs.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftotval.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftoutln.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftpfr.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftpic.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftrfork.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftsynth.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/fttype1.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftutil.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/ftver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/ftver.rc -------------------------------------------------------------------------------- /dev/external/freetype/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/md5.c -------------------------------------------------------------------------------- /dev/external/freetype/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/md5.h -------------------------------------------------------------------------------- /dev/external/freetype/src/base/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/base/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/README -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/bdf.c -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/bdf.h -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/bdferror.h -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/bdflib.c -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/module.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bdf/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/bzip2/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/bzip2/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cache/ftcmru.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cache/ftcmru.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cache/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/Jamfile -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2arrst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2arrst.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2arrst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2arrst.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2blues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2blues.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2blues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2blues.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2error.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2error.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2fixed.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2font.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2font.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2ft.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2ft.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2glue.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2hints.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2hints.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2intrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2intrp.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2intrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2intrp.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2read.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2read.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2stack.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2stack.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cf2types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cf2types.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cff.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffcmap.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffcmap.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cfferrs.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffgload.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffgload.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffload.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffload.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffobjs.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffobjs.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffparse.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffparse.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffpic.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cffpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cffpic.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cfftoken.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/cfftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/cfftypes.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/module.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cff/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/ciderrs.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidgload.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidgload.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidload.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidload.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidobjs.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidobjs.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidparse.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidparse.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidriver.c -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidriver.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/cidtoken.h -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/module.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/cid/type1cid.c -------------------------------------------------------------------------------- /dev/external/freetype/src/dlg/dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/dlg/dlg.c -------------------------------------------------------------------------------- /dev/external/freetype/src/dlg/dlgwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/dlg/dlgwrap.c -------------------------------------------------------------------------------- /dev/external/freetype/src/dlg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/dlg/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/gxvalid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gxvalid/README -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/adler32.c -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/crc32.c -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/crc32.h -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/ftgzip.c -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/ftzconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/ftzconf.h -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/gzguts.h -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/infback.c -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/inffast.c -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/inffast.h -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/inflate.c -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/inflate.h -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/zlib.h -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/zutil.c -------------------------------------------------------------------------------- /dev/external/freetype/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/gzip/zutil.h -------------------------------------------------------------------------------- /dev/external/freetype/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /dev/external/freetype/src/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/lzw/ftzopen.c -------------------------------------------------------------------------------- /dev/external/freetype/src/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/lzw/ftzopen.h -------------------------------------------------------------------------------- /dev/external/freetype/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/lzw/rules.mk -------------------------------------------------------------------------------- /dev/external/freetype/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/pcf/README -------------------------------------------------------------------------------- /dev/external/freetype/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/pcf/pcf.c -------------------------------------------------------------------------------- /dev/external/freetype/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/pcf/pcf.h -------------------------------------------------------------------------------- /dev/external/freetype/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/pfr/pfr.c -------------------------------------------------------------------------------- /dev/external/freetype/src/sdf/ftsdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/sdf/ftsdf.c -------------------------------------------------------------------------------- /dev/external/freetype/src/sdf/ftsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/sdf/ftsdf.h -------------------------------------------------------------------------------- /dev/external/freetype/src/sdf/sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/sdf/sdf.c -------------------------------------------------------------------------------- /dev/external/freetype/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /dev/external/freetype/src/svg/ftsvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/svg/ftsvg.c -------------------------------------------------------------------------------- /dev/external/freetype/src/svg/ftsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/svg/ftsvg.h -------------------------------------------------------------------------------- /dev/external/freetype/src/svg/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/freetype/src/svg/svg.c -------------------------------------------------------------------------------- /dev/external/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/LICENSE.txt -------------------------------------------------------------------------------- /dev/external/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imconfig.h -------------------------------------------------------------------------------- /dev/external/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui.cpp -------------------------------------------------------------------------------- /dev/external/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui.h -------------------------------------------------------------------------------- /dev/external/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /dev/external/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /dev/external/imgui/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /dev/external/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui_internal.h -------------------------------------------------------------------------------- /dev/external/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /dev/external/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /dev/external/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /dev/external/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /dev/external/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /dev/external/libtcc/arm-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/arm-asm.c -------------------------------------------------------------------------------- /dev/external/libtcc/arm-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/arm-gen.c -------------------------------------------------------------------------------- /dev/external/libtcc/arm-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/arm-link.c -------------------------------------------------------------------------------- /dev/external/libtcc/arm-tok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/arm-tok.h -------------------------------------------------------------------------------- /dev/external/libtcc/arm64-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/arm64-asm.c -------------------------------------------------------------------------------- /dev/external/libtcc/arm64-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/arm64-gen.c -------------------------------------------------------------------------------- /dev/external/libtcc/arm64-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/arm64-link.c -------------------------------------------------------------------------------- /dev/external/libtcc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/config.h -------------------------------------------------------------------------------- /dev/external/libtcc/dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/dwarf.h -------------------------------------------------------------------------------- /dev/external/libtcc/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/elf.h -------------------------------------------------------------------------------- /dev/external/libtcc/i386-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/i386-asm.c -------------------------------------------------------------------------------- /dev/external/libtcc/i386-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/i386-asm.h -------------------------------------------------------------------------------- /dev/external/libtcc/i386-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/i386-gen.c -------------------------------------------------------------------------------- /dev/external/libtcc/i386-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/i386-link.c -------------------------------------------------------------------------------- /dev/external/libtcc/i386-tok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/i386-tok.h -------------------------------------------------------------------------------- /dev/external/libtcc/libtcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/libtcc.c -------------------------------------------------------------------------------- /dev/external/libtcc/libtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/libtcc.h -------------------------------------------------------------------------------- /dev/external/libtcc/readmes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/readmes/COPYING -------------------------------------------------------------------------------- /dev/external/libtcc/readmes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/readmes/README -------------------------------------------------------------------------------- /dev/external/libtcc/readmes/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.27 2 | -------------------------------------------------------------------------------- /dev/external/libtcc/stab.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/stab.def -------------------------------------------------------------------------------- /dev/external/libtcc/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/stab.h -------------------------------------------------------------------------------- /dev/external/libtcc/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tcc.h -------------------------------------------------------------------------------- /dev/external/libtcc/tccasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccasm.c -------------------------------------------------------------------------------- /dev/external/libtcc/tccdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccdbg.c -------------------------------------------------------------------------------- /dev/external/libtcc/tccdefs_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccdefs_.h -------------------------------------------------------------------------------- /dev/external/libtcc/tccelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccelf.c -------------------------------------------------------------------------------- /dev/external/libtcc/tccgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccgen.c -------------------------------------------------------------------------------- /dev/external/libtcc/tccmacho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccmacho.c -------------------------------------------------------------------------------- /dev/external/libtcc/tccpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccpe.c -------------------------------------------------------------------------------- /dev/external/libtcc/tccpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccpp.c -------------------------------------------------------------------------------- /dev/external/libtcc/tccrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tccrun.c -------------------------------------------------------------------------------- /dev/external/libtcc/tcctok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/tcctok.h -------------------------------------------------------------------------------- /dev/external/libtcc/x86_64-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/x86_64-asm.h -------------------------------------------------------------------------------- /dev/external/libtcc/x86_64-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/x86_64-gen.c -------------------------------------------------------------------------------- /dev/external/libtcc/x86_64-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/libtcc/x86_64-link.c -------------------------------------------------------------------------------- /dev/external/openvr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/openvr/LICENSE -------------------------------------------------------------------------------- /dev/external/openvr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/openvr/README -------------------------------------------------------------------------------- /dev/external/openvr/headers/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/openvr/headers/openvr.h -------------------------------------------------------------------------------- /dev/external/tracy/Tracy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/tracy/Tracy.hpp -------------------------------------------------------------------------------- /dev/external/tracy/TracyC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/tracy/TracyC.h -------------------------------------------------------------------------------- /dev/external/tracy/TracyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/tracy/TracyClient.cpp -------------------------------------------------------------------------------- /dev/external/tracy/TracyOpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/tracy/TracyOpenGL.hpp -------------------------------------------------------------------------------- /dev/external/tracy/common/TracyApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/external/tracy/common/TracyApi.h -------------------------------------------------------------------------------- /dev/include/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Box2D.h -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Draw.cpp -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2FreeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2FreeList.h -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Math.cpp -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Settings.h -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Stat.cpp -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Stat.h -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Timer.cpp -------------------------------------------------------------------------------- /dev/include/Box2D/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Common/b2Timer.h -------------------------------------------------------------------------------- /dev/include/Box2D/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /dev/include/Box2D/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Dynamics/b2Body.h -------------------------------------------------------------------------------- /dev/include/Box2D/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Dynamics/b2Island.h -------------------------------------------------------------------------------- /dev/include/Box2D/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Dynamics/b2World.h -------------------------------------------------------------------------------- /dev/include/Box2D/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/README.txt -------------------------------------------------------------------------------- /dev/include/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /dev/include/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /dev/include/GL/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/GL/gl3.h -------------------------------------------------------------------------------- /dev/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/GL/glext.h -------------------------------------------------------------------------------- /dev/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /dev/include/StackWalker/StackWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/StackWalker/StackWalker.h -------------------------------------------------------------------------------- /dev/include/ThreadPool/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/ThreadPool/ThreadPool.h -------------------------------------------------------------------------------- /dev/include/ThreadPool/readme.txt: -------------------------------------------------------------------------------- 1 | from: https://github.com/progschj/ThreadPool 2 | -------------------------------------------------------------------------------- /dev/include/flatbuffers/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/allocator.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/array.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/base.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/buffer.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/buffer_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/buffer_ref.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/flatbuffers.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/flatc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/flatc.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/flexbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/flexbuffers.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/grpc.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/hash.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/idl.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/minireflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/minireflect.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/pch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/pch/pch.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/reflection.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/registry.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/string.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/struct.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/table.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/util.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/vector.h -------------------------------------------------------------------------------- /dev/include/flatbuffers/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/flatbuffers/verifier.h -------------------------------------------------------------------------------- /dev/include/renderdoc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/renderdoc_app.h -------------------------------------------------------------------------------- /dev/include/slm/float_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/float_util.h -------------------------------------------------------------------------------- /dev/include/slm/float_util.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/float_util.inl -------------------------------------------------------------------------------- /dev/include/slm/intersect_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/intersect_util.h -------------------------------------------------------------------------------- /dev/include/slm/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/mat4.h -------------------------------------------------------------------------------- /dev/include/slm/mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/mat4.inl -------------------------------------------------------------------------------- /dev/include/slm/mtrnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/mtrnd.h -------------------------------------------------------------------------------- /dev/include/slm/no_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/no_simd.h -------------------------------------------------------------------------------- /dev/include/slm/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/quat.h -------------------------------------------------------------------------------- /dev/include/slm/quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/quat.inl -------------------------------------------------------------------------------- /dev/include/slm/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/random.h -------------------------------------------------------------------------------- /dev/include/slm/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/random.inl -------------------------------------------------------------------------------- /dev/include/slm/runtime_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/runtime_checks.h -------------------------------------------------------------------------------- /dev/include/slm/runtime_checks.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/include/slm/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/simd.h -------------------------------------------------------------------------------- /dev/include/slm/slmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/slmath.h -------------------------------------------------------------------------------- /dev/include/slm/slmath_configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/slmath_configure.h -------------------------------------------------------------------------------- /dev/include/slm/slmath_pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/slmath_pp.h -------------------------------------------------------------------------------- /dev/include/slm/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vec2.h -------------------------------------------------------------------------------- /dev/include/slm/vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vec2.inl -------------------------------------------------------------------------------- /dev/include/slm/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vec3.h -------------------------------------------------------------------------------- /dev/include/slm/vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vec3.inl -------------------------------------------------------------------------------- /dev/include/slm/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vec4.h -------------------------------------------------------------------------------- /dev/include/slm/vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vec4.inl -------------------------------------------------------------------------------- /dev/include/slm/vec_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vec_impl.h -------------------------------------------------------------------------------- /dev/include/slm/vector_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/slm/vector_sse.h -------------------------------------------------------------------------------- /dev/include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/stb/stb_image.h -------------------------------------------------------------------------------- /dev/include/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/stb/stb_image_write.h -------------------------------------------------------------------------------- /dev/include/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/stb/stb_truetype.h -------------------------------------------------------------------------------- /dev/include/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/include/subprocess.h -------------------------------------------------------------------------------- /dev/lobster/NatvisFile.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/NatvisFile.natvis -------------------------------------------------------------------------------- /dev/lobster/cloc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/cloc.exe -------------------------------------------------------------------------------- /dev/lobster/cloc_cpp.bat: -------------------------------------------------------------------------------- 1 | cloc.exe --by-file ..\src 2 | pause 3 | -------------------------------------------------------------------------------- /dev/lobster/cloc_lobster.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/cloc_lobster.bat -------------------------------------------------------------------------------- /dev/lobster/flatc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/flatc.exe -------------------------------------------------------------------------------- /dev/lobster/generate_flatbuffers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/generate_flatbuffers.bat -------------------------------------------------------------------------------- /dev/lobster/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/icon1.ico -------------------------------------------------------------------------------- /dev/lobster/language.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/language.vcxproj -------------------------------------------------------------------------------- /dev/lobster/language.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/language.vcxproj.filters -------------------------------------------------------------------------------- /dev/lobster/lobster.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/lobster.rc -------------------------------------------------------------------------------- /dev/lobster/lobster.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/lobster.sln -------------------------------------------------------------------------------- /dev/lobster/lobster.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/lobster.vcxproj -------------------------------------------------------------------------------- /dev/lobster/lobster.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/lobster.vcxproj.filters -------------------------------------------------------------------------------- /dev/lobster/main.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/main.vcxproj -------------------------------------------------------------------------------- /dev/lobster/main.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/main.vcxproj.filters -------------------------------------------------------------------------------- /dev/lobster/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/resource.h -------------------------------------------------------------------------------- /dev/lobster/tcc_objdump.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/tcc_objdump.bat -------------------------------------------------------------------------------- /dev/lobster/test_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/test_all.bat -------------------------------------------------------------------------------- /dev/lobster/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/test_all.sh -------------------------------------------------------------------------------- /dev/lobster/test_all_compile_only.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/test_all_compile_only.bat -------------------------------------------------------------------------------- /dev/lobster/test_all_no_projects.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lobster/test_all_no_projects.bat -------------------------------------------------------------------------------- /dev/lsp/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | out/** -------------------------------------------------------------------------------- /dev/lsp/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/.eslintrc.js -------------------------------------------------------------------------------- /dev/lsp/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | tsconfig.tsbuildinfo 4 | webpack-out -------------------------------------------------------------------------------- /dev/lsp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/package-lock.json -------------------------------------------------------------------------------- /dev/lsp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/package.json -------------------------------------------------------------------------------- /dev/lsp/src/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/document.ts -------------------------------------------------------------------------------- /dev/lsp/src/features/code_action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/features/code_action.ts -------------------------------------------------------------------------------- /dev/lsp/src/features/completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/features/completion.ts -------------------------------------------------------------------------------- /dev/lsp/src/features/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/features/definition.ts -------------------------------------------------------------------------------- /dev/lsp/src/features/hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/features/hover.ts -------------------------------------------------------------------------------- /dev/lsp/src/lobster.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/lobster.test.ts -------------------------------------------------------------------------------- /dev/lsp/src/lobster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/lobster.ts -------------------------------------------------------------------------------- /dev/lsp/src/lsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/lsp.ts -------------------------------------------------------------------------------- /dev/lsp/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/server.ts -------------------------------------------------------------------------------- /dev/lsp/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/src/utils.ts -------------------------------------------------------------------------------- /dev/lsp/testFixture/invalid.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/testFixture/invalid.lobster -------------------------------------------------------------------------------- /dev/lsp/testFixture/valid.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/testFixture/valid.lobster -------------------------------------------------------------------------------- /dev/lsp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/tsconfig.json -------------------------------------------------------------------------------- /dev/lsp/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/lsp/webpack.config.js -------------------------------------------------------------------------------- /dev/src/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/audio.cpp -------------------------------------------------------------------------------- /dev/src/builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/builtins.cpp -------------------------------------------------------------------------------- /dev/src/bytecode.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/bytecode.fbs -------------------------------------------------------------------------------- /dev/src/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/compiler.cpp -------------------------------------------------------------------------------- /dev/src/cubegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/cubegen.cpp -------------------------------------------------------------------------------- /dev/src/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/engine.cpp -------------------------------------------------------------------------------- /dev/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/file.cpp -------------------------------------------------------------------------------- /dev/src/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/font.cpp -------------------------------------------------------------------------------- /dev/src/fontrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/fontrenderer.cpp -------------------------------------------------------------------------------- /dev/src/glgeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/glgeom.cpp -------------------------------------------------------------------------------- /dev/src/glloadiqm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/glloadiqm.cpp -------------------------------------------------------------------------------- /dev/src/glshader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/glshader.cpp -------------------------------------------------------------------------------- /dev/src/glsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/glsystem.cpp -------------------------------------------------------------------------------- /dev/src/gltexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/gltexture.cpp -------------------------------------------------------------------------------- /dev/src/gltimequery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/gltimequery.cpp -------------------------------------------------------------------------------- /dev/src/glvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/glvr.cpp -------------------------------------------------------------------------------- /dev/src/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/graphics.cpp -------------------------------------------------------------------------------- /dev/src/imbind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/imbind.cpp -------------------------------------------------------------------------------- /dev/src/lobster/3dgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/3dgrid.h -------------------------------------------------------------------------------- /dev/src/lobster/accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/accumulator.h -------------------------------------------------------------------------------- /dev/src/lobster/bytecode_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/bytecode_generated.h -------------------------------------------------------------------------------- /dev/src/lobster/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/codegen.h -------------------------------------------------------------------------------- /dev/src/lobster/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/compiler.h -------------------------------------------------------------------------------- /dev/src/lobster/constval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/constval.h -------------------------------------------------------------------------------- /dev/src/lobster/cubegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/cubegen.h -------------------------------------------------------------------------------- /dev/src/lobster/dllist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/dllist.h -------------------------------------------------------------------------------- /dev/src/lobster/fontrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/fontrenderer.h -------------------------------------------------------------------------------- /dev/src/lobster/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/geom.h -------------------------------------------------------------------------------- /dev/src/lobster/glincludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/glincludes.h -------------------------------------------------------------------------------- /dev/src/lobster/glinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/glinterface.h -------------------------------------------------------------------------------- /dev/src/lobster/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/graphics.h -------------------------------------------------------------------------------- /dev/src/lobster/idents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/idents.h -------------------------------------------------------------------------------- /dev/src/lobster/il.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/il.h -------------------------------------------------------------------------------- /dev/src/lobster/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/lex.h -------------------------------------------------------------------------------- /dev/src/lobster/lobsterreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/lobsterreader.h -------------------------------------------------------------------------------- /dev/src/lobster/mctables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/mctables.h -------------------------------------------------------------------------------- /dev/src/lobster/meshgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/meshgen.h -------------------------------------------------------------------------------- /dev/src/lobster/natreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/natreg.h -------------------------------------------------------------------------------- /dev/src/lobster/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/node.h -------------------------------------------------------------------------------- /dev/src/lobster/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/optimizer.h -------------------------------------------------------------------------------- /dev/src/lobster/packed_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/packed_vector.h -------------------------------------------------------------------------------- /dev/src/lobster/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/parser.h -------------------------------------------------------------------------------- /dev/src/lobster/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/platform.h -------------------------------------------------------------------------------- /dev/src/lobster/polyreduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/polyreduce.h -------------------------------------------------------------------------------- /dev/src/lobster/resource_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/resource_manager.h -------------------------------------------------------------------------------- /dev/src/lobster/rng_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/rng_hash.h -------------------------------------------------------------------------------- /dev/src/lobster/sdlincludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/sdlincludes.h -------------------------------------------------------------------------------- /dev/src/lobster/sdlinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/sdlinterface.h -------------------------------------------------------------------------------- /dev/src/lobster/simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/simplex.h -------------------------------------------------------------------------------- /dev/src/lobster/slaballoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/slaballoc.h -------------------------------------------------------------------------------- /dev/src/lobster/small_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/small_vector.h -------------------------------------------------------------------------------- /dev/src/lobster/stack_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/stack_vector.h -------------------------------------------------------------------------------- /dev/src/lobster/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/stdafx.h -------------------------------------------------------------------------------- /dev/src/lobster/string_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/string_tools.h -------------------------------------------------------------------------------- /dev/src/lobster/tonative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/tonative.h -------------------------------------------------------------------------------- /dev/src/lobster/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/tools.h -------------------------------------------------------------------------------- /dev/src/lobster/ttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/ttypes.h -------------------------------------------------------------------------------- /dev/src/lobster/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/type.h -------------------------------------------------------------------------------- /dev/src/lobster/typecheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/typecheck.h -------------------------------------------------------------------------------- /dev/src/lobster/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/unicode.h -------------------------------------------------------------------------------- /dev/src/lobster/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/varint.h -------------------------------------------------------------------------------- /dev/src/lobster/vmdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/vmdata.h -------------------------------------------------------------------------------- /dev/src/lobster/vmops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/vmops.h -------------------------------------------------------------------------------- /dev/src/lobster/wasm_binary_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/wasm_binary_writer.h -------------------------------------------------------------------------------- /dev/src/lobster/wentropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/wentropy.h -------------------------------------------------------------------------------- /dev/src/lobster/wfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobster/wfc.h -------------------------------------------------------------------------------- /dev/src/lobsterreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/lobsterreader.cpp -------------------------------------------------------------------------------- /dev/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/main.cpp -------------------------------------------------------------------------------- /dev/src/meshgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/meshgen.cpp -------------------------------------------------------------------------------- /dev/src/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/physics.cpp -------------------------------------------------------------------------------- /dev/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/platform.cpp -------------------------------------------------------------------------------- /dev/src/sdlaudiosfxr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/sdlaudiosfxr.cpp -------------------------------------------------------------------------------- /dev/src/sdlsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/sdlsystem.cpp -------------------------------------------------------------------------------- /dev/src/simplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/simplex.cpp -------------------------------------------------------------------------------- /dev/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/stdafx.cpp -------------------------------------------------------------------------------- /dev/src/steamworks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/steamworks.cpp -------------------------------------------------------------------------------- /dev/src/tccbind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/tccbind.cpp -------------------------------------------------------------------------------- /dev/src/tonative.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/src/towasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/towasm.cpp -------------------------------------------------------------------------------- /dev/src/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/vm.cpp -------------------------------------------------------------------------------- /dev/src/vmdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/src/vmdata.cpp -------------------------------------------------------------------------------- /dev/vscode-ext/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | out/** -------------------------------------------------------------------------------- /dev/vscode-ext/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/.eslintrc.js -------------------------------------------------------------------------------- /dev/vscode-ext/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | webpack-out 4 | icons -------------------------------------------------------------------------------- /dev/vscode-ext/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/.vscode/launch.json -------------------------------------------------------------------------------- /dev/vscode-ext/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/.vscode/tasks.json -------------------------------------------------------------------------------- /dev/vscode-ext/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/.vscodeignore -------------------------------------------------------------------------------- /dev/vscode-ext/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/LICENSE.txt -------------------------------------------------------------------------------- /dev/vscode-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/README.md -------------------------------------------------------------------------------- /dev/vscode-ext/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/package-lock.json -------------------------------------------------------------------------------- /dev/vscode-ext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/package.json -------------------------------------------------------------------------------- /dev/vscode-ext/src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/src/commands.ts -------------------------------------------------------------------------------- /dev/vscode-ext/src/dap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/src/dap.ts -------------------------------------------------------------------------------- /dev/vscode-ext/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/src/extension.ts -------------------------------------------------------------------------------- /dev/vscode-ext/src/lobsterDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/src/lobsterDebug.ts -------------------------------------------------------------------------------- /dev/vscode-ext/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/tsconfig.json -------------------------------------------------------------------------------- /dev/vscode-ext/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/dev/vscode-ext/webpack.config.js -------------------------------------------------------------------------------- /docs/README_FIRST.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/README_FIRST.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/builtin_functions_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/builtin_functions_reference.html -------------------------------------------------------------------------------- /docs/command_line_usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/command_line_usage.html -------------------------------------------------------------------------------- /docs/engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/engine.html -------------------------------------------------------------------------------- /docs/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/getting_started.html -------------------------------------------------------------------------------- /docs/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/github.css -------------------------------------------------------------------------------- /docs/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/implementation.html -------------------------------------------------------------------------------- /docs/implementation_wasm_REMOVED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/implementation_wasm_REMOVED.html -------------------------------------------------------------------------------- /docs/language_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/language_reference.html -------------------------------------------------------------------------------- /docs/lobster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/lobster.png -------------------------------------------------------------------------------- /docs/lobster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/lobster.svg -------------------------------------------------------------------------------- /docs/lsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/lsp.html -------------------------------------------------------------------------------- /docs/memory_management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/memory_management.html -------------------------------------------------------------------------------- /docs/notepadpp_ide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/notepadpp_ide.html -------------------------------------------------------------------------------- /docs/philosophy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/philosophy.html -------------------------------------------------------------------------------- /docs/screenshots/shooter/tut1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/screenshots/shooter/tut1.jpg -------------------------------------------------------------------------------- /docs/screenshots/shooter/tut2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/screenshots/shooter/tut2.jpg -------------------------------------------------------------------------------- /docs/screenshots/shooter/tut3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/screenshots/shooter/tut3.jpg -------------------------------------------------------------------------------- /docs/screenshots/shooter/tut4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/screenshots/shooter/tut4.jpg -------------------------------------------------------------------------------- /docs/screenshots/shooter/tut5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/screenshots/shooter/tut5.jpg -------------------------------------------------------------------------------- /docs/screenshots/shooter/tut6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/screenshots/shooter/tut6.jpg -------------------------------------------------------------------------------- /docs/shooter_tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/shooter_tutorial.html -------------------------------------------------------------------------------- /docs/source/README_FIRST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/README_FIRST.md -------------------------------------------------------------------------------- /docs/source/command_line_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/command_line_usage.md -------------------------------------------------------------------------------- /docs/source/engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/engine.md -------------------------------------------------------------------------------- /docs/source/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/getting_started.md -------------------------------------------------------------------------------- /docs/source/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/head.html -------------------------------------------------------------------------------- /docs/source/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/implementation.md -------------------------------------------------------------------------------- /docs/source/language_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/language_reference.md -------------------------------------------------------------------------------- /docs/source/lsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/lsp.md -------------------------------------------------------------------------------- /docs/source/memory_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/memory_management.md -------------------------------------------------------------------------------- /docs/source/mmd_header.txt: -------------------------------------------------------------------------------- 1 | CSS: github.css 2 | -------------------------------------------------------------------------------- /docs/source/notepadpp_ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/notepadpp_ide.md -------------------------------------------------------------------------------- /docs/source/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/philosophy.md -------------------------------------------------------------------------------- /docs/source/shooter_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/shooter_tutorial.md -------------------------------------------------------------------------------- /docs/source/style_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/style_guide.md -------------------------------------------------------------------------------- /docs/source/sublime_ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/sublime_ide.md -------------------------------------------------------------------------------- /docs/source/type_checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/type_checker.md -------------------------------------------------------------------------------- /docs/source/vscode_ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/source/vscode_ide.md -------------------------------------------------------------------------------- /docs/style_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/style_guide.html -------------------------------------------------------------------------------- /docs/sublime/lobster.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/sublime/lobster.sublime-build -------------------------------------------------------------------------------- /docs/sublime/lobster.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/sublime/lobster.sublime-syntax -------------------------------------------------------------------------------- /docs/sublime/lobster.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/sublime/lobster.tmPreferences -------------------------------------------------------------------------------- /docs/sublime/lobster_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/sublime/lobster_exec.py -------------------------------------------------------------------------------- /docs/sublime_ide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/sublime_ide.html -------------------------------------------------------------------------------- /docs/type_checker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/type_checker.html -------------------------------------------------------------------------------- /docs/vscode/lobster.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/vscode/lobster.vsix -------------------------------------------------------------------------------- /docs/vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/vscode/tasks.json -------------------------------------------------------------------------------- /docs/vscode_ide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/docs/vscode_ide.html -------------------------------------------------------------------------------- /modules/astar.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/astar.lobster -------------------------------------------------------------------------------- /modules/camera.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/camera.lobster -------------------------------------------------------------------------------- /modules/color.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/color.lobster -------------------------------------------------------------------------------- /modules/controller.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/controller.lobster -------------------------------------------------------------------------------- /modules/date_time.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/date_time.lobster -------------------------------------------------------------------------------- /modules/dictionary.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/dictionary.lobster -------------------------------------------------------------------------------- /modules/exception.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/exception.lobster -------------------------------------------------------------------------------- /modules/floodfillpath.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/floodfillpath.lobster -------------------------------------------------------------------------------- /modules/gl.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/gl.lobster -------------------------------------------------------------------------------- /modules/gui.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/gui.lobster -------------------------------------------------------------------------------- /modules/imgui.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/imgui.lobster -------------------------------------------------------------------------------- /modules/mat2x2.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/mat2x2.lobster -------------------------------------------------------------------------------- /modules/mat4x4.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/mat4x4.lobster -------------------------------------------------------------------------------- /modules/match.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/match.lobster -------------------------------------------------------------------------------- /modules/mg.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/mg.lobster -------------------------------------------------------------------------------- /modules/navmap.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/navmap.lobster -------------------------------------------------------------------------------- /modules/physics.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/physics.lobster -------------------------------------------------------------------------------- /modules/plugintest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/plugintest.lobster -------------------------------------------------------------------------------- /modules/quaternion.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/quaternion.lobster -------------------------------------------------------------------------------- /modules/std.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/std.lobster -------------------------------------------------------------------------------- /modules/stdtype.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/stdtype.lobster -------------------------------------------------------------------------------- /modules/steam.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/steam.lobster -------------------------------------------------------------------------------- /modules/testing.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/testing.lobster -------------------------------------------------------------------------------- /modules/texture.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/texture.lobster -------------------------------------------------------------------------------- /modules/utilui.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/utilui.lobster -------------------------------------------------------------------------------- /modules/vec.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/modules/vec.lobster -------------------------------------------------------------------------------- /samples/binary.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/binary.lobster -------------------------------------------------------------------------------- /samples/bspgraphic.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/bspgraphic.lobster -------------------------------------------------------------------------------- /samples/cgtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/cgtest.lobster -------------------------------------------------------------------------------- /samples/collision.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/collision.lobster -------------------------------------------------------------------------------- /samples/cube.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/cube.lobster -------------------------------------------------------------------------------- /samples/custom_shader_sobel.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/custom_shader_sobel.lobster -------------------------------------------------------------------------------- /samples/demos/dirbrowse.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/demos/dirbrowse.lobster -------------------------------------------------------------------------------- /samples/demos/langtons.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/demos/langtons.lobster -------------------------------------------------------------------------------- /samples/demos/smallpt.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/demos/smallpt.lobster -------------------------------------------------------------------------------- /samples/dragtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/dragtest.lobster -------------------------------------------------------------------------------- /samples/dungeongen.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/dungeongen.lobster -------------------------------------------------------------------------------- /samples/dynamic_dispatch.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/dynamic_dispatch.lobster -------------------------------------------------------------------------------- /samples/eulerspiral.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/eulerspiral.lobster -------------------------------------------------------------------------------- /samples/guitest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/guitest.lobster -------------------------------------------------------------------------------- /samples/hypocycloid.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/hypocycloid.lobster -------------------------------------------------------------------------------- /samples/iconfont.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/iconfont.lobster -------------------------------------------------------------------------------- /samples/image.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/image.lobster -------------------------------------------------------------------------------- /samples/imguitest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/imguitest.lobster -------------------------------------------------------------------------------- /samples/iqmtest/iqmtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/iqmtest/iqmtest.lobster -------------------------------------------------------------------------------- /samples/iqmtest/models/Body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/iqmtest/models/Body.png -------------------------------------------------------------------------------- /samples/iqmtest/models/Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/iqmtest/models/Head.png -------------------------------------------------------------------------------- /samples/iqmtest/models/mrfixit.iqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/iqmtest/models/mrfixit.iqm -------------------------------------------------------------------------------- /samples/knights_tour.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/knights_tour.lobster -------------------------------------------------------------------------------- /samples/lazy_py_triples.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/lazy_py_triples.lobster -------------------------------------------------------------------------------- /samples/lobbytest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/lobbytest.lobster -------------------------------------------------------------------------------- /samples/lobstercraft.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/lobstercraft.lobster -------------------------------------------------------------------------------- /samples/mazepattern.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/mazepattern.lobster -------------------------------------------------------------------------------- /samples/mgtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/mgtest.lobster -------------------------------------------------------------------------------- /samples/pendulum.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/pendulum.lobster -------------------------------------------------------------------------------- /samples/physics_boxes.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/physics_boxes.lobster -------------------------------------------------------------------------------- /samples/physics_water.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/physics_water.lobster -------------------------------------------------------------------------------- /samples/platform/t2s.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/platform/t2s.lobster -------------------------------------------------------------------------------- /samples/pythtree.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/pythtree.lobster -------------------------------------------------------------------------------- /samples/reach.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/reach.lobster -------------------------------------------------------------------------------- /samples/rosettacode/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/rosettacode/README.txt -------------------------------------------------------------------------------- /samples/rosettacode/fizzbuzz.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/rosettacode/fizzbuzz.lobster -------------------------------------------------------------------------------- /samples/rosettacode/hello_world_test.lobster: -------------------------------------------------------------------------------- 1 | print "Goodbye, World!" 2 | -------------------------------------------------------------------------------- /samples/rosettacode/quicksort.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/rosettacode/quicksort.lobster -------------------------------------------------------------------------------- /samples/rosettacode/quine.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/rosettacode/quine.lobster -------------------------------------------------------------------------------- /samples/shooter_tutorial/tut1.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/shooter_tutorial/tut1.lobster -------------------------------------------------------------------------------- /samples/shooter_tutorial/tut2.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/shooter_tutorial/tut2.lobster -------------------------------------------------------------------------------- /samples/shooter_tutorial/tut3.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/shooter_tutorial/tut3.lobster -------------------------------------------------------------------------------- /samples/shooter_tutorial/tut4.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/shooter_tutorial/tut4.lobster -------------------------------------------------------------------------------- /samples/shooter_tutorial/tut5.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/shooter_tutorial/tut5.lobster -------------------------------------------------------------------------------- /samples/shooter_tutorial/tut6.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/shooter_tutorial/tut6.lobster -------------------------------------------------------------------------------- /samples/sierpinski.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/sierpinski.lobster -------------------------------------------------------------------------------- /samples/subprocess.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/subprocess.lobster -------------------------------------------------------------------------------- /samples/textinput.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/textinput.lobster -------------------------------------------------------------------------------- /samples/threads.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/threads.lobster -------------------------------------------------------------------------------- /samples/tixy.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/tixy.lobster -------------------------------------------------------------------------------- /samples/tixy3D.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/tixy3D.lobster -------------------------------------------------------------------------------- /samples/tools/dumpview.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/tools/dumpview.lobster -------------------------------------------------------------------------------- /samples/vonkoch.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/vonkoch.lobster -------------------------------------------------------------------------------- /samples/vrtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/vrtest.lobster -------------------------------------------------------------------------------- /samples/wavtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/wavtest.lobster -------------------------------------------------------------------------------- /samples/will_it_shuffle.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/samples/will_it_shuffle.lobster -------------------------------------------------------------------------------- /tests/astartest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/astartest.lobster -------------------------------------------------------------------------------- /tests/builtintest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/builtintest.lobster -------------------------------------------------------------------------------- /tests/errors/dispatchorder._lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/errors/dispatchorder._lobster -------------------------------------------------------------------------------- /tests/errors/show_stacktrace._lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/errors/show_stacktrace._lobster -------------------------------------------------------------------------------- /tests/floodtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/floodtest.lobster -------------------------------------------------------------------------------- /tests/freevars.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/freevars.lobster -------------------------------------------------------------------------------- /tests/goaptest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/goaptest.lobster -------------------------------------------------------------------------------- /tests/gradienttest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/gradienttest.lobster -------------------------------------------------------------------------------- /tests/knightstest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/knightstest.lobster -------------------------------------------------------------------------------- /tests/lifetimetest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/lifetimetest.lobster -------------------------------------------------------------------------------- /tests/matrixtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/matrixtest.lobster -------------------------------------------------------------------------------- /tests/misc/control.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/control.lobster -------------------------------------------------------------------------------- /tests/misc/frame.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/frame.lobster -------------------------------------------------------------------------------- /tests/misc/function_def_arg.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/function_def_arg.lobster -------------------------------------------------------------------------------- /tests/misc/keep_dispatch.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/keep_dispatch.lobster -------------------------------------------------------------------------------- /tests/misc/multi_ret_if.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/multi_ret_if.lobster -------------------------------------------------------------------------------- /tests/misc/namespace_error1.lobster: -------------------------------------------------------------------------------- 1 | namespace test 2 | import gl 3 | 4 | pass() 5 | -------------------------------------------------------------------------------- /tests/misc/nil_overload.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/nil_overload.lobster -------------------------------------------------------------------------------- /tests/misc/var_remains.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/var_remains.lobster -------------------------------------------------------------------------------- /tests/misc/void_constructor.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misc/void_constructor.lobster -------------------------------------------------------------------------------- /tests/mischtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/mischtest.lobster -------------------------------------------------------------------------------- /tests/misctest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/misctest.lobster -------------------------------------------------------------------------------- /tests/operators.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/operators.lobster -------------------------------------------------------------------------------- /tests/parsertest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/parsertest.lobster -------------------------------------------------------------------------------- /tests/smallpttest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/smallpttest.lobster -------------------------------------------------------------------------------- /tests/speedtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/speedtest.lobster -------------------------------------------------------------------------------- /tests/springstest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/springstest.lobster -------------------------------------------------------------------------------- /tests/stringtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/stringtest.lobster -------------------------------------------------------------------------------- /tests/structtest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/structtest.lobster -------------------------------------------------------------------------------- /tests/syntax_highlight.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/syntax_highlight.lobster -------------------------------------------------------------------------------- /tests/typeswitch.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/typeswitch.lobster -------------------------------------------------------------------------------- /tests/typetest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/typetest.lobster -------------------------------------------------------------------------------- /tests/unittest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/unittest.lobster -------------------------------------------------------------------------------- /tests/watertest.lobster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/lobster/HEAD/tests/watertest.lobster --------------------------------------------------------------------------------