├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── FUNDING.yml ├── codeql │ └── codeql-config.yml └── workflows │ ├── codeql.yml │ └── geargrafx.yml ├── .gitignore ├── .gitlab-ci.yml ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── backers.md ├── platforms ├── bsd │ └── Makefile ├── libretro │ ├── Makefile │ ├── Makefile.common │ ├── geargrafx.libretro │ ├── geargrafx_libretro.info │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ ├── libretro.cpp │ ├── libretro.h │ └── link.T ├── linux │ └── Makefile ├── macos │ ├── Info.plist │ ├── Makefile │ ├── app.entitlements │ ├── fullscreen.mm │ ├── generate_icon.sh │ ├── iconfile.icns │ ├── image.png │ └── run.sh ├── shared │ ├── README.txt │ ├── dependencies │ │ ├── glad │ │ │ └── glad.h │ │ ├── imgui │ │ │ ├── fonts │ │ │ │ ├── IconsMaterialDesign.h │ │ │ │ ├── Makefile │ │ │ │ ├── MaterialIcons.h │ │ │ │ ├── RobotoMedium.h │ │ │ │ └── binary_to_compressed_c.cpp │ │ │ ├── imconfig.h │ │ │ ├── imgui.cpp │ │ │ ├── imgui.h │ │ │ ├── imgui_demo.cpp │ │ │ ├── imgui_draw.cpp │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ ├── imgui_impl_opengl2.h │ │ │ ├── imgui_impl_sdl2.cpp │ │ │ ├── imgui_impl_sdl2.h │ │ │ ├── imgui_internal.h │ │ │ ├── imgui_tables.cpp │ │ │ ├── imgui_widgets.cpp │ │ │ ├── implot.cpp │ │ │ ├── implot.h │ │ │ ├── implot_demo.cpp │ │ │ ├── implot_internal.h │ │ │ ├── implot_items.cpp │ │ │ ├── imstb_rectpack.h │ │ │ ├── imstb_textedit.h │ │ │ └── imstb_truetype.h │ │ ├── libchdr │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── include │ │ │ │ ├── dr_libs │ │ │ │ │ └── dr_flac.h │ │ │ │ └── libchdr │ │ │ │ │ ├── bitstream.h │ │ │ │ │ ├── cdrom.h │ │ │ │ │ ├── chd.h │ │ │ │ │ ├── chdconfig.h │ │ │ │ │ ├── coretypes.h │ │ │ │ │ ├── flac.h │ │ │ │ │ └── huffman.h │ │ │ ├── pkg-config.pc.in │ │ │ └── src │ │ │ │ ├── libchdr_bitstream.c │ │ │ │ ├── libchdr_cdrom.c │ │ │ │ ├── libchdr_chd.c │ │ │ │ ├── libchdr_flac.c │ │ │ │ ├── libchdr_huffman.c │ │ │ │ └── link.T │ │ ├── lzma │ │ │ ├── Asm │ │ │ │ ├── arm64 │ │ │ │ │ ├── 7zAsm.S │ │ │ │ │ └── LzmaDecOpt.S │ │ │ │ └── x86 │ │ │ │ │ ├── 7zAsm.asm │ │ │ │ │ └── LzmaDecOpt.asm │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── 7zWindows.h │ │ │ │ ├── Alloc.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.h │ │ │ │ ├── Delta.h │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── Lzma86.h │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── Precomp.h │ │ │ │ ├── RotateDefs.h │ │ │ │ └── Sort.h │ │ │ └── src │ │ │ │ ├── Alloc.c │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.c │ │ │ │ ├── Delta.c │ │ │ │ ├── LzFind.c │ │ │ │ ├── Lzma86Dec.c │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaEnc.c │ │ │ │ └── Sort.c │ │ ├── mINI │ │ │ └── ini.h │ │ ├── miniz │ │ │ ├── miniz.c │ │ │ └── miniz.h │ │ ├── nfd │ │ │ ├── nfd.h │ │ │ ├── nfd_cocoa.mm │ │ │ ├── nfd_gtk.cpp │ │ │ ├── nfd_sdl2.h │ │ │ └── nfd_win.cpp │ │ ├── stb │ │ │ └── stb_image_write.h │ │ └── zstd │ │ │ └── zstddeclib.c │ ├── desktop │ │ ├── application.cpp │ │ ├── application.h │ │ ├── backers.h │ │ ├── config.cpp │ │ ├── config.h │ │ ├── emu.cpp │ │ ├── emu.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── gui_actions.cpp │ │ ├── gui_actions.h │ │ ├── gui_debug.cpp │ │ ├── gui_debug.h │ │ ├── gui_debug_adpcm.cpp │ │ ├── gui_debug_adpcm.h │ │ ├── gui_debug_cdrom.cpp │ │ ├── gui_debug_cdrom.h │ │ ├── gui_debug_cdrom_audio.cpp │ │ ├── gui_debug_cdrom_audio.h │ │ ├── gui_debug_constants.h │ │ ├── gui_debug_disassembler.cpp │ │ ├── gui_debug_disassembler.h │ │ ├── gui_debug_huc6202.cpp │ │ ├── gui_debug_huc6202.h │ │ ├── gui_debug_huc6260.cpp │ │ ├── gui_debug_huc6260.h │ │ ├── gui_debug_huc6270.cpp │ │ ├── gui_debug_huc6270.h │ │ ├── gui_debug_huc6280.cpp │ │ ├── gui_debug_huc6280.h │ │ ├── gui_debug_memeditor.cpp │ │ ├── gui_debug_memeditor.h │ │ ├── gui_debug_memory.cpp │ │ ├── gui_debug_memory.h │ │ ├── gui_debug_psg.cpp │ │ ├── gui_debug_psg.h │ │ ├── gui_debug_text.h │ │ ├── gui_debug_trace_logger.cpp │ │ ├── gui_debug_trace_logger.h │ │ ├── gui_filedialogs.cpp │ │ ├── gui_filedialogs.h │ │ ├── gui_hes.cpp │ │ ├── gui_hes.h │ │ ├── gui_menus.cpp │ │ ├── gui_menus.h │ │ ├── gui_popups.cpp │ │ ├── gui_popups.h │ │ ├── keyboard.h │ │ ├── license.h │ │ ├── main.cpp │ │ ├── renderer.cpp │ │ ├── renderer.h │ │ ├── sound_queue.cpp │ │ ├── sound_queue.h │ │ └── utils.h │ ├── gamecontrollerdb.txt │ └── makefiles │ │ ├── Makefile.common │ │ └── Makefile.sources └── windows │ ├── Geargrafx.manifest │ ├── Geargrafx.rc │ ├── Geargrafx.sln │ ├── Geargrafx.vcxproj │ ├── Geargrafx.vcxproj.filters │ ├── dependencies │ ├── .gitignore │ └── SDL2-2.30.6 │ │ ├── BUGS.txt │ │ ├── COPYING.txt │ │ ├── README-SDL.txt │ │ ├── README.txt │ │ ├── WhatsNew.txt │ │ ├── cmake │ │ ├── sdl2-config-version.cmake │ │ └── sdl2-config.cmake │ │ ├── docs │ │ ├── CONTRIBUTING.md │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gdk.md │ │ ├── README-gesture.md │ │ ├── README-git.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-kmsbsd.md │ │ ├── README-linux.md │ │ ├── README-macos.md │ │ ├── README-n3ds.md │ │ ├── README-nacl.md │ │ ├── README-ngage.md │ │ ├── README-os2.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-ps2.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-riscos.md │ │ ├── README-touch.md │ │ ├── README-versions.md │ │ ├── README-visualc.md │ │ ├── README-vita.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ ├── doxyfile │ │ └── release_checklist.md │ │ ├── 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_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_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 │ │ └── lib │ │ ├── arm64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ ├── x64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ └── x86 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ ├── iconfile.ico │ └── resource.h ├── src ├── adpcm.cpp ├── adpcm.h ├── adpcm_inline.h ├── arcade_card_mapper.cpp ├── arcade_card_mapper.h ├── arcade_card_mapper_inline.h ├── audio.cpp ├── audio.h ├── audio_inline.h ├── bit_ops.h ├── cdrom.cpp ├── cdrom.h ├── cdrom_audio.cpp ├── cdrom_audio.h ├── cdrom_audio_inline.h ├── cdrom_chd_image.cpp ├── cdrom_chd_image.h ├── cdrom_common.h ├── cdrom_cuebin_image.cpp ├── cdrom_cuebin_image.h ├── cdrom_image.cpp ├── cdrom_image.h ├── cdrom_inline.h ├── cdrom_media.cpp ├── cdrom_media.h ├── cdrom_media_inline.h ├── common.h ├── crc.h ├── defines.h ├── game_db.h ├── geargrafx.h ├── geargrafx_core.cpp ├── geargrafx_core.h ├── geargrafx_core_inline.h ├── huc6202.cpp ├── huc6202.h ├── huc6202_inline.h ├── huc6260.cpp ├── huc6260.h ├── huc6260_inline.h ├── huc6270.cpp ├── huc6270.h ├── huc6270_defines.h ├── huc6270_inline.h ├── huc6280.cpp ├── huc6280.h ├── huc6280_functors.cpp ├── huc6280_inline.h ├── huc6280_names.h ├── huc6280_opcodes.cpp ├── huc6280_opcodes_inline.h ├── huc6280_psg.cpp ├── huc6280_psg.h ├── huc6280_psg_inline.h ├── huc6280_registers.h ├── huc6280_timing.h ├── input.cpp ├── input.h ├── input_inline.h ├── log.h ├── mapper.cpp ├── mapper.h ├── mb128.cpp ├── mb128.h ├── mb128_inline.h ├── media.cpp ├── media.h ├── media_inline.h ├── memory.cpp ├── memory.h ├── memory_inline.h ├── memory_stream.h ├── scsi_controller.cpp ├── scsi_controller.h ├── scsi_controller_inline.h ├── sf2_mapper.cpp ├── sf2_mapper.h ├── types.h ├── vgm_recorder.cpp └── vgm_recorder.h └── tests ├── .gitignore ├── Makefile ├── Makefile.sources ├── README.md ├── RSJparser.tcc └── main.cpp /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/geargrafx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.github/workflows/geargrafx.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/README.md -------------------------------------------------------------------------------- /backers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/backers.md -------------------------------------------------------------------------------- /platforms/bsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/bsd/Makefile -------------------------------------------------------------------------------- /platforms/libretro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/Makefile -------------------------------------------------------------------------------- /platforms/libretro/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/Makefile.common -------------------------------------------------------------------------------- /platforms/libretro/geargrafx.libretro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/geargrafx.libretro -------------------------------------------------------------------------------- /platforms/libretro/geargrafx_libretro.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/geargrafx_libretro.info -------------------------------------------------------------------------------- /platforms/libretro/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/jni/Android.mk -------------------------------------------------------------------------------- /platforms/libretro/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/jni/Application.mk -------------------------------------------------------------------------------- /platforms/libretro/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/libretro.cpp -------------------------------------------------------------------------------- /platforms/libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/libretro.h -------------------------------------------------------------------------------- /platforms/libretro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/libretro/link.T -------------------------------------------------------------------------------- /platforms/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/linux/Makefile -------------------------------------------------------------------------------- /platforms/macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/macos/Info.plist -------------------------------------------------------------------------------- /platforms/macos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/macos/Makefile -------------------------------------------------------------------------------- /platforms/macos/app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/macos/app.entitlements -------------------------------------------------------------------------------- /platforms/macos/fullscreen.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/macos/fullscreen.mm -------------------------------------------------------------------------------- /platforms/macos/generate_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/macos/generate_icon.sh -------------------------------------------------------------------------------- /platforms/macos/iconfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/macos/iconfile.icns -------------------------------------------------------------------------------- /platforms/macos/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/macos/image.png -------------------------------------------------------------------------------- /platforms/macos/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "${0%/*}" 3 | ./geargrafx -------------------------------------------------------------------------------- /platforms/shared/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/README.txt -------------------------------------------------------------------------------- /platforms/shared/dependencies/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/glad/glad.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/fonts/IconsMaterialDesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/fonts/IconsMaterialDesign.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/fonts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/fonts/Makefile -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/fonts/MaterialIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/fonts/MaterialIcons.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/fonts/RobotoMedium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/fonts/RobotoMedium.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imconfig.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_internal.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/implot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/implot.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/implot.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/implot_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/implot_demo.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/implot_internal.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/implot_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/implot_items.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/LICENSE.txt -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/README.md -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/dr_libs/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/dr_libs/dr_flac.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/libchdr/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/libchdr/bitstream.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/libchdr/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/libchdr/cdrom.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/libchdr/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/libchdr/chd.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/libchdr/chdconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/libchdr/chdconfig.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/libchdr/coretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/libchdr/coretypes.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/libchdr/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/libchdr/flac.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/include/libchdr/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/include/libchdr/huffman.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/pkg-config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/pkg-config.pc.in -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/src/libchdr_bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/src/libchdr_bitstream.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/src/libchdr_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/src/libchdr_cdrom.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/src/libchdr_chd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/src/libchdr_chd.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/src/libchdr_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/src/libchdr_flac.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/src/libchdr_huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/src/libchdr_huffman.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/libchdr/src/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/libchdr/src/link.T -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/Asm/arm64/7zAsm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/Asm/arm64/7zAsm.S -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/Asm/arm64/LzmaDecOpt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/Asm/arm64/LzmaDecOpt.S -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/Asm/x86/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/Asm/x86/7zAsm.asm -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/Asm/x86/LzmaDecOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/Asm/x86/LzmaDecOpt.asm -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/LICENSE -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/7zTypes.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/7zWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/7zWindows.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/Alloc.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/Bra.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/Compiler.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/CpuArch.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/Delta.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/LzFind.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/LzHash.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/Lzma86.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/LzmaDec.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/LzmaEnc.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/Precomp.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/RotateDefs.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/include/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/include/Sort.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/Alloc.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/Bra.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/Bra86.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/BraIA64.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/CpuArch.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/Delta.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/LzFind.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/Lzma86Dec.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/LzmaDec.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/LzmaEnc.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/lzma/src/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/lzma/src/Sort.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/mINI/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/mINI/ini.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/miniz/miniz.c -------------------------------------------------------------------------------- /platforms/shared/dependencies/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/miniz/miniz.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/nfd/nfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/nfd/nfd.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/nfd/nfd_cocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/nfd/nfd_cocoa.mm -------------------------------------------------------------------------------- /platforms/shared/dependencies/nfd/nfd_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/nfd/nfd_gtk.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/nfd/nfd_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/nfd/nfd_sdl2.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/nfd/nfd_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/nfd/nfd_win.cpp -------------------------------------------------------------------------------- /platforms/shared/dependencies/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/stb/stb_image_write.h -------------------------------------------------------------------------------- /platforms/shared/dependencies/zstd/zstddeclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/dependencies/zstd/zstddeclib.c -------------------------------------------------------------------------------- /platforms/shared/desktop/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/application.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/application.h -------------------------------------------------------------------------------- /platforms/shared/desktop/backers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/backers.h -------------------------------------------------------------------------------- /platforms/shared/desktop/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/config.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/config.h -------------------------------------------------------------------------------- /platforms/shared/desktop/emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/emu.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/emu.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_actions.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_actions.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_adpcm.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_adpcm.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_cdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_cdrom.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_cdrom.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_cdrom_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_cdrom_audio.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_cdrom_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_cdrom_audio.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_constants.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_disassembler.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_disassembler.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6202.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6202.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6202.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6202.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6260.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6260.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6270.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6270.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6270.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6270.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6280.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_huc6280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_huc6280.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_memeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_memeditor.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_memeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_memeditor.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_memory.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_memory.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_psg.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_psg.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_text.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_trace_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_trace_logger.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_debug_trace_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_debug_trace_logger.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_filedialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_filedialogs.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_filedialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_filedialogs.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_hes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_hes.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_hes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_hes.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_menus.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_menus.h -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_popups.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/gui_popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/gui_popups.h -------------------------------------------------------------------------------- /platforms/shared/desktop/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/keyboard.h -------------------------------------------------------------------------------- /platforms/shared/desktop/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/license.h -------------------------------------------------------------------------------- /platforms/shared/desktop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/main.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/renderer.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/renderer.h -------------------------------------------------------------------------------- /platforms/shared/desktop/sound_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/sound_queue.cpp -------------------------------------------------------------------------------- /platforms/shared/desktop/sound_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/sound_queue.h -------------------------------------------------------------------------------- /platforms/shared/desktop/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/desktop/utils.h -------------------------------------------------------------------------------- /platforms/shared/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/gamecontrollerdb.txt -------------------------------------------------------------------------------- /platforms/shared/makefiles/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/makefiles/Makefile.common -------------------------------------------------------------------------------- /platforms/shared/makefiles/Makefile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/shared/makefiles/Makefile.sources -------------------------------------------------------------------------------- /platforms/windows/Geargrafx.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/Geargrafx.manifest -------------------------------------------------------------------------------- /platforms/windows/Geargrafx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/Geargrafx.rc -------------------------------------------------------------------------------- /platforms/windows/Geargrafx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/Geargrafx.sln -------------------------------------------------------------------------------- /platforms/windows/Geargrafx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/Geargrafx.vcxproj -------------------------------------------------------------------------------- /platforms/windows/Geargrafx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/Geargrafx.vcxproj.filters -------------------------------------------------------------------------------- /platforms/windows/dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | !*.dll 2 | !*.exe 3 | ![Rr]elease*/ 4 | ![Bb]in 5 | -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/BUGS.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/COPYING.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/README-SDL.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/README.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/WhatsNew.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config-version.cmake -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config.cmake -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-android.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-cmake.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-directfb.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-dynapi.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-emscripten.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-gdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-gdk.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-gesture.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-git.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-hg.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-ios.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-kmsbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-kmsbsd.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-linux.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-macos.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-n3ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-n3ds.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-nacl.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-ngage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-ngage.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-os2.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-pandora.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-platforms.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-porting.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-ps2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-ps2.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-psp.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-riscos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-riscos.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-touch.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-versions.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-visualc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-visualc.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-vita.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-wince.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-windows.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-winrt.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/doxyfile -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/release_checklist.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_assert.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_atomic.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_audio.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_bits.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_blendmode.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_clipboard.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_config.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_egl.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_endian.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_error.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_events.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_filesystem.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gesture.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_guid.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_haptic.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hidapi.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hints.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_joystick.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keyboard.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keycode.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_loadso.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_locale.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_log.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_main.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_messagebox.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_metal.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_misc.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mouse.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mutex.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_name.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_pixels.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_platform.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_power.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_quit.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rect.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_render.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_revision.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rwops.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_scancode.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_sensor.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_shape.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_stdinc.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_surface.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_system.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_syswm.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_assert.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_common.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_compare.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_font.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_harness.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_images.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_log.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_md5.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_memory.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_random.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_thread.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_timer.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_touch.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_types.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_version.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_video.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_vulkan.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/begin_code.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/close_code.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.dll -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2main.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2test.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /platforms/windows/iconfile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/iconfile.ico -------------------------------------------------------------------------------- /platforms/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/platforms/windows/resource.h -------------------------------------------------------------------------------- /src/adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/adpcm.cpp -------------------------------------------------------------------------------- /src/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/adpcm.h -------------------------------------------------------------------------------- /src/adpcm_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/adpcm_inline.h -------------------------------------------------------------------------------- /src/arcade_card_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/arcade_card_mapper.cpp -------------------------------------------------------------------------------- /src/arcade_card_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/arcade_card_mapper.h -------------------------------------------------------------------------------- /src/arcade_card_mapper_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/arcade_card_mapper_inline.h -------------------------------------------------------------------------------- /src/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/audio.cpp -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/audio_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/audio_inline.h -------------------------------------------------------------------------------- /src/bit_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/bit_ops.h -------------------------------------------------------------------------------- /src/cdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom.cpp -------------------------------------------------------------------------------- /src/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom.h -------------------------------------------------------------------------------- /src/cdrom_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_audio.cpp -------------------------------------------------------------------------------- /src/cdrom_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_audio.h -------------------------------------------------------------------------------- /src/cdrom_audio_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_audio_inline.h -------------------------------------------------------------------------------- /src/cdrom_chd_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_chd_image.cpp -------------------------------------------------------------------------------- /src/cdrom_chd_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_chd_image.h -------------------------------------------------------------------------------- /src/cdrom_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_common.h -------------------------------------------------------------------------------- /src/cdrom_cuebin_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_cuebin_image.cpp -------------------------------------------------------------------------------- /src/cdrom_cuebin_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_cuebin_image.h -------------------------------------------------------------------------------- /src/cdrom_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_image.cpp -------------------------------------------------------------------------------- /src/cdrom_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_image.h -------------------------------------------------------------------------------- /src/cdrom_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_inline.h -------------------------------------------------------------------------------- /src/cdrom_media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_media.cpp -------------------------------------------------------------------------------- /src/cdrom_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_media.h -------------------------------------------------------------------------------- /src/cdrom_media_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/cdrom_media_inline.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/common.h -------------------------------------------------------------------------------- /src/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/crc.h -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/game_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/game_db.h -------------------------------------------------------------------------------- /src/geargrafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/geargrafx.h -------------------------------------------------------------------------------- /src/geargrafx_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/geargrafx_core.cpp -------------------------------------------------------------------------------- /src/geargrafx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/geargrafx_core.h -------------------------------------------------------------------------------- /src/geargrafx_core_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/geargrafx_core_inline.h -------------------------------------------------------------------------------- /src/huc6202.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6202.cpp -------------------------------------------------------------------------------- /src/huc6202.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6202.h -------------------------------------------------------------------------------- /src/huc6202_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6202_inline.h -------------------------------------------------------------------------------- /src/huc6260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6260.cpp -------------------------------------------------------------------------------- /src/huc6260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6260.h -------------------------------------------------------------------------------- /src/huc6260_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6260_inline.h -------------------------------------------------------------------------------- /src/huc6270.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6270.cpp -------------------------------------------------------------------------------- /src/huc6270.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6270.h -------------------------------------------------------------------------------- /src/huc6270_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6270_defines.h -------------------------------------------------------------------------------- /src/huc6270_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6270_inline.h -------------------------------------------------------------------------------- /src/huc6280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280.cpp -------------------------------------------------------------------------------- /src/huc6280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280.h -------------------------------------------------------------------------------- /src/huc6280_functors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_functors.cpp -------------------------------------------------------------------------------- /src/huc6280_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_inline.h -------------------------------------------------------------------------------- /src/huc6280_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_names.h -------------------------------------------------------------------------------- /src/huc6280_opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_opcodes.cpp -------------------------------------------------------------------------------- /src/huc6280_opcodes_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_opcodes_inline.h -------------------------------------------------------------------------------- /src/huc6280_psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_psg.cpp -------------------------------------------------------------------------------- /src/huc6280_psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_psg.h -------------------------------------------------------------------------------- /src/huc6280_psg_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_psg_inline.h -------------------------------------------------------------------------------- /src/huc6280_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_registers.h -------------------------------------------------------------------------------- /src/huc6280_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/huc6280_timing.h -------------------------------------------------------------------------------- /src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/input.cpp -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/input.h -------------------------------------------------------------------------------- /src/input_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/input_inline.h -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/log.h -------------------------------------------------------------------------------- /src/mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/mapper.cpp -------------------------------------------------------------------------------- /src/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/mapper.h -------------------------------------------------------------------------------- /src/mb128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/mb128.cpp -------------------------------------------------------------------------------- /src/mb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/mb128.h -------------------------------------------------------------------------------- /src/mb128_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/mb128_inline.h -------------------------------------------------------------------------------- /src/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/media.cpp -------------------------------------------------------------------------------- /src/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/media.h -------------------------------------------------------------------------------- /src/media_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/media_inline.h -------------------------------------------------------------------------------- /src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/memory.cpp -------------------------------------------------------------------------------- /src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/memory.h -------------------------------------------------------------------------------- /src/memory_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/memory_inline.h -------------------------------------------------------------------------------- /src/memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/memory_stream.h -------------------------------------------------------------------------------- /src/scsi_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/scsi_controller.cpp -------------------------------------------------------------------------------- /src/scsi_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/scsi_controller.h -------------------------------------------------------------------------------- /src/scsi_controller_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/scsi_controller_inline.h -------------------------------------------------------------------------------- /src/sf2_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/sf2_mapper.cpp -------------------------------------------------------------------------------- /src/sf2_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/sf2_mapper.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/types.h -------------------------------------------------------------------------------- /src/vgm_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/vgm_recorder.cpp -------------------------------------------------------------------------------- /src/vgm_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/src/vgm_recorder.h -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Makefile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/tests/Makefile.sources -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/RSJparser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/tests/RSJparser.tcc -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Geargrafx/HEAD/tests/main.cpp --------------------------------------------------------------------------------