git subrepo clone https://github.com/libretro/libretro-common.git deps/libretro-common
authorPaul Cercueil <paul@crapouillou.net>
Sun, 9 Jul 2023 12:38:25 +0000 (14:38 +0200)
committerPaul Cercueil <paul@crapouillou.net>
Sun, 23 Jul 2023 17:44:28 +0000 (19:44 +0200)
commit3719602cbe883fb394a71353e20a10a4a306e814
tree550ebf56a80ea4e6845433933e6ca6f5be5a0eea
parent8659d7fd2cdb11f63724ead0997f47f4c694f8c2
git subrepo clone https://github.com/libretro/libretro-common.git deps/libretro-common

subrepo:
  subdir:   "deps/libretro-common"
  merged:   "86d5e4128c"
upstream:
  origin:   "https://github.com/libretro/libretro-common.git"
  branch:   "master"
  commit:   "86d5e4128c"
git-subrepo:
  version:  "0.4.3"
  origin:   "https://github.com/ingydotnet/git-subrepo.git"
  commit:   "2f68596"
393 files changed:
deps/libretro-common/.gitignore [new file with mode: 0644]
deps/libretro-common/.gitrepo [new file with mode: 0644]
deps/libretro-common/Makefile.test [new file with mode: 0644]
deps/libretro-common/audio/audio_mix.c [new file with mode: 0644]
deps/libretro-common/audio/audio_mixer.c [new file with mode: 0644]
deps/libretro-common/audio/conversion/float_to_s16.c [new file with mode: 0644]
deps/libretro-common/audio/conversion/float_to_s16_neon.S [new file with mode: 0644]
deps/libretro-common/audio/conversion/float_to_s16_neon.c [new file with mode: 0644]
deps/libretro-common/audio/conversion/mono_to_stereo_float.c [new file with mode: 0644]
deps/libretro-common/audio/conversion/s16_to_float.c [new file with mode: 0644]
deps/libretro-common/audio/conversion/s16_to_float_neon.S [new file with mode: 0644]
deps/libretro-common/audio/conversion/s16_to_float_neon.c [new file with mode: 0644]
deps/libretro-common/audio/conversion/stereo_to_mono_float.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filter.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/BassBoost.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/ChipTune-Lowpass.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/ChipTuneEnhance.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Chorus.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Crystalizer.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/EQ.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Echo.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/EchoReverb.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/HighShelfDampen.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/IIR.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/LowPassCPS.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Makefile [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Mono.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Panning.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Phaser.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Reverb.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Tremolo.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/Vibrato.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/WahWah.dsp [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/chorus.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/configure [new file with mode: 0755]
deps/libretro-common/audio/dsp_filters/crystalizer.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/echo.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/eq.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/fft/fft.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/fft/fft.h [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/iir.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/link.T [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/panning.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/phaser.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/reverb.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/tremolo.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/vibrato.c [new file with mode: 0644]
deps/libretro-common/audio/dsp_filters/wahwah.c [new file with mode: 0644]
deps/libretro-common/audio/resampler/audio_resampler.c [new file with mode: 0644]
deps/libretro-common/audio/resampler/drivers/nearest_resampler.c [new file with mode: 0644]
deps/libretro-common/audio/resampler/drivers/sinc_resampler.c [new file with mode: 0644]
deps/libretro-common/audio/resampler/drivers/sinc_resampler_neon.S [new file with mode: 0644]
deps/libretro-common/cdrom/cdrom.c [new file with mode: 0644]
deps/libretro-common/compat/compat_fnmatch.c [new file with mode: 0644]
deps/libretro-common/compat/compat_getopt.c [new file with mode: 0644]
deps/libretro-common/compat/compat_ifaddrs.c [new file with mode: 0644]
deps/libretro-common/compat/compat_posix_string.c [new file with mode: 0644]
deps/libretro-common/compat/compat_snprintf.c [new file with mode: 0644]
deps/libretro-common/compat/compat_strcasestr.c [new file with mode: 0644]
deps/libretro-common/compat/compat_strl.c [new file with mode: 0644]
deps/libretro-common/compat/compat_strldup.c [new file with mode: 0644]
deps/libretro-common/compat/compat_vscprintf.c [new file with mode: 0644]
deps/libretro-common/compat/fopen_utf8.c [new file with mode: 0644]
deps/libretro-common/crt/include/string.h [new file with mode: 0644]
deps/libretro-common/crt/string.c [new file with mode: 0644]
deps/libretro-common/dynamic/dylib.c [new file with mode: 0644]
deps/libretro-common/encodings/encoding_base64.c [new file with mode: 0644]
deps/libretro-common/encodings/encoding_crc32.c [new file with mode: 0644]
deps/libretro-common/encodings/encoding_utf.c [new file with mode: 0644]
deps/libretro-common/features/features_cpu.c [new file with mode: 0644]
deps/libretro-common/file/archive_file.c [new file with mode: 0644]
deps/libretro-common/file/archive_file_7z.c [new file with mode: 0644]
deps/libretro-common/file/archive_file_zlib.c [new file with mode: 0644]
deps/libretro-common/file/config_file.c [new file with mode: 0644]
deps/libretro-common/file/config_file_userdata.c [new file with mode: 0644]
deps/libretro-common/file/file_path.c [new file with mode: 0644]
deps/libretro-common/file/file_path_io.c [new file with mode: 0644]
deps/libretro-common/file/nbio/nbio_intf.c [new file with mode: 0644]
deps/libretro-common/file/nbio/nbio_linux.c [new file with mode: 0644]
deps/libretro-common/file/nbio/nbio_orbis.c [new file with mode: 0644]
deps/libretro-common/file/nbio/nbio_stdio.c [new file with mode: 0644]
deps/libretro-common/file/nbio/nbio_unixmmap.c [new file with mode: 0644]
deps/libretro-common/file/nbio/nbio_windowsmmap.c [new file with mode: 0644]
deps/libretro-common/file/retro_dirent.c [new file with mode: 0644]
deps/libretro-common/formats/bmp/rbmp.c [new file with mode: 0644]
deps/libretro-common/formats/bmp/rbmp_encode.c [new file with mode: 0644]
deps/libretro-common/formats/cdfs/cdfs.c [new file with mode: 0644]
deps/libretro-common/formats/image_texture.c [new file with mode: 0644]
deps/libretro-common/formats/image_transfer.c [new file with mode: 0644]
deps/libretro-common/formats/jpeg/rjpeg.c [new file with mode: 0644]
deps/libretro-common/formats/json/rjson.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_bitstream.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_cdrom.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_chd.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_flac.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_flac_codec.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_huffman.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_lzma.c [new file with mode: 0644]
deps/libretro-common/formats/libchdr/libchdr_zlib.c [new file with mode: 0644]
deps/libretro-common/formats/logiqx_dat/logiqx_dat.c [new file with mode: 0644]
deps/libretro-common/formats/m3u/m3u_file.c [new file with mode: 0644]
deps/libretro-common/formats/png/rpng.c [new file with mode: 0644]
deps/libretro-common/formats/png/rpng_encode.c [new file with mode: 0644]
deps/libretro-common/formats/png/rpng_internal.h [new file with mode: 0644]
deps/libretro-common/formats/tga/rtga.c [new file with mode: 0644]
deps/libretro-common/formats/wav/rwav.c [new file with mode: 0644]
deps/libretro-common/formats/xml/rxml.c [new file with mode: 0644]
deps/libretro-common/formats/xml/test/Makefile [new file with mode: 0644]
deps/libretro-common/formats/xml/test/rxml_test.c [new file with mode: 0644]
deps/libretro-common/gfx/gl_capabilities.c [new file with mode: 0644]
deps/libretro-common/gfx/scaler/pixconv.c [new file with mode: 0644]
deps/libretro-common/gfx/scaler/scaler.c [new file with mode: 0644]
deps/libretro-common/gfx/scaler/scaler_filter.c [new file with mode: 0644]
deps/libretro-common/gfx/scaler/scaler_int.c [new file with mode: 0644]
deps/libretro-common/glsm/glsm.c [new file with mode: 0644]
deps/libretro-common/glsym/README.md [new file with mode: 0644]
deps/libretro-common/glsym/glgen.py [new file with mode: 0755]
deps/libretro-common/glsym/glsym_es2.c [new file with mode: 0644]
deps/libretro-common/glsym/glsym_es3.c [new file with mode: 0644]
deps/libretro-common/glsym/glsym_gl.c [new file with mode: 0644]
deps/libretro-common/glsym/rglgen.c [new file with mode: 0644]
deps/libretro-common/glsym/rglgen.py [new file with mode: 0755]
deps/libretro-common/glsym/xglgen.py [new file with mode: 0644]
deps/libretro-common/hash/lrc_hash.c [new file with mode: 0644]
deps/libretro-common/include/array/rbuf.h [new file with mode: 0644]
deps/libretro-common/include/array/rhmap.h [new file with mode: 0644]
deps/libretro-common/include/audio/audio_mix.h [new file with mode: 0644]
deps/libretro-common/include/audio/audio_mixer.h [new file with mode: 0644]
deps/libretro-common/include/audio/audio_resampler.h [new file with mode: 0644]
deps/libretro-common/include/audio/conversion/dual_mono.h [new file with mode: 0644]
deps/libretro-common/include/audio/conversion/float_to_s16.h [new file with mode: 0644]
deps/libretro-common/include/audio/conversion/s16_to_float.h [new file with mode: 0644]
deps/libretro-common/include/audio/dsp_filter.h [new file with mode: 0644]
deps/libretro-common/include/boolean.h [new file with mode: 0644]
deps/libretro-common/include/cdrom/cdrom.h [new file with mode: 0644]
deps/libretro-common/include/clamping.h [new file with mode: 0644]
deps/libretro-common/include/compat/apple_compat.h [new file with mode: 0644]
deps/libretro-common/include/compat/fnmatch.h [new file with mode: 0644]
deps/libretro-common/include/compat/fopen_utf8.h [new file with mode: 0644]
deps/libretro-common/include/compat/getopt.h [new file with mode: 0644]
deps/libretro-common/include/compat/ifaddrs.h [new file with mode: 0644]
deps/libretro-common/include/compat/intrinsics.h [new file with mode: 0644]
deps/libretro-common/include/compat/msvc.h [new file with mode: 0644]
deps/libretro-common/include/compat/msvc/stdint.h [new file with mode: 0644]
deps/libretro-common/include/compat/posix_string.h [new file with mode: 0644]
deps/libretro-common/include/compat/strcasestr.h [new file with mode: 0644]
deps/libretro-common/include/compat/strl.h [new file with mode: 0644]
deps/libretro-common/include/compat/zconf.h [new file with mode: 0644]
deps/libretro-common/include/compat/zconf.h.in [new file with mode: 0644]
deps/libretro-common/include/compat/zlib.h [new file with mode: 0644]
deps/libretro-common/include/compat/zlib/zconf.h [new file with mode: 0644]
deps/libretro-common/include/compat/zlib/zconf.h.in [new file with mode: 0644]
deps/libretro-common/include/compat/zlib/zlib.h [new file with mode: 0644]
deps/libretro-common/include/compat/zlib/zutil.h [new file with mode: 0644]
deps/libretro-common/include/compat/zutil.h [new file with mode: 0644]
deps/libretro-common/include/defines/cocoa_defines.h [new file with mode: 0644]
deps/libretro-common/include/defines/d3d_defines.h [new file with mode: 0644]
deps/libretro-common/include/defines/gx_defines.h [new file with mode: 0644]
deps/libretro-common/include/defines/ps3_defines.h [new file with mode: 0644]
deps/libretro-common/include/defines/ps4_defines.h [new file with mode: 0644]
deps/libretro-common/include/defines/psp_defines.h [new file with mode: 0644]
deps/libretro-common/include/dynamic/dylib.h [new file with mode: 0644]
deps/libretro-common/include/encodings/base64.h [new file with mode: 0644]
deps/libretro-common/include/encodings/crc32.h [new file with mode: 0644]
deps/libretro-common/include/encodings/utf.h [new file with mode: 0644]
deps/libretro-common/include/encodings/win32.h [new file with mode: 0644]
deps/libretro-common/include/fastcpy.h [new file with mode: 0644]
deps/libretro-common/include/features/features_cpu.h [new file with mode: 0644]
deps/libretro-common/include/file/archive_file.h [new file with mode: 0644]
deps/libretro-common/include/file/config_file.h [new file with mode: 0644]
deps/libretro-common/include/file/config_file_userdata.h [new file with mode: 0644]
deps/libretro-common/include/file/file_path.h [new file with mode: 0644]
deps/libretro-common/include/file/nbio.h [new file with mode: 0644]
deps/libretro-common/include/filters.h [new file with mode: 0644]
deps/libretro-common/include/formats/cdfs.h [new file with mode: 0644]
deps/libretro-common/include/formats/image.h [new file with mode: 0644]
deps/libretro-common/include/formats/logiqx_dat.h [new file with mode: 0644]
deps/libretro-common/include/formats/m3u_file.h [new file with mode: 0644]
deps/libretro-common/include/formats/rbmp.h [new file with mode: 0644]
deps/libretro-common/include/formats/rjpeg.h [new file with mode: 0644]
deps/libretro-common/include/formats/rjson.h [new file with mode: 0644]
deps/libretro-common/include/formats/rjson_helpers.h [new file with mode: 0644]
deps/libretro-common/include/formats/rpng.h [new file with mode: 0644]
deps/libretro-common/include/formats/rtga.h [new file with mode: 0644]
deps/libretro-common/include/formats/rwav.h [new file with mode: 0644]
deps/libretro-common/include/formats/rxml.h [new file with mode: 0644]
deps/libretro-common/include/gfx/gl_capabilities.h [new file with mode: 0644]
deps/libretro-common/include/gfx/math/matrix_3x3.h [new file with mode: 0644]
deps/libretro-common/include/gfx/math/matrix_4x4.h [new file with mode: 0644]
deps/libretro-common/include/gfx/math/vector_2.h [new file with mode: 0644]
deps/libretro-common/include/gfx/math/vector_3.h [new file with mode: 0644]
deps/libretro-common/include/gfx/math/vector_4.h [new file with mode: 0644]
deps/libretro-common/include/gfx/scaler/filter.h [new file with mode: 0644]
deps/libretro-common/include/gfx/scaler/pixconv.h [new file with mode: 0644]
deps/libretro-common/include/gfx/scaler/scaler.h [new file with mode: 0644]
deps/libretro-common/include/gfx/scaler/scaler_int.h [new file with mode: 0644]
deps/libretro-common/include/gfx/video_frame.h [new file with mode: 0644]
deps/libretro-common/include/glsm/glsm.h [new file with mode: 0644]
deps/libretro-common/include/glsm/glsmsym.h [new file with mode: 0644]
deps/libretro-common/include/glsym/glsym.h [new file with mode: 0644]
deps/libretro-common/include/glsym/glsym_es2.h [new file with mode: 0644]
deps/libretro-common/include/glsym/glsym_es3.h [new file with mode: 0644]
deps/libretro-common/include/glsym/glsym_gl.h [new file with mode: 0644]
deps/libretro-common/include/glsym/rglgen.h [new file with mode: 0644]
deps/libretro-common/include/glsym/rglgen_headers.h [new file with mode: 0644]
deps/libretro-common/include/glsym/rglgen_private_headers.h [new file with mode: 0644]
deps/libretro-common/include/glsym/switch/nx_gl.h [new file with mode: 0644]
deps/libretro-common/include/glsym/switch/nx_glsym.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/bitstream.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/cdrom.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/chd.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/coretypes.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/flac.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/huffman.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/libchdr_zlib.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/lzma.h [new file with mode: 0644]
deps/libretro-common/include/libchdr/minmax.h [new file with mode: 0644]
deps/libretro-common/include/libco.h [new file with mode: 0644]
deps/libretro-common/include/libretro.h [new file with mode: 0644]
deps/libretro-common/include/libretro_d3d.h [new file with mode: 0644]
deps/libretro-common/include/libretro_dspfilter.h [new file with mode: 0644]
deps/libretro-common/include/libretro_gskit_ps2.h [new file with mode: 0644]
deps/libretro-common/include/libretro_vulkan.h [new file with mode: 0644]
deps/libretro-common/include/lists/dir_list.h [new file with mode: 0644]
deps/libretro-common/include/lists/file_list.h [new file with mode: 0644]
deps/libretro-common/include/lists/linked_list.h [new file with mode: 0644]
deps/libretro-common/include/lists/nested_list.h [new file with mode: 0644]
deps/libretro-common/include/lists/string_list.h [new file with mode: 0644]
deps/libretro-common/include/lrc_hash.h [new file with mode: 0644]
deps/libretro-common/include/math/complex.h [new file with mode: 0644]
deps/libretro-common/include/math/float_minmax.h [new file with mode: 0644]
deps/libretro-common/include/math/fxp.h [new file with mode: 0644]
deps/libretro-common/include/media/media_detect_cd.h [new file with mode: 0644]
deps/libretro-common/include/memalign.h [new file with mode: 0644]
deps/libretro-common/include/memmap.h [new file with mode: 0644]
deps/libretro-common/include/net/net_compat.h [new file with mode: 0644]
deps/libretro-common/include/net/net_http.h [new file with mode: 0644]
deps/libretro-common/include/net/net_http_parse.h [new file with mode: 0644]
deps/libretro-common/include/net/net_ifinfo.h [new file with mode: 0644]
deps/libretro-common/include/net/net_socket.h [new file with mode: 0644]
deps/libretro-common/include/net/net_socket_ssl.h [new file with mode: 0644]
deps/libretro-common/include/playlists/label_sanitization.h [new file with mode: 0644]
deps/libretro-common/include/queues/fifo_queue.h [new file with mode: 0644]
deps/libretro-common/include/queues/generic_queue.h [new file with mode: 0644]
deps/libretro-common/include/queues/message_queue.h [new file with mode: 0644]
deps/libretro-common/include/queues/task_queue.h [new file with mode: 0644]
deps/libretro-common/include/retro_assert.h [new file with mode: 0644]
deps/libretro-common/include/retro_common.h [new file with mode: 0644]
deps/libretro-common/include/retro_common_api.h [new file with mode: 0644]
deps/libretro-common/include/retro_dirent.h [new file with mode: 0644]
deps/libretro-common/include/retro_endianness.h [new file with mode: 0644]
deps/libretro-common/include/retro_environment.h [new file with mode: 0644]
deps/libretro-common/include/retro_inline.h [new file with mode: 0644]
deps/libretro-common/include/retro_math.h [new file with mode: 0644]
deps/libretro-common/include/retro_miscellaneous.h [new file with mode: 0644]
deps/libretro-common/include/retro_stat.h [new file with mode: 0644]
deps/libretro-common/include/retro_timers.h [new file with mode: 0644]
deps/libretro-common/include/rthreads/async_job.h [new file with mode: 0644]
deps/libretro-common/include/rthreads/rthreads.h [new file with mode: 0644]
deps/libretro-common/include/rthreads/tpool.h [new file with mode: 0644]
deps/libretro-common/include/streams/chd_stream.h [new file with mode: 0644]
deps/libretro-common/include/streams/file_stream.h [new file with mode: 0644]
deps/libretro-common/include/streams/file_stream_transforms.h [new file with mode: 0644]
deps/libretro-common/include/streams/interface_stream.h [new file with mode: 0644]
deps/libretro-common/include/streams/memory_stream.h [new file with mode: 0644]
deps/libretro-common/include/streams/network_stream.h [new file with mode: 0644]
deps/libretro-common/include/streams/rzip_stream.h [new file with mode: 0644]
deps/libretro-common/include/streams/stdin_stream.h [new file with mode: 0644]
deps/libretro-common/include/streams/trans_stream.h [new file with mode: 0644]
deps/libretro-common/include/string/stdstring.h [new file with mode: 0644]
deps/libretro-common/include/time/rtime.h [new file with mode: 0644]
deps/libretro-common/include/utils/md5.h [new file with mode: 0644]
deps/libretro-common/include/vfs/vfs.h [new file with mode: 0644]
deps/libretro-common/include/vfs/vfs_implementation.h [new file with mode: 0644]
deps/libretro-common/include/vfs/vfs_implementation_cdrom.h [new file with mode: 0644]
deps/libretro-common/include/vulkan/vulkan_symbol_wrapper.h [new file with mode: 0644]
deps/libretro-common/libco/aarch64.c [new file with mode: 0644]
deps/libretro-common/libco/amd64.c [new file with mode: 0644]
deps/libretro-common/libco/armeabi.c [new file with mode: 0644]
deps/libretro-common/libco/fiber.c [new file with mode: 0644]
deps/libretro-common/libco/genode.cpp [new file with mode: 0644]
deps/libretro-common/libco/libco.c [new file with mode: 0644]
deps/libretro-common/libco/ppc.c [new file with mode: 0644]
deps/libretro-common/libco/ps2.c [new file with mode: 0644]
deps/libretro-common/libco/ps3.S [new file with mode: 0644]
deps/libretro-common/libco/psp1.c [new file with mode: 0644]
deps/libretro-common/libco/psp2.c [new file with mode: 0644]
deps/libretro-common/libco/scefiber.c [new file with mode: 0644]
deps/libretro-common/libco/sjlj.c [new file with mode: 0644]
deps/libretro-common/libco/ucontext.c [new file with mode: 0644]
deps/libretro-common/libco/x86.c [new file with mode: 0644]
deps/libretro-common/lists/dir_list.c [new file with mode: 0644]
deps/libretro-common/lists/file_list.c [new file with mode: 0644]
deps/libretro-common/lists/linked_list.c [new file with mode: 0644]
deps/libretro-common/lists/nested_list.c [new file with mode: 0644]
deps/libretro-common/lists/string_list.c [new file with mode: 0644]
deps/libretro-common/lists/vector_list.c [new file with mode: 0644]
deps/libretro-common/media/media_detect_cd.c [new file with mode: 0644]
deps/libretro-common/memmap/memalign.c [new file with mode: 0644]
deps/libretro-common/memmap/memmap.c [new file with mode: 0644]
deps/libretro-common/net/net_compat.c [new file with mode: 0644]
deps/libretro-common/net/net_http.c [new file with mode: 0644]
deps/libretro-common/net/net_http_parse.c [new file with mode: 0644]
deps/libretro-common/net/net_ifinfo.c [new file with mode: 0644]
deps/libretro-common/net/net_socket.c [new file with mode: 0644]
deps/libretro-common/net/net_socket_ssl_bear.c [new file with mode: 0644]
deps/libretro-common/net/net_socket_ssl_mbed.c [new file with mode: 0644]
deps/libretro-common/playlists/label_sanitization.c [new file with mode: 0644]
deps/libretro-common/queues/fifo_queue.c [new file with mode: 0644]
deps/libretro-common/queues/generic_queue.c [new file with mode: 0644]
deps/libretro-common/queues/message_queue.c [new file with mode: 0644]
deps/libretro-common/queues/task_queue.c [new file with mode: 0644]
deps/libretro-common/rthreads/ctr_pthread.h [new file with mode: 0644]
deps/libretro-common/rthreads/gx_pthread.h [new file with mode: 0644]
deps/libretro-common/rthreads/psp_pthread.h [new file with mode: 0644]
deps/libretro-common/rthreads/rthreads.c [new file with mode: 0644]
deps/libretro-common/rthreads/tpool.c [new file with mode: 0644]
deps/libretro-common/rthreads/wiiu_pthread.h [new file with mode: 0644]
deps/libretro-common/rthreads/xenon_sdl_threads.c [new file with mode: 0644]
deps/libretro-common/samples/compat/fnmatch/Makefile [new file with mode: 0644]
deps/libretro-common/samples/compat/fnmatch/compat_fnmatch_test.c [new file with mode: 0644]
deps/libretro-common/samples/compat/snprintf/Makefile [new file with mode: 0644]
deps/libretro-common/samples/compat/snprintf/snprintf_test.c [new file with mode: 0644]
deps/libretro-common/samples/compat/strl/Makefile [new file with mode: 0644]
deps/libretro-common/samples/compat/strl/strl_test.c [new file with mode: 0644]
deps/libretro-common/samples/core_options/README.md [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_categories/conversion_scripts/core_option_regex.py [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_categories/conversion_scripts/v1_to_v2_converter.py [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_categories/libretro_core_options.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_categories/libretro_core_options_intl.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_default/libretro_core_options.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_default/libretro_core_options_intl.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_hide_option/libretro_core_options.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_hide_option/libretro_core_options_intl.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/libretro_core_options.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/libretro_core_options_intl.h [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/.github/workflows/crowdin_intl.yml [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/.github/workflows/crowdin_prep.yml [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/crowdin.yml [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/instructions.txt [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/intl/.gitignore [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/intl/core_opt_translation.py [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/intl/core_option_regex.py [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/intl/crowdin_intl.py [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/intl/crowdin_prep.py [new file with mode: 0644]
deps/libretro-common/samples/core_options/example_translation/translation scripts/intl/v1_to_v2_converter.py [new file with mode: 0644]
deps/libretro-common/samples/file/config_file/Makefile [new file with mode: 0644]
deps/libretro-common/samples/file/config_file/config_file_test.c [new file with mode: 0644]
deps/libretro-common/samples/file/nbio/Makefile [new file with mode: 0644]
deps/libretro-common/samples/file/nbio/nbio_test.c [new file with mode: 0644]
deps/libretro-common/samples/formats/png/Makefile [new file with mode: 0644]
deps/libretro-common/samples/formats/png/rpng_test.c [new file with mode: 0644]
deps/libretro-common/samples/formats/xml/Makefile [new file with mode: 0644]
deps/libretro-common/samples/formats/xml/rxml_test.c [new file with mode: 0644]
deps/libretro-common/samples/net/Makefile [new file with mode: 0644]
deps/libretro-common/samples/net/http_test [new file with mode: 0644]
deps/libretro-common/samples/net/net_http_parse_test.c [new file with mode: 0644]
deps/libretro-common/samples/net/net_http_test.c [new file with mode: 0644]
deps/libretro-common/samples/net/net_ifinfo [new file with mode: 0644]
deps/libretro-common/samples/net/net_ifinfo_test.c [new file with mode: 0644]
deps/libretro-common/samples/net/udp-test.c [new file with mode: 0644]
deps/libretro-common/samples/streams/rzip/Makefile [new file with mode: 0644]
deps/libretro-common/samples/streams/rzip/rzip.c [new file with mode: 0644]
deps/libretro-common/samples/utils/Makefile [new file with mode: 0644]
deps/libretro-common/samples/utils/crc32.c [new file with mode: 0644]
deps/libretro-common/samples/utils/md5_test.c [new file with mode: 0644]
deps/libretro-common/samples/utils/sha1_main.c [new file with mode: 0644]
deps/libretro-common/streams/chd_stream.c [new file with mode: 0644]
deps/libretro-common/streams/file_stream.c [new file with mode: 0644]
deps/libretro-common/streams/file_stream_transforms.c [new file with mode: 0644]
deps/libretro-common/streams/interface_stream.c [new file with mode: 0644]
deps/libretro-common/streams/memory_stream.c [new file with mode: 0644]
deps/libretro-common/streams/network_stream.c [new file with mode: 0644]
deps/libretro-common/streams/rzip_stream.c [new file with mode: 0644]
deps/libretro-common/streams/stdin_stream.c [new file with mode: 0644]
deps/libretro-common/streams/trans_stream.c [new file with mode: 0644]
deps/libretro-common/streams/trans_stream_pipe.c [new file with mode: 0644]
deps/libretro-common/streams/trans_stream_zlib.c [new file with mode: 0644]
deps/libretro-common/string/stdstring.c [new file with mode: 0644]
deps/libretro-common/test/hash/test_hash.c [new file with mode: 0644]
deps/libretro-common/test/lists/test_linked_list.c [new file with mode: 0644]
deps/libretro-common/test/queues/test_generic_queue.c [new file with mode: 0644]
deps/libretro-common/test/string/test_stdstring.c [new file with mode: 0644]
deps/libretro-common/test/utils/test_utils.c [new file with mode: 0644]
deps/libretro-common/time/rtime.c [new file with mode: 0644]
deps/libretro-common/utils/debugbreak/debugbreak.c [new file with mode: 0644]
deps/libretro-common/utils/djb2.c [new file with mode: 0644]
deps/libretro-common/utils/md5.c [new file with mode: 0644]
deps/libretro-common/utils/sha1.c [new file with mode: 0644]
deps/libretro-common/vfs/vfs_implementation.c [new file with mode: 0644]
deps/libretro-common/vfs/vfs_implementation_cdrom.c [new file with mode: 0644]
deps/libretro-common/vfs/vfs_implementation_uwp.cpp [new file with mode: 0644]
deps/libretro-common/vulkan/vulkan_symbol_wrapper.c [new file with mode: 0644]