├── .cirrus.yml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── android.yml │ ├── c-cpp.yml │ ├── crowdin_prep.yml │ ├── crowdin_translate.yml │ ├── switch.yml │ └── uwp.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── core ├── .gitignore ├── README.md ├── archive │ ├── 7zArchive.cpp │ ├── 7zArchive.h │ ├── ZipArchive.cpp │ ├── ZipArchive.h │ ├── archive.cpp │ ├── archive.h │ ├── rzip.cpp │ └── rzip.h ├── build.h ├── cfg │ ├── cfg.cpp │ ├── cfg.h │ ├── cl.cpp │ ├── ini.cpp │ ├── ini.h │ ├── option.cpp │ └── option.h ├── cheats.cpp ├── cheats.h ├── debug │ ├── debug_agent.h │ ├── gdb_server.cpp │ └── gdb_server.h ├── deps │ ├── chdpsr │ │ ├── cdipsr.cpp │ │ └── cdipsr.h │ ├── dirent │ │ └── dirent.h │ ├── ggpo │ │ ├── include │ │ │ └── ggponet.h │ │ └── lib │ │ │ └── ggpo │ │ │ ├── backends │ │ │ ├── backend.h │ │ │ ├── p2p.cpp │ │ │ ├── p2p.h │ │ │ ├── spectator.cpp │ │ │ ├── spectator.h │ │ │ ├── synctest.cpp │ │ │ └── synctest.h │ │ │ ├── bitvector.cpp │ │ │ ├── bitvector.h │ │ │ ├── game_input.cpp │ │ │ ├── game_input.h │ │ │ ├── ggpo_poll.h │ │ │ ├── ggpo_types.h │ │ │ ├── input_queue.cpp │ │ │ ├── input_queue.h │ │ │ ├── log.cpp │ │ │ ├── log.h │ │ │ ├── main.cpp │ │ │ ├── network │ │ │ ├── udp.cpp │ │ │ ├── udp.h │ │ │ ├── udp_msg.h │ │ │ ├── udp_proto.cpp │ │ │ └── udp_proto.h │ │ │ ├── platform_linux.cpp │ │ │ ├── platform_linux.h │ │ │ ├── platform_windows.cpp │ │ │ ├── platform_windows.h │ │ │ ├── poll.cpp │ │ │ ├── ring_buffer.h │ │ │ ├── static_buffer.h │ │ │ ├── sync.cpp │ │ │ ├── sync.h │ │ │ ├── timesync.cpp │ │ │ └── timesync.h │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── copying.txt │ │ ├── doc │ │ │ ├── api │ │ │ │ ├── a00001_source.html │ │ │ │ ├── a00002_source.html │ │ │ │ ├── a00003_source.html │ │ │ │ ├── a00004_source.html │ │ │ │ ├── a00005_source.html │ │ │ │ ├── a00006_source.html │ │ │ │ ├── a00007.html │ │ │ │ ├── a00007_source.html │ │ │ │ ├── a00008.html │ │ │ │ ├── a00008_source.html │ │ │ │ ├── a00009.html │ │ │ │ ├── a00009_source.html │ │ │ │ ├── a00010.html │ │ │ │ ├── a00010_source.html │ │ │ │ ├── a00011.html │ │ │ │ ├── a00011_source.html │ │ │ │ ├── a00012.html │ │ │ │ ├── a00012_source.html │ │ │ │ ├── a00013.html │ │ │ │ ├── a00013_source.html │ │ │ │ ├── a00014.html │ │ │ │ ├── a00014_source.html │ │ │ │ ├── a00015.html │ │ │ │ ├── a00015_source.html │ │ │ │ ├── a00016.html │ │ │ │ ├── a00016_source.html │ │ │ │ ├── a00017.html │ │ │ │ ├── a00017_source.html │ │ │ │ ├── a00018.html │ │ │ │ ├── a00018_source.html │ │ │ │ ├── a00019_source.html │ │ │ │ ├── a00020_source.html │ │ │ │ ├── a00021.html │ │ │ │ ├── a00021_source.html │ │ │ │ ├── a00022.html │ │ │ │ ├── a00022_source.html │ │ │ │ ├── a00023.html │ │ │ │ ├── a00023_source.html │ │ │ │ ├── a00024.html │ │ │ │ ├── a00024_source.html │ │ │ │ ├── a00025.html │ │ │ │ ├── a00025_source.html │ │ │ │ ├── a00026.html │ │ │ │ ├── a00026_source.html │ │ │ │ ├── a00027.html │ │ │ │ ├── a00027_source.html │ │ │ │ ├── a00028.html │ │ │ │ ├── a00028_source.html │ │ │ │ ├── a00029.html │ │ │ │ ├── a00029_source.html │ │ │ │ ├── a00030.html │ │ │ │ ├── a00030_source.html │ │ │ │ ├── a00031.html │ │ │ │ ├── a00031_source.html │ │ │ │ ├── a00032.html │ │ │ │ ├── a00032_source.html │ │ │ │ ├── a00033.html │ │ │ │ ├── a00033_source.html │ │ │ │ ├── a00034.html │ │ │ │ ├── a00034_source.html │ │ │ │ ├── a00035_source.html │ │ │ │ ├── a00036.html │ │ │ │ ├── a00036_source.html │ │ │ │ ├── a00037.html │ │ │ │ ├── a00037_source.html │ │ │ │ ├── a00038.html │ │ │ │ ├── a00038_source.html │ │ │ │ ├── a00039.html │ │ │ │ ├── a00039_source.html │ │ │ │ ├── a00040.html │ │ │ │ ├── a00040_source.html │ │ │ │ ├── a00041.html │ │ │ │ ├── a00041_source.html │ │ │ │ ├── a00042.html │ │ │ │ ├── a00042_source.html │ │ │ │ ├── a00043.html │ │ │ │ ├── a00043_source.html │ │ │ │ ├── a00044.html │ │ │ │ ├── a00044_source.html │ │ │ │ ├── a00045.html │ │ │ │ ├── a00045_source.html │ │ │ │ ├── a00046.html │ │ │ │ ├── a00046_source.html │ │ │ │ ├── a00047_source.html │ │ │ │ ├── a00048.html │ │ │ │ ├── a00048_source.html │ │ │ │ ├── a00049.html │ │ │ │ ├── a00049_source.html │ │ │ │ ├── a00050.html │ │ │ │ ├── a00050_source.html │ │ │ │ ├── a00051.html │ │ │ │ ├── a00051_source.html │ │ │ │ ├── a00052.html │ │ │ │ ├── a00052_source.html │ │ │ │ ├── a00053.html │ │ │ │ ├── a00053_source.html │ │ │ │ ├── a00054.html │ │ │ │ ├── a00054_source.html │ │ │ │ ├── a00055.html │ │ │ │ ├── a00055_source.html │ │ │ │ ├── a00056.html │ │ │ │ ├── a00056_source.html │ │ │ │ ├── a00057.html │ │ │ │ ├── a00057_source.html │ │ │ │ ├── a00058.html │ │ │ │ ├── a00058_source.html │ │ │ │ ├── a00059.html │ │ │ │ ├── a00059_source.html │ │ │ │ ├── a00060.html │ │ │ │ ├── a00060_source.html │ │ │ │ ├── a00061.html │ │ │ │ ├── a00061_source.html │ │ │ │ ├── a00062.html │ │ │ │ ├── a00062_source.html │ │ │ │ ├── a00063.html │ │ │ │ ├── a00063_source.html │ │ │ │ ├── a00064.html │ │ │ │ ├── a00064_source.html │ │ │ │ ├── a00065.html │ │ │ │ ├── a00065_source.html │ │ │ │ ├── a00066.html │ │ │ │ ├── a00066_source.html │ │ │ │ ├── a00067.html │ │ │ │ ├── a00067_source.html │ │ │ │ ├── a00068.html │ │ │ │ ├── a00068_source.html │ │ │ │ ├── a00069.html │ │ │ │ ├── a00069_source.html │ │ │ │ ├── a00070.html │ │ │ │ ├── a00070_source.html │ │ │ │ ├── a00071.html │ │ │ │ ├── a00071_source.html │ │ │ │ ├── a00072.html │ │ │ │ ├── a00072_source.html │ │ │ │ ├── a00073.html │ │ │ │ ├── a00073_source.html │ │ │ │ ├── a00074.html │ │ │ │ ├── a00074_source.html │ │ │ │ ├── a00075.html │ │ │ │ ├── a00075_source.html │ │ │ │ ├── a00076.html │ │ │ │ ├── a00076_source.html │ │ │ │ ├── a00077.html │ │ │ │ ├── a00077_source.html │ │ │ │ ├── a00078.html │ │ │ │ ├── a00078_source.html │ │ │ │ ├── a00079.html │ │ │ │ ├── a00079_source.html │ │ │ │ ├── a00080.html │ │ │ │ ├── a00080_source.html │ │ │ │ ├── a00081.html │ │ │ │ ├── a00081_source.html │ │ │ │ ├── a00082.html │ │ │ │ ├── a00082_source.html │ │ │ │ ├── a00083.html │ │ │ │ ├── a00083_source.html │ │ │ │ ├── a00084.html │ │ │ │ ├── a00084_source.html │ │ │ │ ├── a00085.html │ │ │ │ ├── a00085_source.html │ │ │ │ ├── a00086.html │ │ │ │ ├── a00086_source.html │ │ │ │ ├── a00087.html │ │ │ │ ├── a00087_source.html │ │ │ │ ├── a00088.html │ │ │ │ ├── a00088_source.html │ │ │ │ ├── a00089.html │ │ │ │ ├── a00089_source.html │ │ │ │ ├── a00090.html │ │ │ │ ├── a00090_source.html │ │ │ │ ├── a00091.html │ │ │ │ ├── a00091_source.html │ │ │ │ ├── a00092.html │ │ │ │ ├── a00092_source.html │ │ │ │ ├── a00093.html │ │ │ │ ├── a00093_source.html │ │ │ │ ├── a00094.html │ │ │ │ ├── a00094_source.html │ │ │ │ ├── a00095_source.html │ │ │ │ ├── a00096.html │ │ │ │ ├── a00096_source.html │ │ │ │ ├── a00097.html │ │ │ │ ├── a00097_source.html │ │ │ │ ├── a00098.html │ │ │ │ ├── a00098_source.html │ │ │ │ ├── a00099.html │ │ │ │ ├── a00099_source.html │ │ │ │ ├── a00100.html │ │ │ │ ├── a00100_source.html │ │ │ │ ├── a00101.html │ │ │ │ ├── a00101_source.html │ │ │ │ ├── a00102.html │ │ │ │ ├── a00102_source.html │ │ │ │ ├── a00103.html │ │ │ │ ├── a00103_source.html │ │ │ │ ├── a00104.html │ │ │ │ ├── a00104_source.html │ │ │ │ ├── a00105.html │ │ │ │ ├── a00105_source.html │ │ │ │ ├── a00106.html │ │ │ │ ├── a00106_source.html │ │ │ │ ├── a00107.html │ │ │ │ ├── a00107_source.html │ │ │ │ ├── a00108.html │ │ │ │ ├── a00108_source.html │ │ │ │ ├── a00109.html │ │ │ │ ├── a00109_source.html │ │ │ │ ├── a00110.html │ │ │ │ ├── a00110_source.html │ │ │ │ ├── a00111.html │ │ │ │ ├── a00111_source.html │ │ │ │ ├── a00112.html │ │ │ │ ├── a00112_source.html │ │ │ │ ├── a00113.html │ │ │ │ ├── a00113_source.html │ │ │ │ ├── a00114.html │ │ │ │ ├── a00114_source.html │ │ │ │ ├── a00115.html │ │ │ │ ├── a00115_source.html │ │ │ │ ├── a00116.html │ │ │ │ ├── a00116_source.html │ │ │ │ ├── a00117.html │ │ │ │ ├── a00117_source.html │ │ │ │ ├── a00118.html │ │ │ │ ├── a00118_source.html │ │ │ │ ├── a00119.html │ │ │ │ ├── a00119_source.html │ │ │ │ ├── a00120.html │ │ │ │ ├── a00120_source.html │ │ │ │ ├── a00121.html │ │ │ │ ├── a00121_source.html │ │ │ │ ├── a00122.html │ │ │ │ ├── a00122_source.html │ │ │ │ ├── a00123.html │ │ │ │ ├── a00123_source.html │ │ │ │ ├── a00124_source.html │ │ │ │ ├── a00125.html │ │ │ │ ├── a00125_source.html │ │ │ │ ├── a00126.html │ │ │ │ ├── a00126_source.html │ │ │ │ ├── a00127.html │ │ │ │ ├── a00127_source.html │ │ │ │ ├── a00128.html │ │ │ │ ├── a00128_source.html │ │ │ │ ├── a00129.html │ │ │ │ ├── a00129_source.html │ │ │ │ ├── a00130.html │ │ │ │ ├── a00130_source.html │ │ │ │ ├── a00131.html │ │ │ │ ├── a00131_source.html │ │ │ │ ├── a00132.html │ │ │ │ ├── a00132_source.html │ │ │ │ ├── a00133.html │ │ │ │ ├── a00133_source.html │ │ │ │ ├── a00134.html │ │ │ │ ├── a00134_source.html │ │ │ │ ├── a00135.html │ │ │ │ ├── a00135_source.html │ │ │ │ ├── a00136.html │ │ │ │ ├── a00136_source.html │ │ │ │ ├── a00137.html │ │ │ │ ├── a00137_source.html │ │ │ │ ├── a00138.html │ │ │ │ ├── a00138_source.html │ │ │ │ ├── a00139.html │ │ │ │ ├── a00139_source.html │ │ │ │ ├── a00140.html │ │ │ │ ├── a00140_source.html │ │ │ │ ├── a00141.html │ │ │ │ ├── a00141_source.html │ │ │ │ ├── a00142.html │ │ │ │ ├── a00142_source.html │ │ │ │ ├── a00143.html │ │ │ │ ├── a00143_source.html │ │ │ │ ├── a00144.html │ │ │ │ ├── a00144_source.html │ │ │ │ ├── a00145.html │ │ │ │ ├── a00145_source.html │ │ │ │ ├── a00146.html │ │ │ │ ├── a00146_source.html │ │ │ │ ├── a00147.html │ │ │ │ ├── a00147_source.html │ │ │ │ ├── a00148.html │ │ │ │ ├── a00148_source.html │ │ │ │ ├── a00149.html │ │ │ │ ├── a00149_source.html │ │ │ │ ├── a00150.html │ │ │ │ ├── a00150_source.html │ │ │ │ ├── a00151.html │ │ │ │ ├── a00151_source.html │ │ │ │ ├── a00152.html │ │ │ │ ├── a00152_source.html │ │ │ │ ├── a00153_source.html │ │ │ │ ├── a00154.html │ │ │ │ ├── a00154_source.html │ │ │ │ ├── a00155.html │ │ │ │ ├── a00155_source.html │ │ │ │ ├── a00156.html │ │ │ │ ├── a00156_source.html │ │ │ │ ├── a00157.html │ │ │ │ ├── a00157_source.html │ │ │ │ ├── a00158.html │ │ │ │ ├── a00158_source.html │ │ │ │ ├── a00159.html │ │ │ │ ├── a00159_source.html │ │ │ │ ├── a00160.html │ │ │ │ ├── a00160_source.html │ │ │ │ ├── a00161.html │ │ │ │ ├── a00161_source.html │ │ │ │ ├── a00162.html │ │ │ │ ├── a00162_source.html │ │ │ │ ├── a00163_source.html │ │ │ │ ├── a00164_source.html │ │ │ │ ├── a00165.html │ │ │ │ ├── a00165_source.html │ │ │ │ ├── a00166.html │ │ │ │ ├── a00166_source.html │ │ │ │ ├── a00167.html │ │ │ │ ├── a00167_source.html │ │ │ │ ├── a00168.html │ │ │ │ ├── a00168_source.html │ │ │ │ ├── a00169.html │ │ │ │ ├── a00169_source.html │ │ │ │ ├── a00170.html │ │ │ │ ├── a00170_source.html │ │ │ │ ├── a00171.html │ │ │ │ ├── a00171_source.html │ │ │ │ ├── a00172.html │ │ │ │ ├── a00172_source.html │ │ │ │ ├── a00173.html │ │ │ │ ├── a00173_source.html │ │ │ │ ├── a00174.html │ │ │ │ ├── a00174_source.html │ │ │ │ ├── a00175.html │ │ │ │ ├── a00175_source.html │ │ │ │ ├── a00176.html │ │ │ │ ├── a00176_source.html │ │ │ │ ├── a00177.html │ │ │ │ ├── a00177_source.html │ │ │ │ ├── a00178.html │ │ │ │ ├── a00178_source.html │ │ │ │ ├── a00179.html │ │ │ │ ├── a00179_source.html │ │ │ │ ├── a00180.html │ │ │ │ ├── a00180_source.html │ │ │ │ ├── a00181.html │ │ │ │ ├── a00181_source.html │ │ │ │ ├── a00182.html │ │ │ │ ├── a00182_source.html │ │ │ │ ├── a00183.html │ │ │ │ ├── a00183_source.html │ │ │ │ ├── a00184.html │ │ │ │ ├── a00184_source.html │ │ │ │ ├── a00185.html │ │ │ │ ├── a00185_source.html │ │ │ │ ├── a00186.html │ │ │ │ ├── a00186_source.html │ │ │ │ ├── a00187.html │ │ │ │ ├── a00187_source.html │ │ │ │ ├── a00188.html │ │ │ │ ├── a00188_source.html │ │ │ │ ├── a00189.html │ │ │ │ ├── a00189_source.html │ │ │ │ ├── a00190.html │ │ │ │ ├── a00190_source.html │ │ │ │ ├── a00191.html │ │ │ │ ├── a00191_source.html │ │ │ │ ├── a00192.html │ │ │ │ ├── a00192_source.html │ │ │ │ ├── a00193.html │ │ │ │ ├── a00193_source.html │ │ │ │ ├── a00194.html │ │ │ │ ├── a00194_source.html │ │ │ │ ├── a00195.html │ │ │ │ ├── a00195_source.html │ │ │ │ ├── a00196.html │ │ │ │ ├── a00196_source.html │ │ │ │ ├── a00197.html │ │ │ │ ├── a00197_source.html │ │ │ │ ├── a00198.html │ │ │ │ ├── a00198_source.html │ │ │ │ ├── a00199.html │ │ │ │ ├── a00199_source.html │ │ │ │ ├── a00200.html │ │ │ │ ├── a00200_source.html │ │ │ │ ├── a00201.html │ │ │ │ ├── a00201_source.html │ │ │ │ ├── a00202.html │ │ │ │ ├── a00202_source.html │ │ │ │ ├── a00203.html │ │ │ │ ├── a00203_source.html │ │ │ │ ├── a00204.html │ │ │ │ ├── a00204_source.html │ │ │ │ ├── a00205.html │ │ │ │ ├── a00205_source.html │ │ │ │ ├── a00206.html │ │ │ │ ├── a00206_source.html │ │ │ │ ├── a00207.html │ │ │ │ ├── a00207_source.html │ │ │ │ ├── a00208.html │ │ │ │ ├── a00208_source.html │ │ │ │ ├── a00209.html │ │ │ │ ├── a00209_source.html │ │ │ │ ├── a00210.html │ │ │ │ ├── a00210_source.html │ │ │ │ ├── a00211.html │ │ │ │ ├── a00211_source.html │ │ │ │ ├── a00212.html │ │ │ │ ├── a00212_source.html │ │ │ │ ├── a00213.html │ │ │ │ ├── a00213_source.html │ │ │ │ ├── a00214.html │ │ │ │ ├── a00214_source.html │ │ │ │ ├── a00215.html │ │ │ │ ├── a00215_source.html │ │ │ │ ├── a00216.html │ │ │ │ ├── a00216_source.html │ │ │ │ ├── a00217.html │ │ │ │ ├── a00217_source.html │ │ │ │ ├── a00218.html │ │ │ │ ├── a00218_source.html │ │ │ │ ├── a00219.html │ │ │ │ ├── a00219_source.html │ │ │ │ ├── a00220.html │ │ │ │ ├── a00220_source.html │ │ │ │ ├── a00221.html │ │ │ │ ├── a00221_source.html │ │ │ │ ├── a00222.html │ │ │ │ ├── a00222_source.html │ │ │ │ ├── a00223.html │ │ │ │ ├── a00223_source.html │ │ │ │ ├── a00224.html │ │ │ │ ├── a00224_source.html │ │ │ │ ├── a00225.html │ │ │ │ ├── a00225_source.html │ │ │ │ ├── a00226.html │ │ │ │ ├── a00226_source.html │ │ │ │ ├── a00227.html │ │ │ │ ├── a00227_source.html │ │ │ │ ├── a00228.html │ │ │ │ ├── a00228_source.html │ │ │ │ ├── a00229.html │ │ │ │ ├── a00229_source.html │ │ │ │ ├── a00230.html │ │ │ │ ├── a00230_source.html │ │ │ │ ├── a00231.html │ │ │ │ ├── a00231_source.html │ │ │ │ ├── a00232.html │ │ │ │ ├── a00232_source.html │ │ │ │ ├── a00233.html │ │ │ │ ├── a00233_source.html │ │ │ │ ├── a00234.html │ │ │ │ ├── a00234_source.html │ │ │ │ ├── a00235.html │ │ │ │ ├── a00235_source.html │ │ │ │ ├── a00241.html │ │ │ │ ├── a00242.html │ │ │ │ ├── a00243.html │ │ │ │ ├── a00244.html │ │ │ │ ├── a00245.html │ │ │ │ ├── a00246.html │ │ │ │ ├── a00247.html │ │ │ │ ├── a00248.html │ │ │ │ ├── a00249.html │ │ │ │ ├── a00250.html │ │ │ │ ├── a00251.html │ │ │ │ ├── a00252.html │ │ │ │ ├── a00253.html │ │ │ │ ├── a00254.html │ │ │ │ ├── a00255.html │ │ │ │ ├── a00256.html │ │ │ │ ├── a00257.html │ │ │ │ ├── a00258.html │ │ │ │ ├── a00259.html │ │ │ │ ├── a00260.html │ │ │ │ ├── a00261.html │ │ │ │ ├── a00262.html │ │ │ │ ├── a00263.html │ │ │ │ ├── a00264.html │ │ │ │ ├── a00265.html │ │ │ │ ├── a00266.html │ │ │ │ ├── a00267.html │ │ │ │ ├── a00268.html │ │ │ │ ├── a00269.html │ │ │ │ ├── a00270.html │ │ │ │ ├── a00271.html │ │ │ │ ├── a00272.html │ │ │ │ ├── a00273.html │ │ │ │ ├── a00274.html │ │ │ │ ├── a00275.html │ │ │ │ ├── a00276.html │ │ │ │ ├── a00277.html │ │ │ │ ├── a00278.html │ │ │ │ ├── a00279.html │ │ │ │ ├── a00280.html │ │ │ │ ├── a00281.html │ │ │ │ ├── a00282.html │ │ │ │ ├── a00283.html │ │ │ │ ├── a00284.html │ │ │ │ ├── a00285.html │ │ │ │ ├── a00286.html │ │ │ │ ├── a00287.html │ │ │ │ ├── a00288.html │ │ │ │ ├── a00289.html │ │ │ │ ├── a00290.html │ │ │ │ ├── a00291.html │ │ │ │ ├── a00292.html │ │ │ │ ├── a00293.html │ │ │ │ ├── a00294.html │ │ │ │ ├── a00295.html │ │ │ │ ├── a00296.html │ │ │ │ ├── a00297.html │ │ │ │ ├── a00298.html │ │ │ │ ├── a00299.html │ │ │ │ ├── a00300.html │ │ │ │ ├── a00301.html │ │ │ │ ├── a00302.html │ │ │ │ ├── a00303.html │ │ │ │ ├── a00304.html │ │ │ │ ├── a00305.html │ │ │ │ ├── a00306.html │ │ │ │ ├── a00307.html │ │ │ │ ├── a00308.html │ │ │ │ ├── a00309.html │ │ │ │ ├── a00310.html │ │ │ │ ├── a00311.html │ │ │ │ ├── a00312.html │ │ │ │ ├── a00313.html │ │ │ │ ├── a00314.html │ │ │ │ ├── a00315.html │ │ │ │ ├── a00316.html │ │ │ │ ├── a00317.html │ │ │ │ ├── a00318.html │ │ │ │ ├── a00319.html │ │ │ │ ├── a00320.html │ │ │ │ ├── a00321.html │ │ │ │ ├── a00322.html │ │ │ │ ├── a00323.html │ │ │ │ ├── a00324.html │ │ │ │ ├── a00325.html │ │ │ │ ├── a00326.html │ │ │ │ ├── a00327.html │ │ │ │ ├── a00328.html │ │ │ │ ├── a00329.html │ │ │ │ ├── a00330.html │ │ │ │ ├── a00331.html │ │ │ │ ├── a00332.html │ │ │ │ ├── a00333.html │ │ │ │ ├── a00334.html │ │ │ │ ├── a00335.html │ │ │ │ ├── a00336.html │ │ │ │ ├── a00337.html │ │ │ │ ├── a00338.html │ │ │ │ ├── a00339.html │ │ │ │ ├── a00340.html │ │ │ │ ├── a00341.html │ │ │ │ ├── a00342.html │ │ │ │ ├── a00343.html │ │ │ │ ├── a00344.html │ │ │ │ ├── a00345.html │ │ │ │ ├── a00346.html │ │ │ │ ├── a00347.html │ │ │ │ ├── a00348.html │ │ │ │ ├── a00349.html │ │ │ │ ├── a00350.html │ │ │ │ ├── a00351.html │ │ │ │ ├── a00352.html │ │ │ │ ├── a00353.html │ │ │ │ ├── a00354.html │ │ │ │ ├── a00355.html │ │ │ │ ├── a00356.html │ │ │ │ ├── a00357.html │ │ │ │ ├── a00358.html │ │ │ │ ├── a00359.html │ │ │ │ ├── a00360.html │ │ │ │ ├── a00361.html │ │ │ │ ├── a00362.html │ │ │ │ ├── a00363.html │ │ │ │ ├── a00364.html │ │ │ │ ├── a00365.html │ │ │ │ ├── a00366.html │ │ │ │ ├── a00367.html │ │ │ │ ├── a00368.html │ │ │ │ ├── a00369.html │ │ │ │ ├── a00370.html │ │ │ │ ├── a00371.html │ │ │ │ ├── a00372.html │ │ │ │ ├── a00373.html │ │ │ │ ├── a00374.html │ │ │ │ ├── arrowdown.png │ │ │ │ ├── arrowright.png │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── dir_033f5edb0915b828d2c46ed4804e5503.html │ │ │ │ ├── dir_3a581ba30d25676e4b797b1f96d53b45.html │ │ │ │ ├── dir_44e5e654415abd9ca6fdeaddaff8565e.html │ │ │ │ ├── dir_4c6bd29c73fa4e5a2509e1c15f846751.html │ │ │ │ ├── dir_5189610d3ba09ec39b766fb99b34cd93.html │ │ │ │ ├── dir_6b66465792d005310484819a0eb0b0d3.html │ │ │ │ ├── dir_9e5fe034a00e89334fd5186c3e7db156.html │ │ │ │ ├── dir_a8bee7be44182a33f3820393ae0b105d.html │ │ │ │ ├── dir_cef2d71d502cb69a9252bca2297d9549.html │ │ │ │ ├── dir_d9496f0844b48bc7e53b5af8c99b9ab2.html │ │ │ │ ├── dir_f35778ec600a1b9bbc4524e62e226aa2.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── logo-mini.png │ │ │ │ ├── modules.html │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── search │ │ │ │ │ ├── all_0.html │ │ │ │ │ ├── all_0.js │ │ │ │ │ ├── all_1.html │ │ │ │ │ ├── all_1.js │ │ │ │ │ ├── all_10.html │ │ │ │ │ ├── all_10.js │ │ │ │ │ ├── all_11.html │ │ │ │ │ ├── all_11.js │ │ │ │ │ ├── all_12.html │ │ │ │ │ ├── all_12.js │ │ │ │ │ ├── all_13.html │ │ │ │ │ ├── all_13.js │ │ │ │ │ ├── all_14.html │ │ │ │ │ ├── all_14.js │ │ │ │ │ ├── all_15.html │ │ │ │ │ ├── all_15.js │ │ │ │ │ ├── all_16.html │ │ │ │ │ ├── all_16.js │ │ │ │ │ ├── all_2.html │ │ │ │ │ ├── all_2.js │ │ │ │ │ ├── all_3.html │ │ │ │ │ ├── all_3.js │ │ │ │ │ ├── all_4.html │ │ │ │ │ ├── all_4.js │ │ │ │ │ ├── all_5.html │ │ │ │ │ ├── all_5.js │ │ │ │ │ ├── all_6.html │ │ │ │ │ ├── all_6.js │ │ │ │ │ ├── all_7.html │ │ │ │ │ ├── all_7.js │ │ │ │ │ ├── all_8.html │ │ │ │ │ ├── all_8.js │ │ │ │ │ ├── all_9.html │ │ │ │ │ ├── all_9.js │ │ │ │ │ ├── all_a.html │ │ │ │ │ ├── all_a.js │ │ │ │ │ ├── all_b.html │ │ │ │ │ ├── all_b.js │ │ │ │ │ ├── all_c.html │ │ │ │ │ ├── all_c.js │ │ │ │ │ ├── all_d.html │ │ │ │ │ ├── all_d.js │ │ │ │ │ ├── all_e.html │ │ │ │ │ ├── all_e.js │ │ │ │ │ ├── all_f.html │ │ │ │ │ ├── all_f.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── files_0.html │ │ │ │ │ ├── files_0.js │ │ │ │ │ ├── files_1.html │ │ │ │ │ ├── files_1.js │ │ │ │ │ ├── files_10.html │ │ │ │ │ ├── files_10.js │ │ │ │ │ ├── files_11.html │ │ │ │ │ ├── files_11.js │ │ │ │ │ ├── files_12.html │ │ │ │ │ ├── files_12.js │ │ │ │ │ ├── files_13.html │ │ │ │ │ ├── files_13.js │ │ │ │ │ ├── files_14.html │ │ │ │ │ ├── files_14.js │ │ │ │ │ ├── files_2.html │ │ │ │ │ ├── files_2.js │ │ │ │ │ ├── files_3.html │ │ │ │ │ ├── files_3.js │ │ │ │ │ ├── files_4.html │ │ │ │ │ ├── files_4.js │ │ │ │ │ ├── files_5.html │ │ │ │ │ ├── files_5.js │ │ │ │ │ ├── files_6.html │ │ │ │ │ ├── files_6.js │ │ │ │ │ ├── files_7.html │ │ │ │ │ ├── files_7.js │ │ │ │ │ ├── files_8.html │ │ │ │ │ ├── files_8.js │ │ │ │ │ ├── files_9.html │ │ │ │ │ ├── files_9.js │ │ │ │ │ ├── files_a.html │ │ │ │ │ ├── files_a.js │ │ │ │ │ ├── files_b.html │ │ │ │ │ ├── files_b.js │ │ │ │ │ ├── files_c.html │ │ │ │ │ ├── files_c.js │ │ │ │ │ ├── files_d.html │ │ │ │ │ ├── files_d.js │ │ │ │ │ ├── files_e.html │ │ │ │ │ ├── files_e.js │ │ │ │ │ ├── files_f.html │ │ │ │ │ ├── files_f.js │ │ │ │ │ ├── functions_0.html │ │ │ │ │ ├── functions_0.js │ │ │ │ │ ├── functions_1.html │ │ │ │ │ ├── functions_1.js │ │ │ │ │ ├── functions_10.html │ │ │ │ │ ├── functions_10.js │ │ │ │ │ ├── functions_11.html │ │ │ │ │ ├── functions_11.js │ │ │ │ │ ├── functions_12.html │ │ │ │ │ ├── functions_12.js │ │ │ │ │ ├── functions_13.html │ │ │ │ │ ├── functions_13.js │ │ │ │ │ ├── functions_14.html │ │ │ │ │ ├── functions_14.js │ │ │ │ │ ├── functions_15.html │ │ │ │ │ ├── functions_15.js │ │ │ │ │ ├── functions_16.html │ │ │ │ │ ├── functions_16.js │ │ │ │ │ ├── functions_2.html │ │ │ │ │ ├── functions_2.js │ │ │ │ │ ├── functions_3.html │ │ │ │ │ ├── functions_3.js │ │ │ │ │ ├── functions_4.html │ │ │ │ │ ├── functions_4.js │ │ │ │ │ ├── functions_5.html │ │ │ │ │ ├── functions_5.js │ │ │ │ │ ├── functions_6.html │ │ │ │ │ ├── functions_6.js │ │ │ │ │ ├── functions_7.html │ │ │ │ │ ├── functions_7.js │ │ │ │ │ ├── functions_8.html │ │ │ │ │ ├── functions_8.js │ │ │ │ │ ├── functions_9.html │ │ │ │ │ ├── functions_9.js │ │ │ │ │ ├── functions_a.html │ │ │ │ │ ├── functions_a.js │ │ │ │ │ ├── functions_b.html │ │ │ │ │ ├── functions_b.js │ │ │ │ │ ├── functions_c.html │ │ │ │ │ ├── functions_c.js │ │ │ │ │ ├── functions_d.html │ │ │ │ │ ├── functions_d.js │ │ │ │ │ ├── functions_e.html │ │ │ │ │ ├── functions_e.js │ │ │ │ │ ├── functions_f.html │ │ │ │ │ ├── functions_f.js │ │ │ │ │ ├── groups_0.html │ │ │ │ │ ├── groups_0.js │ │ │ │ │ ├── groups_1.html │ │ │ │ │ ├── groups_1.js │ │ │ │ │ ├── groups_2.html │ │ │ │ │ ├── groups_2.js │ │ │ │ │ ├── groups_3.html │ │ │ │ │ ├── groups_3.js │ │ │ │ │ ├── groups_4.html │ │ │ │ │ ├── groups_4.js │ │ │ │ │ ├── groups_5.html │ │ │ │ │ ├── groups_5.js │ │ │ │ │ ├── groups_6.html │ │ │ │ │ ├── groups_6.js │ │ │ │ │ ├── groups_7.html │ │ │ │ │ ├── groups_7.js │ │ │ │ │ ├── groups_8.html │ │ │ │ │ ├── groups_8.js │ │ │ │ │ ├── groups_9.html │ │ │ │ │ ├── groups_9.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── pages_0.html │ │ │ │ │ ├── pages_0.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── searchdata.js │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ ├── typedefs_3.html │ │ │ │ │ ├── typedefs_3.js │ │ │ │ │ ├── typedefs_4.html │ │ │ │ │ ├── typedefs_4.js │ │ │ │ │ ├── typedefs_5.html │ │ │ │ │ ├── typedefs_5.js │ │ │ │ │ ├── typedefs_6.html │ │ │ │ │ ├── typedefs_6.js │ │ │ │ │ ├── typedefs_7.html │ │ │ │ │ ├── typedefs_7.js │ │ │ │ │ ├── typedefs_8.html │ │ │ │ │ ├── typedefs_8.js │ │ │ │ │ ├── typedefs_9.html │ │ │ │ │ ├── typedefs_9.js │ │ │ │ │ ├── typedefs_a.html │ │ │ │ │ ├── typedefs_a.js │ │ │ │ │ ├── typedefs_b.html │ │ │ │ │ ├── typedefs_b.js │ │ │ │ │ ├── typedefs_c.html │ │ │ │ │ ├── typedefs_c.js │ │ │ │ │ ├── typedefs_d.html │ │ │ │ │ └── typedefs_d.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ │ ├── man.doxy │ │ │ ├── manual.pdf │ │ │ ├── manual │ │ │ │ ├── frontpage1.png │ │ │ │ ├── frontpage2.png │ │ │ │ ├── g-truc.png │ │ │ │ ├── logo-mini.png │ │ │ │ ├── noise-perlin1.jpg │ │ │ │ ├── noise-perlin2.jpg │ │ │ │ ├── noise-perlin3.jpg │ │ │ │ ├── noise-perlin4.png │ │ │ │ ├── noise-perlin5.png │ │ │ │ ├── noise-perlin6.png │ │ │ │ ├── noise-simplex1.jpg │ │ │ │ ├── noise-simplex2.jpg │ │ │ │ ├── noise-simplex3.jpg │ │ │ │ ├── random-ballrand.png │ │ │ │ ├── random-circularrand.png │ │ │ │ ├── random-diskrand.png │ │ │ │ ├── random-gaussrand.png │ │ │ │ ├── random-linearrand.png │ │ │ │ ├── random-sphericalrand.png │ │ │ │ ├── references-cinder.png │ │ │ │ ├── references-glsl4book.jpg │ │ │ │ ├── references-leosfortune.jpeg │ │ │ │ ├── references-leosfortune2.jpg │ │ │ │ ├── references-opencloth1.png │ │ │ │ ├── references-opencloth3.png │ │ │ │ ├── references-outerra1.jpg │ │ │ │ ├── references-outerra2.jpg │ │ │ │ ├── references-outerra3.jpg │ │ │ │ └── references-outerra4.jpg │ │ │ └── theme │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── logo-mini.png │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ └── tab_s.png │ │ ├── glm │ │ │ ├── CMakeLists.txt │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ │ ├── _features.hpp │ │ │ │ ├── _fixes.hpp │ │ │ │ ├── _noise.hpp │ │ │ │ ├── _swizzle.hpp │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ ├── _vectorize.hpp │ │ │ │ ├── compute_common.hpp │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ ├── func_common.inl │ │ │ │ ├── func_common_simd.inl │ │ │ │ ├── func_exponential.inl │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ ├── func_geometric.inl │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ ├── func_integer.inl │ │ │ │ ├── func_integer_simd.inl │ │ │ │ ├── func_matrix.inl │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ ├── func_packing.inl │ │ │ │ ├── func_packing_simd.inl │ │ │ │ ├── func_trigonometric.inl │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ ├── func_vector_relational.inl │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ ├── glm.cpp │ │ │ │ ├── qualifier.hpp │ │ │ │ ├── setup.hpp │ │ │ │ ├── type_float.hpp │ │ │ │ ├── type_half.hpp │ │ │ │ ├── type_half.inl │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ ├── type_mat2x2.inl │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ ├── type_mat2x3.inl │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ ├── type_mat2x4.inl │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ ├── type_mat3x2.inl │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ ├── type_mat3x3.inl │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ ├── type_mat3x4.inl │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ ├── type_mat4x2.inl │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ ├── type_mat4x3.inl │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ ├── type_mat4x4.inl │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ ├── type_quat.hpp │ │ │ │ ├── type_quat.inl │ │ │ │ ├── type_quat_simd.inl │ │ │ │ ├── type_vec1.hpp │ │ │ │ ├── type_vec1.inl │ │ │ │ ├── type_vec2.hpp │ │ │ │ ├── type_vec2.inl │ │ │ │ ├── type_vec3.hpp │ │ │ │ ├── type_vec3.inl │ │ │ │ ├── type_vec4.hpp │ │ │ │ ├── type_vec4.inl │ │ │ │ └── type_vec4_simd.inl │ │ │ ├── exponential.hpp │ │ │ ├── ext.hpp │ │ │ ├── ext │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ ├── matrix_common.hpp │ │ │ │ ├── matrix_common.inl │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ ├── matrix_projection.hpp │ │ │ │ ├── matrix_projection.inl │ │ │ │ ├── matrix_relational.hpp │ │ │ │ ├── matrix_relational.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── quaternion_common.hpp │ │ │ │ ├── quaternion_common.inl │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ ├── quaternion_double.hpp │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ ├── quaternion_float.hpp │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ ├── quaternion_relational.inl │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ ├── quaternion_transform.inl │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ ├── scalar_common.hpp │ │ │ │ ├── scalar_common.inl │ │ │ │ ├── scalar_constants.hpp │ │ │ │ ├── scalar_constants.inl │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ ├── scalar_integer.hpp │ │ │ │ ├── scalar_integer.inl │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ ├── scalar_ulp.inl │ │ │ │ ├── vector_bool1.hpp │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ ├── vector_bool2.hpp │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ ├── vector_bool3.hpp │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ ├── vector_bool4.hpp │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ ├── vector_common.hpp │ │ │ │ ├── vector_common.inl │ │ │ │ ├── vector_double1.hpp │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ ├── vector_double2.hpp │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ ├── vector_double3.hpp │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ ├── vector_double4.hpp │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ ├── vector_float1.hpp │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ ├── vector_float2.hpp │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ ├── vector_float3.hpp │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ ├── vector_float4.hpp │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ ├── vector_int1.hpp │ │ │ │ ├── vector_int1_precision.hpp │ │ │ │ ├── vector_int2.hpp │ │ │ │ ├── vector_int2_precision.hpp │ │ │ │ ├── vector_int3.hpp │ │ │ │ ├── vector_int3_precision.hpp │ │ │ │ ├── vector_int4.hpp │ │ │ │ ├── vector_int4_precision.hpp │ │ │ │ ├── vector_integer.hpp │ │ │ │ ├── vector_integer.inl │ │ │ │ ├── vector_relational.hpp │ │ │ │ ├── vector_relational.inl │ │ │ │ ├── vector_uint1.hpp │ │ │ │ ├── vector_uint1_precision.hpp │ │ │ │ ├── vector_uint2.hpp │ │ │ │ ├── vector_uint2_precision.hpp │ │ │ │ ├── vector_uint3.hpp │ │ │ │ ├── vector_uint3_precision.hpp │ │ │ │ ├── vector_uint4.hpp │ │ │ │ ├── vector_uint4_precision.hpp │ │ │ │ ├── vector_ulp.hpp │ │ │ │ └── vector_ulp.inl │ │ │ ├── fwd.hpp │ │ │ ├── geometric.hpp │ │ │ ├── glm.hpp │ │ │ ├── gtc │ │ │ │ ├── bitfield.hpp │ │ │ │ ├── bitfield.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── constants.hpp │ │ │ │ ├── constants.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── epsilon.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── matrix_access.hpp │ │ │ │ ├── matrix_access.inl │ │ │ │ ├── matrix_integer.hpp │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ ├── matrix_inverse.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── noise.hpp │ │ │ │ ├── noise.inl │ │ │ │ ├── packing.hpp │ │ │ │ ├── packing.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── quaternion_simd.inl │ │ │ │ ├── random.hpp │ │ │ │ ├── random.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── reciprocal.inl │ │ │ │ ├── round.hpp │ │ │ │ ├── round.inl │ │ │ │ ├── type_aligned.hpp │ │ │ │ ├── type_precision.hpp │ │ │ │ ├── type_precision.inl │ │ │ │ ├── type_ptr.hpp │ │ │ │ ├── type_ptr.inl │ │ │ │ ├── ulp.hpp │ │ │ │ ├── ulp.inl │ │ │ │ └── vec1.hpp │ │ │ ├── gtx │ │ │ │ ├── associated_min_max.hpp │ │ │ │ ├── associated_min_max.inl │ │ │ │ ├── bit.hpp │ │ │ │ ├── bit.inl │ │ │ │ ├── closest_point.hpp │ │ │ │ ├── closest_point.inl │ │ │ │ ├── color_encoding.hpp │ │ │ │ ├── color_encoding.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ ├── common.hpp │ │ │ │ ├── common.inl │ │ │ │ ├── compatibility.hpp │ │ │ │ ├── compatibility.inl │ │ │ │ ├── component_wise.hpp │ │ │ │ ├── component_wise.inl │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ ├── dual_quaternion.inl │ │ │ │ ├── easing.hpp │ │ │ │ ├── easing.inl │ │ │ │ ├── euler_angles.hpp │ │ │ │ ├── euler_angles.inl │ │ │ │ ├── extend.hpp │ │ │ │ ├── extend.inl │ │ │ │ ├── extended_min_max.hpp │ │ │ │ ├── extended_min_max.inl │ │ │ │ ├── exterior_product.hpp │ │ │ │ ├── exterior_product.inl │ │ │ │ ├── fast_exponential.hpp │ │ │ │ ├── fast_exponential.inl │ │ │ │ ├── fast_square_root.hpp │ │ │ │ ├── fast_square_root.inl │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ ├── float_notmalize.inl │ │ │ │ ├── functions.hpp │ │ │ │ ├── functions.inl │ │ │ │ ├── gradient_paint.hpp │ │ │ │ ├── gradient_paint.inl │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ ├── hash.hpp │ │ │ │ ├── hash.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── intersect.hpp │ │ │ │ ├── intersect.inl │ │ │ │ ├── io.hpp │ │ │ │ ├── io.inl │ │ │ │ ├── log_base.hpp │ │ │ │ ├── log_base.inl │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ ├── matrix_decompose.inl │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ ├── matrix_operation.hpp │ │ │ │ ├── matrix_operation.inl │ │ │ │ ├── matrix_query.hpp │ │ │ │ ├── matrix_query.inl │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ ├── mixed_product.hpp │ │ │ │ ├── mixed_product.inl │ │ │ │ ├── norm.hpp │ │ │ │ ├── norm.inl │ │ │ │ ├── normal.hpp │ │ │ │ ├── normal.inl │ │ │ │ ├── normalize_dot.hpp │ │ │ │ ├── normalize_dot.inl │ │ │ │ ├── number_precision.hpp │ │ │ │ ├── number_precision.inl │ │ │ │ ├── optimum_pow.hpp │ │ │ │ ├── optimum_pow.inl │ │ │ │ ├── orthonormalize.hpp │ │ │ │ ├── orthonormalize.inl │ │ │ │ ├── perpendicular.hpp │ │ │ │ ├── perpendicular.inl │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ ├── polar_coordinates.inl │ │ │ │ ├── projection.hpp │ │ │ │ ├── projection.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── range.hpp │ │ │ │ ├── raw_data.hpp │ │ │ │ ├── raw_data.inl │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ ├── rotate_vector.hpp │ │ │ │ ├── rotate_vector.inl │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── spline.hpp │ │ │ │ ├── spline.inl │ │ │ │ ├── std_based_type.hpp │ │ │ │ ├── std_based_type.inl │ │ │ │ ├── string_cast.hpp │ │ │ │ ├── string_cast.inl │ │ │ │ ├── texture.hpp │ │ │ │ ├── texture.inl │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform.inl │ │ │ │ ├── transform2.hpp │ │ │ │ ├── transform2.inl │ │ │ │ ├── type_aligned.hpp │ │ │ │ ├── type_aligned.inl │ │ │ │ ├── type_trait.hpp │ │ │ │ ├── type_trait.inl │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ ├── vector_angle.hpp │ │ │ │ ├── vector_angle.inl │ │ │ │ ├── vector_query.hpp │ │ │ │ ├── vector_query.inl │ │ │ │ ├── wrap.hpp │ │ │ │ └── wrap.inl │ │ │ ├── integer.hpp │ │ │ ├── mat2x2.hpp │ │ │ ├── mat2x3.hpp │ │ │ ├── mat2x4.hpp │ │ │ ├── mat3x2.hpp │ │ │ ├── mat3x3.hpp │ │ │ ├── mat3x4.hpp │ │ │ ├── mat4x2.hpp │ │ │ ├── mat4x3.hpp │ │ │ ├── mat4x4.hpp │ │ │ ├── matrix.hpp │ │ │ ├── packing.hpp │ │ │ ├── simd │ │ │ │ ├── common.h │ │ │ │ ├── exponential.h │ │ │ │ ├── geometric.h │ │ │ │ ├── integer.h │ │ │ │ ├── matrix.h │ │ │ │ ├── neon.h │ │ │ │ ├── packing.h │ │ │ │ ├── platform.h │ │ │ │ ├── trigonometric.h │ │ │ │ └── vector_relational.h │ │ │ ├── trigonometric.hpp │ │ │ ├── vec2.hpp │ │ │ ├── vec3.hpp │ │ │ ├── vec4.hpp │ │ │ └── vector_relational.hpp │ │ ├── manual.md │ │ ├── readme.md │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── bug │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── bug_ms_vec_static.cpp │ │ │ ├── core │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── core_cpp_constexpr.cpp │ │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ │ ├── core_force_arch_unknown.cpp │ │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ │ ├── core_force_ctor_init.cpp │ │ │ │ ├── core_force_cxx03.cpp │ │ │ │ ├── core_force_cxx98.cpp │ │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ │ ├── core_force_inline.cpp │ │ │ │ ├── core_force_left_handed.cpp │ │ │ │ ├── core_force_platform_unknown.cpp │ │ │ │ ├── core_force_pure.cpp │ │ │ │ ├── core_force_quat_wxyz.cpp │ │ │ │ ├── core_force_size_t_length.cpp │ │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ │ ├── core_force_xyzw_only.cpp │ │ │ │ ├── core_func_common.cpp │ │ │ │ ├── core_func_exponential.cpp │ │ │ │ ├── core_func_geometric.cpp │ │ │ │ ├── core_func_integer.cpp │ │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ │ ├── core_func_matrix.cpp │ │ │ │ ├── core_func_noise.cpp │ │ │ │ ├── core_func_packing.cpp │ │ │ │ ├── core_func_swizzle.cpp │ │ │ │ ├── core_func_trigonometric.cpp │ │ │ │ ├── core_func_vector_relational.cpp │ │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ │ ├── core_setup_message.cpp │ │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ │ ├── core_setup_precision.cpp │ │ │ │ ├── core_type_aligned.cpp │ │ │ │ ├── core_type_cast.cpp │ │ │ │ ├── core_type_ctor.cpp │ │ │ │ ├── core_type_int.cpp │ │ │ │ ├── core_type_length.cpp │ │ │ │ ├── core_type_mat2x2.cpp │ │ │ │ ├── core_type_mat2x3.cpp │ │ │ │ ├── core_type_mat2x4.cpp │ │ │ │ ├── core_type_mat3x2.cpp │ │ │ │ ├── core_type_mat3x3.cpp │ │ │ │ ├── core_type_mat3x4.cpp │ │ │ │ ├── core_type_mat4x2.cpp │ │ │ │ ├── core_type_mat4x3.cpp │ │ │ │ ├── core_type_mat4x4.cpp │ │ │ │ ├── core_type_vec1.cpp │ │ │ │ ├── core_type_vec2.cpp │ │ │ │ ├── core_type_vec3.cpp │ │ │ │ └── core_type_vec4.cpp │ │ │ ├── ext │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ │ ├── ext_matrix_common.cpp │ │ │ │ ├── ext_matrix_projection.cpp │ │ │ │ ├── ext_matrix_relational.cpp │ │ │ │ ├── ext_matrix_transform.cpp │ │ │ │ ├── ext_quaternion_common.cpp │ │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ │ ├── ext_quaternion_relational.cpp │ │ │ │ ├── ext_quaternion_transform.cpp │ │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ │ ├── ext_quaternion_type.cpp │ │ │ │ ├── ext_scalar_common.cpp │ │ │ │ ├── ext_scalar_constants.cpp │ │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ │ ├── ext_scalar_integer.cpp │ │ │ │ ├── ext_scalar_relational.cpp │ │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ │ ├── ext_scalar_ulp.cpp │ │ │ │ ├── ext_vec1.cpp │ │ │ │ ├── ext_vector_bool1.cpp │ │ │ │ ├── ext_vector_common.cpp │ │ │ │ ├── ext_vector_iec559.cpp │ │ │ │ ├── ext_vector_integer.cpp │ │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ │ ├── ext_vector_relational.cpp │ │ │ │ └── ext_vector_ulp.cpp │ │ │ ├── glm.cppcheck │ │ │ ├── gtc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gtc_bitfield.cpp │ │ │ │ ├── gtc_color_space.cpp │ │ │ │ ├── gtc_constants.cpp │ │ │ │ ├── gtc_epsilon.cpp │ │ │ │ ├── gtc_integer.cpp │ │ │ │ ├── gtc_matrix_access.cpp │ │ │ │ ├── gtc_matrix_integer.cpp │ │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ │ ├── gtc_matrix_transform.cpp │ │ │ │ ├── gtc_noise.cpp │ │ │ │ ├── gtc_packing.cpp │ │ │ │ ├── gtc_quaternion.cpp │ │ │ │ ├── gtc_random.cpp │ │ │ │ ├── gtc_reciprocal.cpp │ │ │ │ ├── gtc_round.cpp │ │ │ │ ├── gtc_type_aligned.cpp │ │ │ │ ├── gtc_type_precision.cpp │ │ │ │ ├── gtc_type_ptr.cpp │ │ │ │ ├── gtc_ulp.cpp │ │ │ │ ├── gtc_user_defined_types.cpp │ │ │ │ └── gtc_vec1.cpp │ │ │ ├── gtx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gtx.cpp │ │ │ │ ├── gtx_associated_min_max.cpp │ │ │ │ ├── gtx_closest_point.cpp │ │ │ │ ├── gtx_color_encoding.cpp │ │ │ │ ├── gtx_color_space.cpp │ │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ │ ├── gtx_common.cpp │ │ │ │ ├── gtx_compatibility.cpp │ │ │ │ ├── gtx_component_wise.cpp │ │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ │ ├── gtx_easing.cpp │ │ │ │ ├── gtx_euler_angle.cpp │ │ │ │ ├── gtx_extend.cpp │ │ │ │ ├── gtx_extended_min_max.cpp │ │ │ │ ├── gtx_extented_min_max.cpp │ │ │ │ ├── gtx_exterior_product.cpp │ │ │ │ ├── gtx_fast_exponential.cpp │ │ │ │ ├── gtx_fast_square_root.cpp │ │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ │ ├── gtx_functions.cpp │ │ │ │ ├── gtx_gradient_paint.cpp │ │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ │ ├── gtx_integer.cpp │ │ │ │ ├── gtx_intersect.cpp │ │ │ │ ├── gtx_io.cpp │ │ │ │ ├── gtx_load.cpp │ │ │ │ ├── gtx_log_base.cpp │ │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ │ ├── gtx_matrix_operation.cpp │ │ │ │ ├── gtx_matrix_query.cpp │ │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ │ ├── gtx_mixed_product.cpp │ │ │ │ ├── gtx_norm.cpp │ │ │ │ ├── gtx_normal.cpp │ │ │ │ ├── gtx_normalize_dot.cpp │ │ │ │ ├── gtx_number_precision.cpp │ │ │ │ ├── gtx_optimum_pow.cpp │ │ │ │ ├── gtx_orthonormalize.cpp │ │ │ │ ├── gtx_perpendicular.cpp │ │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ │ ├── gtx_projection.cpp │ │ │ │ ├── gtx_quaternion.cpp │ │ │ │ ├── gtx_random.cpp │ │ │ │ ├── gtx_range.cpp │ │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ │ ├── gtx_rotate_vector.cpp │ │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ │ ├── gtx_scalar_relational.cpp │ │ │ │ ├── gtx_simd_mat4.cpp │ │ │ │ ├── gtx_simd_vec4.cpp │ │ │ │ ├── gtx_spline.cpp │ │ │ │ ├── gtx_string_cast.cpp │ │ │ │ ├── gtx_texture.cpp │ │ │ │ ├── gtx_type_aligned.cpp │ │ │ │ ├── gtx_type_trait.cpp │ │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ │ ├── gtx_vector_angle.cpp │ │ │ │ ├── gtx_vector_query.cpp │ │ │ │ └── gtx_wrap.cpp │ │ │ └── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── perf_matrix_div.cpp │ │ │ │ ├── perf_matrix_inverse.cpp │ │ │ │ ├── perf_matrix_mul.cpp │ │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ │ ├── perf_matrix_transpose.cpp │ │ │ │ └── perf_vector_mul_matrix.cpp │ │ └── util │ │ │ ├── autoexp.txt │ │ │ ├── autoexp.vc2010.dat │ │ │ ├── glm.natvis │ │ │ └── usertype.dat │ ├── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-matchers.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ ├── internal │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-matchers.cc │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ └── roboto_medium.h │ ├── json │ │ └── json.hpp │ ├── libelf │ │ ├── debug.h │ │ ├── elf.cpp │ │ ├── elf.h │ │ ├── elf32.cpp │ │ ├── elf32.h │ │ ├── elf64.cpp │ │ └── elf64.h │ ├── libretro-common │ │ ├── compat │ │ │ ├── compat_strcasestr.c │ │ │ ├── compat_strl.c │ │ │ └── fopen_utf8.c │ │ ├── encodings │ │ │ └── encoding_utf.c │ │ ├── file │ │ │ ├── file_path.c │ │ │ └── retro_dirent.c │ │ ├── glsm │ │ │ └── glsm.c │ │ ├── glsym │ │ │ ├── README.md │ │ │ ├── glgen.py │ │ │ ├── glsym_es2.c │ │ │ ├── glsym_es3.c │ │ │ ├── glsym_gl.c │ │ │ ├── rglgen.c │ │ │ ├── rglgen.py │ │ │ └── xglgen.py │ │ ├── include │ │ │ ├── boolean.h │ │ │ ├── cdrom │ │ │ │ └── cdrom.h │ │ │ ├── clamping.h │ │ │ ├── compat │ │ │ │ ├── apple_compat.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── fopen_utf8.h │ │ │ │ ├── getopt.h │ │ │ │ ├── ifaddrs.h │ │ │ │ ├── intrinsics.h │ │ │ │ ├── msvc.h │ │ │ │ ├── msvc │ │ │ │ │ └── stdint.h │ │ │ │ ├── posix_string.h │ │ │ │ ├── strcasestr.h │ │ │ │ ├── strl.h │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib │ │ │ │ │ ├── zconf.h │ │ │ │ │ ├── zconf.h.in │ │ │ │ │ ├── zlib.h │ │ │ │ │ └── zutil.h │ │ │ │ └── zutil.h │ │ │ ├── encodings │ │ │ │ ├── utf.h │ │ │ │ └── win32.h │ │ │ ├── file │ │ │ │ └── file_path.h │ │ │ ├── glsm │ │ │ │ ├── glsm.h │ │ │ │ └── glsmsym.h │ │ │ ├── glsym │ │ │ │ ├── glsym.h │ │ │ │ ├── glsym_es2.h │ │ │ │ ├── glsym_es3.h │ │ │ │ ├── glsym_gl.h │ │ │ │ ├── rglgen.h │ │ │ │ ├── rglgen_headers.h │ │ │ │ └── switch │ │ │ │ │ ├── nx_gl.h │ │ │ │ │ └── nx_glsym.h │ │ │ ├── libchdr │ │ │ │ ├── bitstream.h │ │ │ │ ├── cdrom.h │ │ │ │ ├── chd.h │ │ │ │ ├── coretypes.h │ │ │ │ ├── flac.h │ │ │ │ ├── huffman.h │ │ │ │ ├── libchdr_zlib.h │ │ │ │ ├── lzma.h │ │ │ │ └── minmax.h │ │ │ ├── libco.h │ │ │ ├── libretro.h │ │ │ ├── libretro_d3d.h │ │ │ ├── libretro_dspfilter.h │ │ │ ├── libretro_gskit_ps2.h │ │ │ ├── libretro_vulkan.h │ │ │ ├── memalign.h │ │ │ ├── memmap.h │ │ │ ├── retro_assert.h │ │ │ ├── retro_common.h │ │ │ ├── retro_common_api.h │ │ │ ├── retro_dirent.h │ │ │ ├── retro_endianness.h │ │ │ ├── retro_environment.h │ │ │ ├── retro_inline.h │ │ │ ├── retro_math.h │ │ │ ├── retro_miscellaneous.h │ │ │ ├── retro_stat.h │ │ │ ├── retro_timers.h │ │ │ ├── rthreads │ │ │ │ ├── async_job.h │ │ │ │ ├── rsemaphore.h │ │ │ │ └── rthreads.h │ │ │ ├── string │ │ │ │ └── stdstring.h │ │ │ ├── vfs │ │ │ │ ├── vfs.h │ │ │ │ ├── vfs_implementation.h │ │ │ │ └── vfs_implementation_cdrom.h │ │ │ └── vulkan │ │ │ │ └── vulkan_symbol_wrapper.h │ │ ├── memmap │ │ │ └── memalign.c │ │ ├── string │ │ │ └── stdstring.c │ │ ├── vfs │ │ │ └── vfs_implementation.c │ │ └── vulkan │ │ │ └── vulkan_symbol_wrapper.c │ ├── libzip │ │ ├── API-CHANGES.md │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── THANKS │ │ ├── TODO.md │ │ ├── android │ │ │ ├── do.sh │ │ │ ├── docker │ │ │ │ └── Dockerfile │ │ │ └── readme.txt │ │ ├── cmake-compat │ │ │ ├── CMakePushCheckState.cmake │ │ │ ├── CheckLibraryExists.cmake │ │ │ ├── CheckSymbolExists.cmake │ │ │ ├── FindBZip2.cmake │ │ │ ├── FindGnuTLS.cmake │ │ │ ├── FindLibLZMA.cmake │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ ├── FindPackageMessage.cmake │ │ │ └── SelectLibraryConfigurations.cmake │ │ ├── cmake-config.h.in │ │ ├── cmake-zipconf.h.in │ │ ├── cmake │ │ │ ├── Dist.cmake │ │ │ ├── FindMbedTLS.cmake │ │ │ ├── FindNettle.cmake │ │ │ └── FindZstd.cmake │ │ ├── developer-xcode │ │ │ ├── Info.plist │ │ │ ├── README Xcode Project.md │ │ │ ├── config.h │ │ │ ├── extract-version.sh │ │ │ ├── libzip.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── mkconfig-h.sh │ │ │ ├── zip_err_str.c │ │ │ └── zipconf.h │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── in-memory.c │ │ │ └── windows-open.c │ │ ├── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── compat.h │ │ │ ├── zip.h │ │ │ ├── zip_add.c │ │ │ ├── zip_add_dir.c │ │ │ ├── zip_add_entry.c │ │ │ ├── zip_algorithm_bzip2.c │ │ │ ├── zip_algorithm_deflate.c │ │ │ ├── zip_algorithm_xz.c │ │ │ ├── zip_algorithm_zstd.c │ │ │ ├── zip_buffer.c │ │ │ ├── zip_close.c │ │ │ ├── zip_crypto.h │ │ │ ├── zip_crypto_commoncrypto.c │ │ │ ├── zip_crypto_commoncrypto.h │ │ │ ├── zip_crypto_gnutls.c │ │ │ ├── zip_crypto_gnutls.h │ │ │ ├── zip_crypto_mbedtls.c │ │ │ ├── zip_crypto_mbedtls.h │ │ │ ├── zip_crypto_openssl.c │ │ │ ├── zip_crypto_openssl.h │ │ │ ├── zip_crypto_win.c │ │ │ ├── zip_crypto_win.h │ │ │ ├── zip_delete.c │ │ │ ├── zip_dir_add.c │ │ │ ├── zip_dirent.c │ │ │ ├── zip_discard.c │ │ │ ├── zip_entry.c │ │ │ ├── zip_err_str.c │ │ │ ├── zip_error.c │ │ │ ├── zip_error_clear.c │ │ │ ├── zip_error_get.c │ │ │ ├── zip_error_get_sys_type.c │ │ │ ├── zip_error_strerror.c │ │ │ ├── zip_error_to_str.c │ │ │ ├── zip_extra_field.c │ │ │ ├── zip_extra_field_api.c │ │ │ ├── zip_fclose.c │ │ │ ├── zip_fdopen.c │ │ │ ├── zip_file_add.c │ │ │ ├── zip_file_error_clear.c │ │ │ ├── zip_file_error_get.c │ │ │ ├── zip_file_get_comment.c │ │ │ ├── zip_file_get_external_attributes.c │ │ │ ├── zip_file_get_offset.c │ │ │ ├── zip_file_rename.c │ │ │ ├── zip_file_replace.c │ │ │ ├── zip_file_set_comment.c │ │ │ ├── zip_file_set_encryption.c │ │ │ ├── zip_file_set_external_attributes.c │ │ │ ├── zip_file_set_mtime.c │ │ │ ├── zip_file_strerror.c │ │ │ ├── zip_fopen.c │ │ │ ├── zip_fopen_encrypted.c │ │ │ ├── zip_fopen_index.c │ │ │ ├── zip_fopen_index_encrypted.c │ │ │ ├── zip_fread.c │ │ │ ├── zip_fseek.c │ │ │ ├── zip_ftell.c │ │ │ ├── zip_get_archive_comment.c │ │ │ ├── zip_get_archive_flag.c │ │ │ ├── zip_get_encryption_implementation.c │ │ │ ├── zip_get_file_comment.c │ │ │ ├── zip_get_name.c │ │ │ ├── zip_get_num_entries.c │ │ │ ├── zip_get_num_files.c │ │ │ ├── zip_hash.c │ │ │ ├── zip_io_util.c │ │ │ ├── zip_libzip_version.c │ │ │ ├── zip_memdup.c │ │ │ ├── zip_mkstempm.c │ │ │ ├── zip_name_locate.c │ │ │ ├── zip_new.c │ │ │ ├── zip_open.c │ │ │ ├── zip_pkware.c │ │ │ ├── zip_progress.c │ │ │ ├── zip_random_unix.c │ │ │ ├── zip_random_uwp.c │ │ │ ├── zip_random_win32.c │ │ │ ├── zip_rename.c │ │ │ ├── zip_replace.c │ │ │ ├── zip_set_archive_comment.c │ │ │ ├── zip_set_archive_flag.c │ │ │ ├── zip_set_default_password.c │ │ │ ├── zip_set_file_comment.c │ │ │ ├── zip_set_file_compression.c │ │ │ ├── zip_set_name.c │ │ │ ├── zip_source_accept_empty.c │ │ │ ├── zip_source_begin_write.c │ │ │ ├── zip_source_begin_write_cloning.c │ │ │ ├── zip_source_buffer.c │ │ │ ├── zip_source_call.c │ │ │ ├── zip_source_close.c │ │ │ ├── zip_source_commit_write.c │ │ │ ├── zip_source_compress.c │ │ │ ├── zip_source_crc.c │ │ │ ├── zip_source_error.c │ │ │ ├── zip_source_file.h │ │ │ ├── zip_source_file_common.c │ │ │ ├── zip_source_file_stdio.c │ │ │ ├── zip_source_file_stdio.h │ │ │ ├── zip_source_file_stdio_named.c │ │ │ ├── zip_source_file_win32.c │ │ │ ├── zip_source_file_win32.h │ │ │ ├── zip_source_file_win32_ansi.c │ │ │ ├── zip_source_file_win32_named.c │ │ │ ├── zip_source_file_win32_utf16.c │ │ │ ├── zip_source_file_win32_utf8.c │ │ │ ├── zip_source_free.c │ │ │ ├── zip_source_function.c │ │ │ ├── zip_source_get_file_attributes.c │ │ │ ├── zip_source_is_deleted.c │ │ │ ├── zip_source_layered.c │ │ │ ├── zip_source_open.c │ │ │ ├── zip_source_pkware_decode.c │ │ │ ├── zip_source_pkware_encode.c │ │ │ ├── zip_source_read.c │ │ │ ├── zip_source_remove.c │ │ │ ├── zip_source_rollback_write.c │ │ │ ├── zip_source_seek.c │ │ │ ├── zip_source_seek_write.c │ │ │ ├── zip_source_stat.c │ │ │ ├── zip_source_supports.c │ │ │ ├── zip_source_tell.c │ │ │ ├── zip_source_tell_write.c │ │ │ ├── zip_source_window.c │ │ │ ├── zip_source_winzip_aes_decode.c │ │ │ ├── zip_source_winzip_aes_encode.c │ │ │ ├── zip_source_write.c │ │ │ ├── zip_source_zip.c │ │ │ ├── zip_source_zip_new.c │ │ │ ├── zip_stat.c │ │ │ ├── zip_stat_index.c │ │ │ ├── zip_stat_init.c │ │ │ ├── zip_strerror.c │ │ │ ├── zip_string.c │ │ │ ├── zip_unchange.c │ │ │ ├── zip_unchange_all.c │ │ │ ├── zip_unchange_archive.c │ │ │ ├── zip_unchange_data.c │ │ │ ├── zip_utf-8.c │ │ │ ├── zip_winzip_aes.c │ │ │ └── zipint.h │ │ ├── libzip-config.cmake.in │ │ ├── libzip.pc.in │ │ ├── man │ │ │ ├── CMakeLists.txt │ │ │ ├── ZIP_SOURCE_GET_ARGS.html │ │ │ ├── ZIP_SOURCE_GET_ARGS.man │ │ │ ├── ZIP_SOURCE_GET_ARGS.mdoc │ │ │ ├── fix-man-links.sh │ │ │ ├── handle_links │ │ │ ├── libzip.html │ │ │ ├── libzip.man │ │ │ ├── libzip.mdoc │ │ │ ├── links │ │ │ ├── make_zip_errors.sh │ │ │ ├── mkdocset.pl │ │ │ ├── nih-man.css │ │ │ ├── update-html.cmake │ │ │ ├── update-man.cmake │ │ │ ├── zip_add.html │ │ │ ├── zip_add.man │ │ │ ├── zip_add.mdoc │ │ │ ├── zip_add_dir.html │ │ │ ├── zip_add_dir.man │ │ │ ├── zip_add_dir.mdoc │ │ │ ├── zip_close.html │ │ │ ├── zip_close.man │ │ │ ├── zip_close.mdoc │ │ │ ├── zip_compression_method_supported.html │ │ │ ├── zip_compression_method_supported.man │ │ │ ├── zip_compression_method_supported.mdoc │ │ │ ├── zip_delete.html │ │ │ ├── zip_delete.man │ │ │ ├── zip_delete.mdoc │ │ │ ├── zip_dir_add.html │ │ │ ├── zip_dir_add.man │ │ │ ├── zip_dir_add.mdoc │ │ │ ├── zip_discard.html │ │ │ ├── zip_discard.man │ │ │ ├── zip_discard.mdoc │ │ │ ├── zip_encryption_method_supported.html │ │ │ ├── zip_encryption_method_supported.man │ │ │ ├── zip_encryption_method_supported.mdoc │ │ │ ├── zip_error_clear.html │ │ │ ├── zip_error_clear.man │ │ │ ├── zip_error_clear.mdoc │ │ │ ├── zip_error_code_system.html │ │ │ ├── zip_error_code_system.man │ │ │ ├── zip_error_code_system.mdoc │ │ │ ├── zip_error_code_zip.html │ │ │ ├── zip_error_code_zip.man │ │ │ ├── zip_error_code_zip.mdoc │ │ │ ├── zip_error_fini.html │ │ │ ├── zip_error_fini.man │ │ │ ├── zip_error_fini.mdoc │ │ │ ├── zip_error_get.html │ │ │ ├── zip_error_get.man │ │ │ ├── zip_error_get.mdoc │ │ │ ├── zip_error_get_sys_type.html │ │ │ ├── zip_error_get_sys_type.man │ │ │ ├── zip_error_get_sys_type.mdoc │ │ │ ├── zip_error_init.html │ │ │ ├── zip_error_init.man │ │ │ ├── zip_error_init.mdoc │ │ │ ├── zip_error_set.html │ │ │ ├── zip_error_set.man │ │ │ ├── zip_error_set.mdoc │ │ │ ├── zip_error_strerror.html │ │ │ ├── zip_error_strerror.man │ │ │ ├── zip_error_strerror.mdoc │ │ │ ├── zip_error_system_type.html │ │ │ ├── zip_error_system_type.man │ │ │ ├── zip_error_system_type.mdoc │ │ │ ├── zip_error_to_data.html │ │ │ ├── zip_error_to_data.man │ │ │ ├── zip_error_to_data.mdoc │ │ │ ├── zip_error_to_str.html │ │ │ ├── zip_error_to_str.man │ │ │ ├── zip_error_to_str.mdoc │ │ │ ├── zip_errors.html │ │ │ ├── zip_errors.man │ │ │ ├── zip_errors.mdoc │ │ │ ├── zip_fclose.html │ │ │ ├── zip_fclose.man │ │ │ ├── zip_fclose.mdoc │ │ │ ├── zip_fdopen.html │ │ │ ├── zip_fdopen.man │ │ │ ├── zip_fdopen.mdoc │ │ │ ├── zip_file_add.html │ │ │ ├── zip_file_add.man │ │ │ ├── zip_file_add.mdoc │ │ │ ├── zip_file_attributes_init.html │ │ │ ├── zip_file_attributes_init.man │ │ │ ├── zip_file_attributes_init.mdoc │ │ │ ├── zip_file_extra_field_delete.html │ │ │ ├── zip_file_extra_field_delete.man │ │ │ ├── zip_file_extra_field_delete.mdoc │ │ │ ├── zip_file_extra_field_get.html │ │ │ ├── zip_file_extra_field_get.man │ │ │ ├── zip_file_extra_field_get.mdoc │ │ │ ├── zip_file_extra_field_set.html │ │ │ ├── zip_file_extra_field_set.man │ │ │ ├── zip_file_extra_field_set.mdoc │ │ │ ├── zip_file_extra_fields_count.html │ │ │ ├── zip_file_extra_fields_count.man │ │ │ ├── zip_file_extra_fields_count.mdoc │ │ │ ├── zip_file_get_comment.html │ │ │ ├── zip_file_get_comment.man │ │ │ ├── zip_file_get_comment.mdoc │ │ │ ├── zip_file_get_error.html │ │ │ ├── zip_file_get_error.man │ │ │ ├── zip_file_get_error.mdoc │ │ │ ├── zip_file_get_external_attributes.html │ │ │ ├── zip_file_get_external_attributes.man │ │ │ ├── zip_file_get_external_attributes.mdoc │ │ │ ├── zip_file_rename.html │ │ │ ├── zip_file_rename.man │ │ │ ├── zip_file_rename.mdoc │ │ │ ├── zip_file_set_comment.html │ │ │ ├── zip_file_set_comment.man │ │ │ ├── zip_file_set_comment.mdoc │ │ │ ├── zip_file_set_encryption.html │ │ │ ├── zip_file_set_encryption.man │ │ │ ├── zip_file_set_encryption.mdoc │ │ │ ├── zip_file_set_external_attributes.html │ │ │ ├── zip_file_set_external_attributes.man │ │ │ ├── zip_file_set_external_attributes.mdoc │ │ │ ├── zip_file_set_mtime.html │ │ │ ├── zip_file_set_mtime.man │ │ │ ├── zip_file_set_mtime.mdoc │ │ │ ├── zip_file_strerror.html │ │ │ ├── zip_file_strerror.man │ │ │ ├── zip_file_strerror.mdoc │ │ │ ├── zip_fopen.html │ │ │ ├── zip_fopen.man │ │ │ ├── zip_fopen.mdoc │ │ │ ├── zip_fopen_encrypted.html │ │ │ ├── zip_fopen_encrypted.man │ │ │ ├── zip_fopen_encrypted.mdoc │ │ │ ├── zip_fread.html │ │ │ ├── zip_fread.man │ │ │ ├── zip_fread.mdoc │ │ │ ├── zip_fseek.html │ │ │ ├── zip_fseek.man │ │ │ ├── zip_fseek.mdoc │ │ │ ├── zip_ftell.html │ │ │ ├── zip_ftell.man │ │ │ ├── zip_ftell.mdoc │ │ │ ├── zip_get_archive_comment.html │ │ │ ├── zip_get_archive_comment.man │ │ │ ├── zip_get_archive_comment.mdoc │ │ │ ├── zip_get_archive_flag.html │ │ │ ├── zip_get_archive_flag.man │ │ │ ├── zip_get_archive_flag.mdoc │ │ │ ├── zip_get_error.html │ │ │ ├── zip_get_error.man │ │ │ ├── zip_get_error.mdoc │ │ │ ├── zip_get_file_comment.html │ │ │ ├── zip_get_file_comment.man │ │ │ ├── zip_get_file_comment.mdoc │ │ │ ├── zip_get_name.html │ │ │ ├── zip_get_name.man │ │ │ ├── zip_get_name.mdoc │ │ │ ├── zip_get_num_entries.html │ │ │ ├── zip_get_num_entries.man │ │ │ ├── zip_get_num_entries.mdoc │ │ │ ├── zip_get_num_files.html │ │ │ ├── zip_get_num_files.man │ │ │ ├── zip_get_num_files.mdoc │ │ │ ├── zip_libzip_version.html │ │ │ ├── zip_libzip_version.man │ │ │ ├── zip_libzip_version.mdoc │ │ │ ├── zip_name_locate.html │ │ │ ├── zip_name_locate.man │ │ │ ├── zip_name_locate.mdoc │ │ │ ├── zip_open.html │ │ │ ├── zip_open.man │ │ │ ├── zip_open.mdoc │ │ │ ├── zip_register_progress_callback.html │ │ │ ├── zip_register_progress_callback.man │ │ │ ├── zip_register_progress_callback.mdoc │ │ │ ├── zip_register_progress_callback_with_state.html │ │ │ ├── zip_register_progress_callback_with_state.man │ │ │ ├── zip_register_progress_callback_with_state.mdoc │ │ │ ├── zip_rename.html │ │ │ ├── zip_rename.man │ │ │ ├── zip_rename.mdoc │ │ │ ├── zip_set_archive_comment.html │ │ │ ├── zip_set_archive_comment.man │ │ │ ├── zip_set_archive_comment.mdoc │ │ │ ├── zip_set_archive_flag.html │ │ │ ├── zip_set_archive_flag.man │ │ │ ├── zip_set_archive_flag.mdoc │ │ │ ├── zip_set_default_password.html │ │ │ ├── zip_set_default_password.man │ │ │ ├── zip_set_default_password.mdoc │ │ │ ├── zip_set_file_comment.html │ │ │ ├── zip_set_file_comment.man │ │ │ ├── zip_set_file_comment.mdoc │ │ │ ├── zip_set_file_compression.html │ │ │ ├── zip_set_file_compression.man │ │ │ ├── zip_set_file_compression.mdoc │ │ │ ├── zip_source.html │ │ │ ├── zip_source.man │ │ │ ├── zip_source.mdoc │ │ │ ├── zip_source_begin_write.html │ │ │ ├── zip_source_begin_write.man │ │ │ ├── zip_source_begin_write.mdoc │ │ │ ├── zip_source_buffer.html │ │ │ ├── zip_source_buffer.man │ │ │ ├── zip_source_buffer.mdoc │ │ │ ├── zip_source_buffer_fragment.html │ │ │ ├── zip_source_buffer_fragment.man │ │ │ ├── zip_source_buffer_fragment.mdoc │ │ │ ├── zip_source_close.html │ │ │ ├── zip_source_close.man │ │ │ ├── zip_source_close.mdoc │ │ │ ├── zip_source_commit_write.html │ │ │ ├── zip_source_commit_write.man │ │ │ ├── zip_source_commit_write.mdoc │ │ │ ├── zip_source_error.html │ │ │ ├── zip_source_error.man │ │ │ ├── zip_source_error.mdoc │ │ │ ├── zip_source_file.html │ │ │ ├── zip_source_file.man │ │ │ ├── zip_source_file.mdoc │ │ │ ├── zip_source_filep.html │ │ │ ├── zip_source_filep.man │ │ │ ├── zip_source_filep.mdoc │ │ │ ├── zip_source_free.html │ │ │ ├── zip_source_free.man │ │ │ ├── zip_source_free.mdoc │ │ │ ├── zip_source_function.html │ │ │ ├── zip_source_function.man │ │ │ ├── zip_source_function.mdoc │ │ │ ├── zip_source_is_deleted.html │ │ │ ├── zip_source_is_deleted.man │ │ │ ├── zip_source_is_deleted.mdoc │ │ │ ├── zip_source_keep.html │ │ │ ├── zip_source_keep.man │ │ │ ├── zip_source_keep.mdoc │ │ │ ├── zip_source_make_command_bitmap.html │ │ │ ├── zip_source_make_command_bitmap.man │ │ │ ├── zip_source_make_command_bitmap.mdoc │ │ │ ├── zip_source_open.html │ │ │ ├── zip_source_open.man │ │ │ ├── zip_source_open.mdoc │ │ │ ├── zip_source_read.html │ │ │ ├── zip_source_read.man │ │ │ ├── zip_source_read.mdoc │ │ │ ├── zip_source_rollback_write.html │ │ │ ├── zip_source_rollback_write.man │ │ │ ├── zip_source_rollback_write.mdoc │ │ │ ├── zip_source_seek.html │ │ │ ├── zip_source_seek.man │ │ │ ├── zip_source_seek.mdoc │ │ │ ├── zip_source_seek_compute_offset.html │ │ │ ├── zip_source_seek_compute_offset.man │ │ │ ├── zip_source_seek_compute_offset.mdoc │ │ │ ├── zip_source_seek_write.html │ │ │ ├── zip_source_seek_write.man │ │ │ ├── zip_source_seek_write.mdoc │ │ │ ├── zip_source_stat.html │ │ │ ├── zip_source_stat.man │ │ │ ├── zip_source_stat.mdoc │ │ │ ├── zip_source_tell.html │ │ │ ├── zip_source_tell.man │ │ │ ├── zip_source_tell.mdoc │ │ │ ├── zip_source_tell_write.html │ │ │ ├── zip_source_tell_write.man │ │ │ ├── zip_source_tell_write.mdoc │ │ │ ├── zip_source_win32a.html │ │ │ ├── zip_source_win32a.man │ │ │ ├── zip_source_win32a.mdoc │ │ │ ├── zip_source_win32handle.html │ │ │ ├── zip_source_win32handle.man │ │ │ ├── zip_source_win32handle.mdoc │ │ │ ├── zip_source_win32w.html │ │ │ ├── zip_source_win32w.man │ │ │ ├── zip_source_win32w.mdoc │ │ │ ├── zip_source_write.html │ │ │ ├── zip_source_write.man │ │ │ ├── zip_source_write.mdoc │ │ │ ├── zip_source_zip.html │ │ │ ├── zip_source_zip.man │ │ │ ├── zip_source_zip.mdoc │ │ │ ├── zip_stat.html │ │ │ ├── zip_stat.man │ │ │ ├── zip_stat.mdoc │ │ │ ├── zip_stat_init.html │ │ │ ├── zip_stat_init.man │ │ │ ├── zip_stat_init.mdoc │ │ │ ├── zip_unchange.html │ │ │ ├── zip_unchange.man │ │ │ ├── zip_unchange.mdoc │ │ │ ├── zip_unchange_all.html │ │ │ ├── zip_unchange_all.man │ │ │ ├── zip_unchange_all.mdoc │ │ │ ├── zip_unchange_archive.html │ │ │ ├── zip_unchange_archive.man │ │ │ ├── zip_unchange_archive.mdoc │ │ │ ├── zipcmp.html │ │ │ ├── zipcmp.man │ │ │ ├── zipcmp.mdoc │ │ │ ├── zipmerge.html │ │ │ ├── zipmerge.man │ │ │ ├── zipmerge.mdoc │ │ │ ├── ziptool.html │ │ │ ├── ziptool.man │ │ │ └── ziptool.mdoc │ │ ├── regress │ │ │ ├── nihtest.conf.in │ │ │ └── runtest.in │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vsbuild.cmd │ │ │ └── zlib │ │ │ └── unpack_zlib_here.txt │ ├── lzma │ │ ├── 7z.h │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zStream.c │ │ ├── 7zTypes.h │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── Compiler.h │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── Precomp.h │ │ ├── Sort.c │ │ └── Sort.h │ ├── md5 │ │ ├── md5.cpp │ │ └── md5.h │ ├── miniupnpc │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Changelog.txt │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile │ │ ├── Makefile.mingw │ │ ├── README │ │ ├── VERSION │ │ ├── apiversions.txt │ │ ├── external-ip.sh │ │ ├── include │ │ │ ├── igd_desc_parse.h │ │ │ ├── miniupnpc.h │ │ │ ├── miniupnpc_declspec.h │ │ │ ├── miniupnpctypes.h │ │ │ ├── miniwget.h │ │ │ ├── portlistingparse.h │ │ │ ├── upnpcommands.h │ │ │ ├── upnpdev.h │ │ │ ├── upnperrors.h │ │ │ └── upnpreplyparse.h │ │ ├── java │ │ │ ├── .gitignore │ │ │ ├── JavaBridgeTest.java │ │ │ ├── testjava.bat │ │ │ └── testjava.sh │ │ ├── man3 │ │ │ └── miniupnpc.3 │ │ ├── mingw32make.bat │ │ ├── miniupnpc-config.cmake │ │ ├── miniupnpc.def │ │ ├── miniupnpc.rc │ │ ├── miniupnpcstrings.h.cmake │ │ ├── miniupnpcstrings.h.in │ │ ├── msvc │ │ │ ├── .gitignore │ │ │ ├── genminiupnpcstrings.vbs │ │ │ ├── miniupnpc.sln │ │ │ ├── miniupnpc.vcproj │ │ │ ├── miniupnpc.vcxproj │ │ │ ├── miniupnpc.vcxproj.filters │ │ │ ├── miniupnpc_vs2010.sln │ │ │ ├── miniupnpc_vs2010.vcxproj │ │ │ ├── miniupnpc_vs2010.vcxproj.filters │ │ │ ├── miniupnpc_vs2015.sln │ │ │ ├── upnpc-static.vcproj │ │ │ ├── upnpc-static.vcxproj │ │ │ ├── upnpc-static.vcxproj.filters │ │ │ └── upnpc-static_vs2010.vcxproj │ │ ├── pymoduletest.py │ │ ├── pymoduletest3.py │ │ ├── setup.py │ │ ├── setupmingw32.py │ │ ├── src │ │ │ ├── addr_is_reserved.c │ │ │ ├── addr_is_reserved.h │ │ │ ├── codelength.h │ │ │ ├── connecthostport.c │ │ │ ├── connecthostport.h │ │ │ ├── igd_desc_parse.c │ │ │ ├── listdevices.c │ │ │ ├── minihttptestserver.c │ │ │ ├── minisoap.c │ │ │ ├── minisoap.h │ │ │ ├── minissdpc.c │ │ │ ├── minissdpc.h │ │ │ ├── miniupnpc.c │ │ │ ├── miniupnpc_socketdef.h │ │ │ ├── miniupnpcmodule.c │ │ │ ├── miniwget.c │ │ │ ├── miniwget_private.h │ │ │ ├── minixml.c │ │ │ ├── minixml.h │ │ │ ├── minixmlvalid.c │ │ │ ├── portlistingparse.c │ │ │ ├── receivedata.c │ │ │ ├── receivedata.h │ │ │ ├── testaddr_is_reserved.c │ │ │ ├── testigddescparse.c │ │ │ ├── testminiwget.c │ │ │ ├── testminixml.c │ │ │ ├── testportlistingparse.c │ │ │ ├── testupnpreplyparse.c │ │ │ ├── upnpc.c │ │ │ ├── upnpcommands.c │ │ │ ├── upnpdev.c │ │ │ ├── upnperrors.c │ │ │ ├── upnpreplyparse.c │ │ │ └── win32_snprintf.h │ │ ├── testdesc │ │ │ ├── linksys_WAG200G_desc.values │ │ │ ├── linksys_WAG200G_desc.xml │ │ │ ├── new_LiveBox_desc.values │ │ │ └── new_LiveBox_desc.xml │ │ ├── testminiwget.sh │ │ ├── testreplyparse │ │ │ ├── DeletePortMapping.namevalue │ │ │ ├── DeletePortMapping.xml │ │ │ ├── GetExternalIPAddress.namevalue │ │ │ ├── GetExternalIPAddress.xml │ │ │ ├── GetSpecificPortMappingEntryReq.namevalue │ │ │ ├── GetSpecificPortMappingEntryReq.xml │ │ │ ├── GetSpecificPortMappingEntryResp.namevalue │ │ │ ├── GetSpecificPortMappingEntryResp.xml │ │ │ ├── SetDefaultConnectionService.namevalue │ │ │ ├── SetDefaultConnectionService.xml │ │ │ └── readme.txt │ │ ├── testupnpigd.py │ │ ├── testupnpreplyparse.sh │ │ ├── updateminiupnpcstrings.sh │ │ └── wingenminiupnpcstrings.c │ ├── nowide │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Doxyfile.in │ │ ├── README.md │ │ ├── contrib │ │ │ ├── CMake │ │ │ │ └── modules │ │ │ │ │ └── FindHHC.cmake │ │ │ └── MSVC │ │ │ │ ├── NoWide-Android.vcxproj │ │ │ │ ├── NoWide-Android.vcxproj.filters │ │ │ │ ├── NoWide-Windows.vcxproj │ │ │ │ ├── NoWide-Windows.vcxproj.filters │ │ │ │ └── NoWide.sln │ │ ├── include │ │ │ └── nowide │ │ │ │ ├── args.hpp │ │ │ │ ├── cenv.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── convert.hpp │ │ │ │ ├── cstdio.hpp │ │ │ │ ├── cstdlib.hpp │ │ │ │ ├── encoding_errors.hpp │ │ │ │ ├── encoding_utf.hpp │ │ │ │ ├── filebuf.hpp │ │ │ │ ├── fstream.hpp │ │ │ │ ├── iostream.hpp │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ ├── stackstring.hpp │ │ │ │ ├── system.hpp │ │ │ │ ├── utf.hpp │ │ │ │ └── windows.hpp │ │ ├── src │ │ │ └── iostream.cpp │ │ └── test │ │ │ ├── test.hpp │ │ │ ├── test_convert.cpp │ │ │ ├── test_env.cpp │ │ │ ├── test_fstream.cpp │ │ │ ├── test_iostream.cpp │ │ │ ├── test_stdio.cpp │ │ │ └── test_system.cpp │ ├── oboe │ │ ├── gamesdk.cmake │ │ ├── include │ │ │ └── oboe │ │ │ │ ├── AudioStream.h │ │ │ │ ├── AudioStreamBase.h │ │ │ │ ├── AudioStreamBuilder.h │ │ │ │ ├── AudioStreamCallback.h │ │ │ │ ├── Definitions.h │ │ │ │ ├── LatencyTuner.h │ │ │ │ ├── Oboe.h │ │ │ │ ├── ResultWithValue.h │ │ │ │ ├── StabilizedCallback.h │ │ │ │ ├── Utilities.h │ │ │ │ └── Version.h │ │ └── libs │ │ │ ├── arm64-v8a_API28_NDK21_cpp_static_RelWithDebInfo │ │ │ ├── arm64-v8a_API28_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ │ │ ├── arm64-v8a_API29_NDK21_cpp_static_RelWithDebInfo │ │ │ ├── arm64-v8a_API29_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ │ │ ├── armeabi-v7a_API28_NDK21_cpp_static_RelWithDebInfo │ │ │ ├── armeabi-v7a_API28_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ │ │ ├── armeabi-v7a_API29_NDK21_cpp_static_RelWithDebInfo │ │ │ ├── armeabi-v7a_API29_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ │ │ ├── x86_64_API28_NDK21_cpp_static_RelWithDebInfo │ │ │ ├── x86_64_API28_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ │ │ ├── x86_64_API29_NDK21_cpp_static_RelWithDebInfo │ │ │ ├── x86_64_API29_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ │ │ ├── x86_API28_NDK21_cpp_static_RelWithDebInfo │ │ │ ├── x86_API28_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ │ │ ├── x86_API29_NDK21_cpp_static_RelWithDebInfo │ │ │ └── x86_API29_NDK21_cpp_static_Release │ │ │ └── liboboe_static.a │ ├── picotcp │ │ ├── CONTRIBUTING.md │ │ ├── COPYING │ │ ├── LICENSE.GPLv2 │ │ ├── LICENSE.GPLv3 │ │ ├── MODTREE │ │ ├── Makefile │ │ ├── README.md │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── pico_arm9.h │ │ │ │ ├── pico_atsamd21j18.h │ │ │ │ ├── pico_avr.h │ │ │ │ ├── pico_cortex_m.h │ │ │ │ ├── pico_dos.h │ │ │ │ ├── pico_esp8266.h │ │ │ │ ├── pico_generic_gcc.h │ │ │ │ ├── pico_linux.h │ │ │ │ ├── pico_mbed.h │ │ │ │ ├── pico_msp430.h │ │ │ │ ├── pico_msvc.h │ │ │ │ ├── pico_none.h │ │ │ │ ├── pico_pic24.h │ │ │ │ ├── pico_pic32.h │ │ │ │ └── pico_posix.h │ │ │ ├── heap.h │ │ │ ├── pico_addressing.h │ │ │ ├── pico_config.h │ │ │ ├── pico_constants.h │ │ │ ├── pico_defines.h │ │ │ ├── pico_defines_msvc.h │ │ │ ├── pico_device.h │ │ │ ├── pico_eth.h │ │ │ ├── pico_frame.h │ │ │ ├── pico_md5.h │ │ │ ├── pico_module_eth.h │ │ │ ├── pico_protocol.h │ │ │ ├── pico_queue.h │ │ │ ├── pico_socket.h │ │ │ ├── pico_socket_multicast.h │ │ │ ├── pico_stack.h │ │ │ └── pico_tree.h │ │ ├── mkdeps.sh │ │ ├── modules │ │ │ ├── pico_6lowpan.h │ │ │ ├── pico_6lowpan_ll.h │ │ │ ├── pico_802154.h │ │ │ ├── pico_aodv.h │ │ │ ├── pico_arp.c │ │ │ ├── pico_arp.h │ │ │ ├── pico_dev_ipc.h │ │ │ ├── pico_dev_null.h │ │ │ ├── pico_dev_ppp.c │ │ │ ├── pico_dev_ppp.h │ │ │ ├── pico_dhcp_client.h │ │ │ ├── pico_dhcp_common.c │ │ │ ├── pico_dhcp_common.h │ │ │ ├── pico_dhcp_server.c │ │ │ ├── pico_dhcp_server.h │ │ │ ├── pico_dns_client.c │ │ │ ├── pico_dns_client.h │ │ │ ├── pico_dns_common.c │ │ │ ├── pico_dns_common.h │ │ │ ├── pico_ethernet.c │ │ │ ├── pico_ethernet.h │ │ │ ├── pico_fragments.c │ │ │ ├── pico_fragments.h │ │ │ ├── pico_icmp4.c │ │ │ ├── pico_icmp4.h │ │ │ ├── pico_icmp6.h │ │ │ ├── pico_igmp.h │ │ │ ├── pico_ipfilter.h │ │ │ ├── pico_ipv4.c │ │ │ ├── pico_ipv4.h │ │ │ ├── pico_ipv6.h │ │ │ ├── pico_ipv6_nd.h │ │ │ ├── pico_mcast.h │ │ │ ├── pico_mld.h │ │ │ ├── pico_mm.h │ │ │ ├── pico_nat.h │ │ │ ├── pico_olsr.h │ │ │ ├── pico_socket_tcp.c │ │ │ ├── pico_socket_tcp.h │ │ │ ├── pico_socket_udp.c │ │ │ ├── pico_socket_udp.h │ │ │ ├── pico_strings.c │ │ │ ├── pico_strings.h │ │ │ ├── pico_tcp.c │ │ │ ├── pico_tcp.h │ │ │ ├── pico_udp.c │ │ │ └── pico_udp.h │ │ ├── rules │ │ │ ├── crc.mk │ │ │ ├── debug.mk │ │ │ ├── dhcp_client.mk │ │ │ ├── dhcp_server.mk │ │ │ ├── dns_client.mk │ │ │ ├── eth.mk │ │ │ ├── icmp4.mk │ │ │ ├── ipv4.mk │ │ │ ├── ipv4frag.mk │ │ │ ├── ppp.mk │ │ │ ├── tap.mk │ │ │ ├── tcp.mk │ │ │ ├── tun.mk │ │ │ └── udp.mk │ │ └── stack │ │ │ ├── pico_device.c │ │ │ ├── pico_frame.c │ │ │ ├── pico_md5.c │ │ │ ├── pico_protocol.c │ │ │ ├── pico_socket.c │ │ │ ├── pico_socket_multicast.c │ │ │ ├── pico_stack.c │ │ │ └── pico_tree.c │ ├── stb │ │ ├── stb_image.h │ │ └── stb_image_write.h │ ├── vixl │ │ ├── aarch32 │ │ │ ├── assembler-aarch32.cc │ │ │ ├── assembler-aarch32.h │ │ │ ├── constants-aarch32.cc │ │ │ ├── constants-aarch32.h │ │ │ ├── disasm-aarch32.cc │ │ │ ├── disasm-aarch32.h │ │ │ ├── instructions-aarch32.cc │ │ │ ├── instructions-aarch32.h │ │ │ ├── location-aarch32.cc │ │ │ ├── location-aarch32.h │ │ │ ├── macro-assembler-aarch32.cc │ │ │ ├── macro-assembler-aarch32.h │ │ │ ├── operands-aarch32.cc │ │ │ └── operands-aarch32.h │ │ ├── aarch64 │ │ │ ├── abi-aarch64.h │ │ │ ├── assembler-aarch64.cc │ │ │ ├── assembler-aarch64.h │ │ │ ├── constants-aarch64.h │ │ │ ├── cpu-aarch64.cc │ │ │ ├── cpu-aarch64.h │ │ │ ├── cpu-features-auditor-aarch64.cc │ │ │ ├── cpu-features-auditor-aarch64.h │ │ │ ├── decoder-aarch64.cc │ │ │ ├── decoder-aarch64.h │ │ │ ├── disasm-aarch64.cc │ │ │ ├── disasm-aarch64.h │ │ │ ├── instructions-aarch64.cc │ │ │ ├── instructions-aarch64.h │ │ │ ├── instrument-aarch64.cc │ │ │ ├── instrument-aarch64.h │ │ │ ├── logic-aarch64.cc │ │ │ ├── macro-assembler-aarch64.cc │ │ │ ├── macro-assembler-aarch64.h │ │ │ ├── operands-aarch64.cc │ │ │ ├── operands-aarch64.h │ │ │ ├── pointer-auth-aarch64.cc │ │ │ ├── simulator-aarch64.cc │ │ │ ├── simulator-aarch64.h │ │ │ └── simulator-constants-aarch64.h │ │ ├── assembler-base-vixl.h │ │ ├── code-buffer-vixl.cc │ │ ├── code-buffer-vixl.h │ │ ├── code-generation-scopes-vixl.h │ │ ├── compiler-intrinsics-vixl.cc │ │ ├── compiler-intrinsics-vixl.h │ │ ├── cpu-features.cc │ │ ├── cpu-features.h │ │ ├── globals-vixl.h │ │ ├── invalset-vixl.h │ │ ├── macro-assembler-interface.h │ │ ├── platform-vixl.h │ │ ├── pool-manager-impl.h │ │ ├── pool-manager.h │ │ ├── utils-vixl.cc │ │ └── utils-vixl.h │ ├── xbrz │ │ ├── Changelog.txt │ │ ├── License.txt │ │ ├── xbrz.cpp │ │ ├── xbrz.h │ │ ├── xbrz_config.h │ │ └── xbrz_tools.h │ ├── xbyak │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── main.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ ├── cmake │ │ │ └── config.cmake.in │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── avx_type.hpp │ │ │ ├── b2hex.cpp │ │ │ ├── gen_avx512.cpp │ │ │ ├── gen_code.cpp │ │ │ ├── sortline.cpp │ │ │ └── update.bat │ │ ├── readme.md │ │ ├── readme.txt │ │ ├── sample │ │ │ ├── Makefile │ │ │ ├── bf.cpp │ │ │ ├── bf.vcxproj │ │ │ ├── calc.cpp │ │ │ ├── calc.vcxproj │ │ │ ├── calc2.cpp │ │ │ ├── echo.bf │ │ │ ├── fizzbuzz.bf │ │ │ ├── hello.bf │ │ │ ├── jmp_table.cpp │ │ │ ├── memfunc.cpp │ │ │ ├── profiler.cpp │ │ │ ├── protect-re.cpp │ │ │ ├── quantize.cpp │ │ │ ├── quantize.vcxproj │ │ │ ├── stackframe.cpp │ │ │ ├── static_buf.cpp │ │ │ ├── test0.cpp │ │ │ ├── test0.vcxproj │ │ │ ├── test_util.cpp │ │ │ ├── test_util.vcxproj │ │ │ ├── toyvm.cpp │ │ │ └── toyvm.vcxproj │ │ ├── test │ │ │ ├── Makefile │ │ │ ├── Makefile.win │ │ │ ├── a.bat │ │ │ ├── address.cpp │ │ │ ├── bad_address.cpp │ │ │ ├── cvt_test.cpp │ │ │ ├── cybozu │ │ │ │ ├── inttype.hpp │ │ │ │ └── test.hpp │ │ │ ├── jmp.cpp │ │ │ ├── jmp.sln │ │ │ ├── jmp.vcproj │ │ │ ├── lib.h │ │ │ ├── lib_min.cpp │ │ │ ├── lib_run.cpp │ │ │ ├── lib_test.cpp │ │ │ ├── make_512.cpp │ │ │ ├── make_nm.cpp │ │ │ ├── misc.cpp │ │ │ ├── mprotect_test.cpp │ │ │ ├── nm_frame.cpp │ │ │ ├── noexception.cpp │ │ │ ├── normalize_prefix.cpp │ │ │ ├── readme.txt │ │ │ ├── rip-label-imm.cpp │ │ │ ├── set_opt.bat │ │ │ ├── sf_test.cpp │ │ │ ├── state.pptx │ │ │ ├── test_address.bat │ │ │ ├── test_address.sh │ │ │ ├── test_all.bat │ │ │ ├── test_avx.bat │ │ │ ├── test_avx.sh │ │ │ ├── test_avx512.bat │ │ │ ├── test_avx512.sh │ │ │ ├── test_avx_all.bat │ │ │ ├── test_jmp.bat │ │ │ ├── test_misc.bat │ │ │ ├── test_mmx.cpp │ │ │ ├── test_nm.bat │ │ │ ├── test_nm.sh │ │ │ └── test_nm_all.bat │ │ ├── xbyak.sln │ │ └── xbyak │ │ │ ├── xbyak.h │ │ │ ├── xbyak_bin2hex.h │ │ │ ├── xbyak_mnemonic.h │ │ │ └── xbyak_util.h │ └── xxHash │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cmake_unofficial │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── xxHashConfig.cmake.in │ │ ├── doc │ │ ├── README.md │ │ └── xxhash_spec.md │ │ ├── libxxhash.pc.in │ │ ├── tests │ │ ├── Makefile │ │ ├── bench │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── benchHash.c │ │ │ ├── benchHash.h │ │ │ ├── benchfn.c │ │ │ ├── benchfn.h │ │ │ ├── bhDisplay.c │ │ │ ├── bhDisplay.h │ │ │ ├── hashes.h │ │ │ ├── main.c │ │ │ ├── timefn.c │ │ │ └── timefn.h │ │ ├── collisions │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── allcodecs │ │ │ │ ├── README.md │ │ │ │ ├── dummy.c │ │ │ │ └── dummy.h │ │ │ ├── hashes.h │ │ │ ├── main.c │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── sort.cc │ │ │ ├── sort.hh │ │ │ ├── threading.c │ │ │ └── threading.h │ │ ├── generate_unicode_test.c │ │ └── multiInclude.c │ │ ├── xxh3.h │ │ ├── xxhash.c │ │ ├── xxhash.h │ │ ├── xxhsum.1 │ │ ├── xxhsum.1.md │ │ └── xxhsum.c ├── emulator.cpp ├── emulator.h ├── hw │ ├── aica │ │ ├── aica.cpp │ │ ├── aica.h │ │ ├── aica_if.cpp │ │ ├── aica_if.h │ │ ├── aica_mem.cpp │ │ ├── aica_mem.h │ │ ├── dsp.cpp │ │ ├── dsp.h │ │ ├── dsp_arm32.cpp │ │ ├── dsp_arm64.cpp │ │ ├── dsp_interp.cpp │ │ ├── dsp_x64.cpp │ │ ├── dsp_x86.cpp │ │ ├── sgc_if.cpp │ │ └── sgc_if.h │ ├── arm7 │ │ ├── arm-new.h │ │ ├── arm7.cpp │ │ ├── arm7.h │ │ ├── arm7_rec.cpp │ │ ├── arm7_rec.h │ │ ├── arm7_rec_arm32.cpp │ │ ├── arm7_rec_arm64.cpp │ │ ├── arm7_rec_x64.cpp │ │ ├── arm_mem.cpp │ │ └── arm_mem.h │ ├── bba │ │ ├── bba.cpp │ │ ├── bba.h │ │ ├── rtl8139c.cpp │ │ └── rtl8139c.h │ ├── flashrom │ │ ├── flashrom.cpp │ │ └── flashrom.h │ ├── gdrom │ │ ├── README.md │ │ ├── gdrom_if.h │ │ ├── gdrom_response.cpp │ │ ├── gdromv3.cpp │ │ └── gdromv3.h │ ├── holly │ │ ├── holly_intc.cpp │ │ ├── holly_intc.h │ │ ├── sb.cpp │ │ ├── sb.h │ │ ├── sb_mem.cpp │ │ └── sb_mem.h │ ├── hwreg.h │ ├── maple │ │ ├── maple_cfg.cpp │ │ ├── maple_cfg.h │ │ ├── maple_devs.cpp │ │ ├── maple_devs.h │ │ ├── maple_helper.cpp │ │ ├── maple_helper.h │ │ ├── maple_if.cpp │ │ ├── maple_if.h │ │ └── maple_jvs.cpp │ ├── mem │ │ ├── _vmem.cpp │ │ ├── _vmem.h │ │ ├── mem_watch.cpp │ │ └── mem_watch.h │ ├── modem │ │ ├── modem.cpp │ │ ├── modem.h │ │ └── modem_regs.h │ ├── naomi │ │ ├── awave_regs.h │ │ ├── awcartridge.cpp │ │ ├── awcartridge.h │ │ ├── card_reader.cpp │ │ ├── card_reader.h │ │ ├── decrypt.cpp │ │ ├── decrypt.h │ │ ├── gdcartridge.cpp │ │ ├── gdcartridge.h │ │ ├── m1cartridge.cpp │ │ ├── m1cartridge.h │ │ ├── m4cartridge.cpp │ │ ├── m4cartridge.h │ │ ├── naomi.cpp │ │ ├── naomi.h │ │ ├── naomi_cart.cpp │ │ ├── naomi_cart.h │ │ ├── naomi_flashrom.cpp │ │ ├── naomi_flashrom.h │ │ ├── naomi_m3comm.cpp │ │ ├── naomi_m3comm.h │ │ ├── naomi_regs.h │ │ ├── naomi_roms.cpp │ │ ├── naomi_roms.h │ │ ├── naomi_roms_eeprom.h │ │ └── naomi_roms_input.h │ ├── pvr │ │ ├── Renderer_if.cpp │ │ ├── Renderer_if.h │ │ ├── elan.cpp │ │ ├── elan.h │ │ ├── elan_struct.h │ │ ├── helper_classes.h │ │ ├── pvr.cpp │ │ ├── pvr.h │ │ ├── pvr_mem.cpp │ │ ├── pvr_mem.h │ │ ├── pvr_regs.cpp │ │ ├── pvr_regs.h │ │ ├── pvr_sb_regs.cpp │ │ ├── pvr_sb_regs.h │ │ ├── spg.cpp │ │ ├── spg.h │ │ ├── ta.cpp │ │ ├── ta.h │ │ ├── ta_const_df.h │ │ ├── ta_ctx.cpp │ │ ├── ta_ctx.h │ │ ├── ta_structs.h │ │ └── ta_vtx.cpp │ └── sh4 │ │ ├── dyna │ │ ├── blockmanager.cpp │ │ ├── blockmanager.h │ │ ├── decoder.cpp │ │ ├── decoder.h │ │ ├── decoder_opcodes.h │ │ ├── driver.cpp │ │ ├── ngen.h │ │ ├── shil.cpp │ │ ├── shil.h │ │ ├── shil_canonical.h │ │ ├── ssa.cpp │ │ ├── ssa.h │ │ └── ssa_regalloc.h │ │ ├── fsca-table.h │ │ ├── interpr │ │ ├── sh4_fpu.cpp │ │ ├── sh4_interpreter.cpp │ │ ├── sh4_opcodes.cpp │ │ └── sh4_opcodes.h │ │ ├── modules │ │ ├── bsc.cpp │ │ ├── ccn.cpp │ │ ├── ccn.h │ │ ├── cpg.cpp │ │ ├── dmac.cpp │ │ ├── dmac.h │ │ ├── fastmmu.cpp │ │ ├── intc.cpp │ │ ├── mmu.cpp │ │ ├── mmu.h │ │ ├── modules.h │ │ ├── rtc.cpp │ │ ├── serial.cpp │ │ ├── tmu.cpp │ │ ├── ubc.cpp │ │ └── wince.h │ │ ├── sh4_cache.h │ │ ├── sh4_core.h │ │ ├── sh4_core_regs.cpp │ │ ├── sh4_if.h │ │ ├── sh4_interpreter.h │ │ ├── sh4_interrupts.cpp │ │ ├── sh4_interrupts.h │ │ ├── sh4_mem.cpp │ │ ├── sh4_mem.h │ │ ├── sh4_mmr.cpp │ │ ├── sh4_mmr.h │ │ ├── sh4_opcode_list.cpp │ │ ├── sh4_opcode_list.h │ │ ├── sh4_rom.cpp │ │ ├── sh4_rom.h │ │ ├── sh4_sched.cpp │ │ └── sh4_sched.h ├── imgread │ ├── ImgReader.cpp │ ├── cdi.cpp │ ├── chd.cpp │ ├── common.cpp │ ├── common.h │ ├── cue.cpp │ ├── gdi.cpp │ ├── ioctl.cpp │ ├── iso9660.h │ ├── isofs.cpp │ └── isofs.h ├── input │ ├── gamepad.h │ ├── gamepad_device.cpp │ ├── gamepad_device.h │ ├── keyboard_device.h │ ├── mapping.cpp │ ├── mapping.h │ ├── mouse.cpp │ └── mouse.h ├── khronos │ ├── APPLE │ │ ├── egl.h │ │ ├── eglplatform.h │ │ └── khrplatform.h │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ ├── GL3 │ │ ├── gl3.h │ │ ├── gl3w.c │ │ └── gl3w.h │ ├── GL4 │ │ ├── gl3w.c │ │ ├── gl3w.h │ │ ├── glcorearb.h │ │ └── glext.h │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ ├── GLES3 │ │ ├── gl2ext.h │ │ ├── gl3.h │ │ └── gl3platform.h │ ├── GLES32 │ │ ├── gl2ext.h │ │ └── gl32.h │ └── KHR │ │ └── khrplatform.h ├── linux-dist │ ├── dispmanx.cpp │ ├── dispmanx.h │ ├── evdev.cpp │ ├── evdev.h │ ├── evdev_gamepad.h │ ├── icon.h │ ├── main.cpp │ ├── x11.cpp │ ├── x11.h │ └── x11_keyboard.h ├── linux │ ├── common.cpp │ ├── context.cpp │ ├── libnx_vmem.cpp │ ├── posix_vmem.cpp │ ├── unwind_info.cpp │ ├── vita_fault_handler.cpp │ └── vita_vmem.cpp ├── log │ ├── BitSet.h │ ├── ConsoleListener.h │ ├── ConsoleListenerDroid.cpp │ ├── ConsoleListenerNix.cpp │ ├── ConsoleListenerWin.cpp │ ├── Log.h │ ├── LogManager.cpp │ ├── LogManager.h │ └── StringUtil.h ├── lua │ ├── flycast.lua │ ├── lua.cpp │ └── lua.h ├── network │ ├── dns.cpp │ ├── ggpo.cpp │ ├── ggpo.h │ ├── ifaddrs.c │ ├── miniupnp.cpp │ ├── miniupnp.h │ ├── naomi_network.cpp │ ├── naomi_network.h │ ├── net_handshake.cpp │ ├── net_handshake.h │ ├── net_platform.h │ ├── net_serial_maxspeed.h │ ├── output.cpp │ ├── output.h │ ├── picoppp.cpp │ └── picoppp.h ├── nullDC.cpp ├── oslib │ ├── audiobackend_alsa.cpp │ ├── audiobackend_coreaudio.cpp │ ├── audiobackend_directsound.cpp │ ├── audiobackend_libao.cpp │ ├── audiobackend_null.cpp │ ├── audiobackend_oboe.cpp │ ├── audiobackend_omx.cpp │ ├── audiobackend_oss.cpp │ ├── audiobackend_pulseaudio.cpp │ ├── audiobackend_sdl2.cpp │ ├── audiostream.cpp │ ├── audiostream.h │ ├── directory.h │ ├── host_context.h │ ├── oslib.cpp │ └── oslib.h ├── profiler │ ├── profiler.cpp │ └── profiler.h ├── rec-ARM │ └── rec_arm.cpp ├── rec-ARM64 │ ├── arm64_regalloc.h │ ├── arm64_unwind.h │ └── rec_arm64.cpp ├── rec-cpp │ └── rec_cpp.cpp ├── rec-x64 │ ├── rec_x64.cpp │ ├── x64_regalloc.h │ └── xbyak_base.h ├── rec-x86 │ ├── rec_x86.cpp │ ├── rec_x86.h │ ├── x86_ops.cpp │ └── x86_regalloc.h ├── reios │ ├── descrambl.cpp │ ├── descrambl.h │ ├── font.h │ ├── gdrom_hle.cpp │ ├── gdrom_hle.h │ ├── reios.cpp │ ├── reios.h │ ├── reios_elf.cpp │ └── reios_elf.h ├── rend │ ├── CustomTexture.cpp │ ├── CustomTexture.h │ ├── TexCache.cpp │ ├── TexCache.h │ ├── boxart │ │ ├── boxart.cpp │ │ ├── boxart.h │ │ ├── gamesdb.cpp │ │ ├── gamesdb.h │ │ ├── http_client.cpp │ │ ├── http_client.h │ │ ├── pvrparser.h │ │ ├── scraper.cpp │ │ └── scraper.h │ ├── dx11 │ │ ├── dx11_driver.h │ │ ├── dx11_naomi2.cpp │ │ ├── dx11_naomi2.h │ │ ├── dx11_overlay.cpp │ │ ├── dx11_overlay.h │ │ ├── dx11_quad.h │ │ ├── dx11_renderer.cpp │ │ ├── dx11_renderer.h │ │ ├── dx11_renderstate.cpp │ │ ├── dx11_renderstate.h │ │ ├── dx11_shaders.cpp │ │ ├── dx11_shaders.h │ │ ├── dx11_texture.cpp │ │ ├── dx11_texture.h │ │ ├── dx11context.cpp │ │ ├── dx11context.h │ │ ├── dx11context_lr.cpp │ │ ├── dx11context_lr.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ └── oit │ │ │ ├── dx11_oitbuffers.h │ │ │ ├── dx11_oitrenderer.cpp │ │ │ ├── dx11_oitshaders.cpp │ │ │ └── dx11_oitshaders.h │ ├── dx9 │ │ ├── d3d_overlay.cpp │ │ ├── d3d_overlay.h │ │ ├── d3d_renderer.cpp │ │ ├── d3d_renderer.h │ │ ├── d3d_shaders.cpp │ │ ├── d3d_shaders.h │ │ ├── d3d_texture.cpp │ │ ├── d3d_texture.h │ │ ├── dx9_driver.h │ │ ├── dxcontext.cpp │ │ ├── dxcontext.h │ │ ├── imgui_impl_dx9.cpp │ │ └── imgui_impl_dx9.h │ ├── game_scanner.h │ ├── gl4 │ │ ├── abuffer.cpp │ │ ├── gl4.h │ │ ├── gl4naomi2.cpp │ │ ├── gl4naomi2.h │ │ ├── gldraw.cpp │ │ ├── gles.cpp │ │ └── glsl.h │ ├── gles │ │ ├── glcache.h │ │ ├── gldraw.cpp │ │ ├── gles.cpp │ │ ├── gles.h │ │ ├── gltex.cpp │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── naomi2.cpp │ │ ├── naomi2.h │ │ ├── opengl_driver.cpp │ │ ├── opengl_driver.h │ │ ├── postprocess.cpp │ │ ├── postprocess.h │ │ └── quad.cpp │ ├── gui.cpp │ ├── gui.h │ ├── gui_android.cpp │ ├── gui_android.h │ ├── gui_chat.h │ ├── gui_cheats.cpp │ ├── gui_util.cpp │ ├── gui_util.h │ ├── imgui_driver.h │ ├── mainui.cpp │ ├── mainui.h │ ├── norend │ │ └── norend.cpp │ ├── osd.cpp │ ├── osd.h │ ├── shader_util.h │ ├── sorter.cpp │ ├── sorter.h │ ├── tileclip.h │ ├── transform_matrix.h │ └── vulkan │ │ ├── buffer.cpp │ │ ├── buffer.h │ │ ├── commandpool.h │ │ ├── compiler.cpp │ │ ├── compiler.h │ │ ├── desc_set.h │ │ ├── drawer.cpp │ │ ├── drawer.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── oit │ │ ├── oit_buffer.h │ │ ├── oit_drawer.cpp │ │ ├── oit_drawer.h │ │ ├── oit_pipeline.cpp │ │ ├── oit_pipeline.h │ │ ├── oit_renderer.cpp │ │ ├── oit_renderpass.cpp │ │ ├── oit_renderpass.h │ │ ├── oit_shaders.cpp │ │ └── oit_shaders.h │ │ ├── overlay.cpp │ │ ├── overlay.h │ │ ├── pipeline.cpp │ │ ├── pipeline.h │ │ ├── quad.cpp │ │ ├── quad.h │ │ ├── shaders.cpp │ │ ├── shaders.h │ │ ├── texture.cpp │ │ ├── texture.h │ │ ├── utils.h │ │ ├── vk_context_lr.cpp │ │ ├── vk_context_lr.h │ │ ├── vmallocator.cpp │ │ ├── vmallocator.h │ │ ├── vulkan.h │ │ ├── vulkan_context.cpp │ │ ├── vulkan_context.h │ │ ├── vulkan_driver.h │ │ ├── vulkan_renderer.cpp │ │ └── vulkan_renderer.h ├── sdl │ ├── sdl.cpp │ ├── sdl.h │ ├── sdl_gamepad.h │ └── sdl_keyboard.h ├── serialize.cpp ├── serialize.h ├── stdclass.cpp ├── stdclass.h ├── types.h ├── version.h.in ├── windows │ ├── comptr.h │ ├── fault_handler.cpp │ ├── rawinput.cpp │ ├── rawinput.h │ ├── unwind_info.cpp │ ├── win_keyboard.h │ ├── win_vmem.cpp │ ├── winmain.cpp │ └── xinput_gamepad.h └── wsi │ ├── context.h │ ├── egl.cpp │ ├── egl.h │ ├── gl32funcs.c │ ├── gl32funcs.h │ ├── gl4funcs.cpp │ ├── gl_context.cpp │ ├── gl_context.h │ ├── libretro.cpp │ ├── libretro.h │ ├── osx.cpp │ ├── osx.h │ ├── sdl.cpp │ ├── sdl.h │ ├── switcher.cpp │ ├── wgl.cpp │ ├── wgl.h │ ├── xgl.cpp │ └── xgl.h ├── docs ├── DreamCast_Specs.md ├── Dynarec Architecture.md ├── Naomi_Overview.md ├── Notable game bugs.md ├── microphone support notes.txt └── neil_corlett_aica_notes.txt ├── gdtool ├── gdtool.sln ├── gdtool.vcxproj ├── gdtool.vcxproj.filters ├── gdtool.vcxproj.user └── src │ ├── cdromfs.cpp │ ├── cdromfs.h │ ├── cdromfs_imp.h │ └── main.cpp ├── intl ├── .gitignore ├── activate.py ├── core_option_regex.py ├── core_option_translation.py ├── crowdin.yaml ├── crowdin_prep.py ├── crowdin_source_upload.py ├── crowdin_translate.py ├── crowdin_translation_download.py ├── download_workflow.py ├── initial_sync.py ├── remove_initial_cycle.py ├── upload_workflow.py └── v1_to_v2_converter.py ├── shell ├── android-studio │ ├── .gitignore │ ├── build.gradle │ ├── debug.keystore │ ├── flycast │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── libs │ │ │ └── ouya-sdk.jar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── res │ │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── buttons.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reicast │ │ │ │ └── emulator │ │ │ │ ├── BaseGLActivity.java │ │ │ │ ├── Emulator.java │ │ │ │ ├── FileBrowser.java │ │ │ │ ├── NativeGLActivity.java │ │ │ │ ├── config │ │ │ │ └── Config.java │ │ │ │ ├── debug │ │ │ │ └── GenerateLogs.java │ │ │ │ ├── emu │ │ │ │ ├── AudioBackend.java │ │ │ │ ├── HttpClient.java │ │ │ │ ├── JNIdc.java │ │ │ │ ├── NativeGLView.java │ │ │ │ └── VirtualJoystickDelegate.java │ │ │ │ └── periph │ │ │ │ ├── InputDeviceManager.java │ │ │ │ ├── SipEmulator.java │ │ │ │ └── VJoy.java │ │ │ ├── jni │ │ │ └── src │ │ │ │ ├── Android.cpp │ │ │ │ ├── android_gamepad.h │ │ │ │ ├── android_keyboard.h │ │ │ │ └── http_client.h │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_banner.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ └── background_dark.xml │ │ │ ├── mipmap │ │ │ └── texture_dark.png │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── donottranslate.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── provider_paths.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── ic_launcher-web.png │ ├── icons │ │ └── cd.pdn │ ├── psd │ │ ├── dark_texture.psd │ │ ├── disk_mipmap.psd │ │ └── icon_drawable.psd │ └── settings.gradle ├── apple │ ├── common │ │ └── http_client.mm │ ├── emulator-ios │ │ ├── AltKit │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── AltKit │ │ │ │ ├── Extensions │ │ │ │ │ ├── ALTServerError+Conveniences.swift │ │ │ │ │ └── Result+Conveniences.swift │ │ │ │ ├── Server │ │ │ │ │ ├── Connection.swift │ │ │ │ │ ├── NetworkConnection.swift │ │ │ │ │ ├── Server.swift │ │ │ │ │ ├── ServerConnection.swift │ │ │ │ │ ├── ServerManager.swift │ │ │ │ │ └── ServerProtocol.swift │ │ │ │ └── Types │ │ │ │ │ └── CodableServerError.swift │ │ │ │ └── CAltKit │ │ │ │ ├── NSError+ALTServerError.h │ │ │ │ ├── NSError+ALTServerError.m │ │ │ │ ├── include │ │ │ │ └── NSError+ALTServerError.h │ │ │ │ └── module.modulemap │ │ ├── LLDBInitFile │ │ ├── emulator │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── EmulatorView.h │ │ │ ├── EmulatorView.mm │ │ │ ├── FlycastStoryboard.storyboard │ │ │ ├── FlycastViewController.h │ │ │ ├── FlycastViewController.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── ABXYPad.imageset │ │ │ │ │ ├── ABXYPad.png │ │ │ │ │ ├── ABXYPad@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── 120-1.png │ │ │ │ │ ├── 120.png │ │ │ │ │ ├── 152.png │ │ │ │ │ ├── 167.png │ │ │ │ │ ├── 180.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 40-1.png │ │ │ │ │ ├── 40-2.png │ │ │ │ │ ├── 40.png │ │ │ │ │ ├── 58-1.png │ │ │ │ │ ├── 58.png │ │ │ │ │ ├── 60.png │ │ │ │ │ ├── 76.png │ │ │ │ │ ├── 80-1.png │ │ │ │ │ ├── 80.png │ │ │ │ │ ├── 87.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── appstore.png │ │ │ │ ├── Contents.json │ │ │ │ ├── DPad.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── DPad.png │ │ │ │ │ └── DPad@2x.png │ │ │ │ ├── JoystickBackground.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── JoystickBackground.png │ │ │ │ │ └── JoystickBackground@2x.png │ │ │ │ ├── JoystickButton.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── JoystickButton.png │ │ │ │ │ └── JoystickButton@2x.png │ │ │ │ ├── LTrigger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LTrigger.png │ │ │ │ │ └── LTrigger@2x.png │ │ │ │ ├── RTrigger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── RTrigger.png │ │ │ │ │ └── RTrigger@2x.png │ │ │ │ ├── Start.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Start.png │ │ │ │ │ └── Start@2x.png │ │ │ │ ├── flycast.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── flycast.png │ │ │ │ └── menuicon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── menuicon.png │ │ │ │ │ └── menuicon@2x.png │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PadViewController.h │ │ │ ├── PadViewController.mm │ │ │ ├── PadViewController.xib │ │ │ ├── flycast-ios-Prefix.pch │ │ │ ├── flycast.entitlements │ │ │ ├── iCade-iOS │ │ │ │ ├── LICENSE │ │ │ │ ├── iCadeReaderView.h │ │ │ │ ├── iCadeReaderView.m │ │ │ │ └── iCadeState.h │ │ │ ├── ios_gamepad.h │ │ │ ├── ios_keyboard.h │ │ │ ├── ios_main.mm │ │ │ ├── ios_mouse.h │ │ │ └── main.m │ │ └── plist.in │ ├── emulator-osx │ │ ├── LLDBInitFile │ │ ├── MacOSXBundleInfo.plist.in │ │ └── emulator-osx │ │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-128.png │ │ │ │ ├── Icon-16.png │ │ │ │ ├── Icon-256.png │ │ │ │ ├── Icon-32.png │ │ │ │ ├── Icon-512.png │ │ │ │ └── Icon-64.png │ │ │ ├── SDLMain.h │ │ │ ├── SDLMain.mm │ │ │ └── osx-main.mm │ ├── generate_xcode_project.command │ └── libomp.rb ├── cmake │ └── FindMiniUPnPc.cmake ├── imgs │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ └── screenshot4.png ├── libretro │ ├── LogManager.cpp │ ├── LogManager.h │ ├── audiostream.cpp │ ├── keyboard_map.h │ ├── libretro.cpp │ ├── libretro_core_option_defines.h │ ├── libretro_core_options.h │ ├── libretro_core_options_intl.h │ ├── option.cpp │ ├── option_lr.h │ ├── oslib.cpp │ ├── vmu_xhair.cpp │ └── vmu_xhair.h ├── linux │ ├── flycast.desktop │ ├── flycast.png │ ├── man │ │ └── flycast.1 │ ├── mappings │ │ ├── controller_generic.cfg │ │ ├── controller_pandora.cfg │ │ ├── controller_xboxdrv.cfg │ │ ├── controller_xpad.cfg │ │ └── keyboard.cfg │ └── org.flycast.Flycast.metainfo.xml ├── switch │ ├── context_switch.S │ ├── flycast.jpeg │ ├── nswitch.h │ ├── stubs.c │ ├── sys │ │ └── mman.h │ └── ucontext.h ├── uwp │ ├── flycast150.png │ ├── flycast44.png │ ├── flycast44.targetsize-48_altform-lightunplated.png │ ├── flycast44.targetsize-48_altform-unplated.png │ ├── flycast48.png │ ├── flycast50.png │ ├── http_client.cpp │ ├── package.appxManifest │ ├── sign_cert.pfx │ └── splash.png ├── vita │ ├── bg.png │ ├── icon0.png │ ├── startup.png │ └── template.xml └── windows │ ├── flycast.ico │ ├── flycast.rc │ └── resource.h ├── tests ├── files │ └── test_gdis │ │ ├── a │ │ ├── cs.gdi │ │ └── tracks │ │ │ ├── cs01.bin │ │ │ ├── cs02.raw │ │ │ └── cs03.bin │ │ ├── b │ │ ├── cs.gdi │ │ ├── cs01.bin │ │ ├── cs02.raw │ │ └── cs03.bin │ │ ├── c │ │ ├── cs.gdi │ │ └── tracks │ │ │ ├── cs01.bin │ │ │ ├── cs02.raw │ │ │ └── cs03.bin │ │ └── d │ │ ├── cs (0,1).bin │ │ ├── cs.gdi │ │ ├── cs02.raw │ │ └── cs03.bin └── src │ ├── AicaArmTest.cpp │ ├── CheatManagerTest.cpp │ ├── ConfigFileTest.cpp │ ├── Sh4InterpreterTest.cpp │ ├── div32_test.cpp │ ├── serialize_test.cpp │ ├── sh4_ops.h │ └── test_stubs.cpp └── vcpkg.json /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/switch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.github/workflows/switch.yml -------------------------------------------------------------------------------- /.github/workflows/uwp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.github/workflows/uwp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/README.md -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /version.h 2 | -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/README.md -------------------------------------------------------------------------------- /core/archive/7zArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/7zArchive.cpp -------------------------------------------------------------------------------- /core/archive/7zArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/7zArchive.h -------------------------------------------------------------------------------- /core/archive/ZipArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/ZipArchive.cpp -------------------------------------------------------------------------------- /core/archive/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/ZipArchive.h -------------------------------------------------------------------------------- /core/archive/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/archive.cpp -------------------------------------------------------------------------------- /core/archive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/archive.h -------------------------------------------------------------------------------- /core/archive/rzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/rzip.cpp -------------------------------------------------------------------------------- /core/archive/rzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/archive/rzip.h -------------------------------------------------------------------------------- /core/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/build.h -------------------------------------------------------------------------------- /core/cfg/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cfg/cfg.cpp -------------------------------------------------------------------------------- /core/cfg/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cfg/cfg.h -------------------------------------------------------------------------------- /core/cfg/cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cfg/cl.cpp -------------------------------------------------------------------------------- /core/cfg/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cfg/ini.cpp -------------------------------------------------------------------------------- /core/cfg/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cfg/ini.h -------------------------------------------------------------------------------- /core/cfg/option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cfg/option.cpp -------------------------------------------------------------------------------- /core/cfg/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cfg/option.h -------------------------------------------------------------------------------- /core/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cheats.cpp -------------------------------------------------------------------------------- /core/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/cheats.h -------------------------------------------------------------------------------- /core/debug/debug_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/debug/debug_agent.h -------------------------------------------------------------------------------- /core/debug/gdb_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/debug/gdb_server.cpp -------------------------------------------------------------------------------- /core/debug/gdb_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/debug/gdb_server.h -------------------------------------------------------------------------------- /core/deps/chdpsr/cdipsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/chdpsr/cdipsr.cpp -------------------------------------------------------------------------------- /core/deps/chdpsr/cdipsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/chdpsr/cdipsr.h -------------------------------------------------------------------------------- /core/deps/dirent/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/dirent/dirent.h -------------------------------------------------------------------------------- /core/deps/ggpo/include/ggponet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/ggpo/include/ggponet.h -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/ggpo/lib/ggpo/log.cpp -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/ggpo/lib/ggpo/log.h -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/ggpo/lib/ggpo/main.cpp -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/poll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/ggpo/lib/ggpo/poll.cpp -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/ggpo/lib/ggpo/sync.cpp -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/ggpo/lib/ggpo/sync.h -------------------------------------------------------------------------------- /core/deps/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/copying.txt -------------------------------------------------------------------------------- /core/deps/glm/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/bc_s.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/bdwn.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/closed.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/doc.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/files.html -------------------------------------------------------------------------------- /core/deps/glm/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/index.html -------------------------------------------------------------------------------- /core/deps/glm/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/jquery.js -------------------------------------------------------------------------------- /core/deps/glm/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/nav_f.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/nav_g.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/nav_h.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/open.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/tab_a.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/tab_b.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/tab_h.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/tab_s.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/api/tabs.css -------------------------------------------------------------------------------- /core/deps/glm/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/man.doxy -------------------------------------------------------------------------------- /core/deps/glm/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/manual.pdf -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/theme/bc_s.png -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/theme/bdwn.png -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/theme/doc.png -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/doc/theme/open.png -------------------------------------------------------------------------------- /core/deps/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/common.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/deps/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /core/deps/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/ext.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/glm.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/integer.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/packing.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/simd/common.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /core/deps/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /core/deps/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/manual.md -------------------------------------------------------------------------------- /core/deps/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/readme.md -------------------------------------------------------------------------------- /core/deps/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /core/deps/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /core/deps/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /core/deps/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/util/autoexp.txt -------------------------------------------------------------------------------- /core/deps/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/util/glm.natvis -------------------------------------------------------------------------------- /core/deps/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/glm/util/usertype.dat -------------------------------------------------------------------------------- /core/deps/gtest/gtest-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/gtest-matchers.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/gtest-message.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/gtest-printers.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/gtest-spi.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/gtest.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/gtest_prod.h -------------------------------------------------------------------------------- /core/deps/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /core/deps/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/gtest/src/gtest.cc -------------------------------------------------------------------------------- /core/deps/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imconfig.h -------------------------------------------------------------------------------- /core/deps/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imgui.cpp -------------------------------------------------------------------------------- /core/deps/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imgui.h -------------------------------------------------------------------------------- /core/deps/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /core/deps/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /core/deps/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imgui_internal.h -------------------------------------------------------------------------------- /core/deps/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /core/deps/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /core/deps/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /core/deps/imgui/roboto_medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/imgui/roboto_medium.h -------------------------------------------------------------------------------- /core/deps/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/json/json.hpp -------------------------------------------------------------------------------- /core/deps/libelf/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libelf/debug.h -------------------------------------------------------------------------------- /core/deps/libelf/elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libelf/elf.cpp -------------------------------------------------------------------------------- /core/deps/libelf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libelf/elf.h -------------------------------------------------------------------------------- /core/deps/libelf/elf32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libelf/elf32.cpp -------------------------------------------------------------------------------- /core/deps/libelf/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libelf/elf32.h -------------------------------------------------------------------------------- /core/deps/libelf/elf64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libelf/elf64.cpp -------------------------------------------------------------------------------- /core/deps/libelf/elf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libelf/elf64.h -------------------------------------------------------------------------------- /core/deps/libzip/API-CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/API-CHANGES.md -------------------------------------------------------------------------------- /core/deps/libzip/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/AUTHORS -------------------------------------------------------------------------------- /core/deps/libzip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/libzip/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/INSTALL.md -------------------------------------------------------------------------------- /core/deps/libzip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/LICENSE -------------------------------------------------------------------------------- /core/deps/libzip/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/NEWS.md -------------------------------------------------------------------------------- /core/deps/libzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/README.md -------------------------------------------------------------------------------- /core/deps/libzip/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/THANKS -------------------------------------------------------------------------------- /core/deps/libzip/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/TODO.md -------------------------------------------------------------------------------- /core/deps/libzip/android/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/android/do.sh -------------------------------------------------------------------------------- /core/deps/libzip/lib/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/compat.h -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip.h -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_add.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_close.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_entry.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_error.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_fopen.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_fread.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_fseek.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_ftell.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_hash.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_new.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_open.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_stat.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zip_utf-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zip_utf-8.c -------------------------------------------------------------------------------- /core/deps/libzip/lib/zipint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/lib/zipint.h -------------------------------------------------------------------------------- /core/deps/libzip/libzip.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/libzip.pc.in -------------------------------------------------------------------------------- /core/deps/libzip/man/libzip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/libzip.html -------------------------------------------------------------------------------- /core/deps/libzip/man/libzip.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/libzip.man -------------------------------------------------------------------------------- /core/deps/libzip/man/libzip.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/libzip.mdoc -------------------------------------------------------------------------------- /core/deps/libzip/man/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/links -------------------------------------------------------------------------------- /core/deps/libzip/man/mkdocset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/mkdocset.pl -------------------------------------------------------------------------------- /core/deps/libzip/man/nih-man.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/nih-man.css -------------------------------------------------------------------------------- /core/deps/libzip/man/zip_add.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/zip_add.man -------------------------------------------------------------------------------- /core/deps/libzip/man/zipcmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/zipcmp.html -------------------------------------------------------------------------------- /core/deps/libzip/man/zipcmp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/zipcmp.man -------------------------------------------------------------------------------- /core/deps/libzip/man/zipcmp.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/zipcmp.mdoc -------------------------------------------------------------------------------- /core/deps/libzip/man/ziptool.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/libzip/man/ziptool.man -------------------------------------------------------------------------------- /core/deps/libzip/vstudio/zlib/unpack_zlib_here.txt: -------------------------------------------------------------------------------- 1 | Unpack zlib source archive into this directory. -------------------------------------------------------------------------------- /core/deps/lzma/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7z.h -------------------------------------------------------------------------------- /core/deps/lzma/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zArcIn.c -------------------------------------------------------------------------------- /core/deps/lzma/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zBuf.c -------------------------------------------------------------------------------- /core/deps/lzma/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zBuf.h -------------------------------------------------------------------------------- /core/deps/lzma/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zCrc.c -------------------------------------------------------------------------------- /core/deps/lzma/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zCrc.h -------------------------------------------------------------------------------- /core/deps/lzma/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zCrcOpt.c -------------------------------------------------------------------------------- /core/deps/lzma/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zDec.c -------------------------------------------------------------------------------- /core/deps/lzma/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zFile.c -------------------------------------------------------------------------------- /core/deps/lzma/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zFile.h -------------------------------------------------------------------------------- /core/deps/lzma/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zStream.c -------------------------------------------------------------------------------- /core/deps/lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/7zTypes.h -------------------------------------------------------------------------------- /core/deps/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Alloc.c -------------------------------------------------------------------------------- /core/deps/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Alloc.h -------------------------------------------------------------------------------- /core/deps/lzma/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Bcj2.c -------------------------------------------------------------------------------- /core/deps/lzma/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Bcj2.h -------------------------------------------------------------------------------- /core/deps/lzma/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Bra.c -------------------------------------------------------------------------------- /core/deps/lzma/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Bra.h -------------------------------------------------------------------------------- /core/deps/lzma/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Bra86.c -------------------------------------------------------------------------------- /core/deps/lzma/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/BraIA64.c -------------------------------------------------------------------------------- /core/deps/lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Compiler.h -------------------------------------------------------------------------------- /core/deps/lzma/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/CpuArch.c -------------------------------------------------------------------------------- /core/deps/lzma/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/CpuArch.h -------------------------------------------------------------------------------- /core/deps/lzma/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Delta.c -------------------------------------------------------------------------------- /core/deps/lzma/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Delta.h -------------------------------------------------------------------------------- /core/deps/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzFind.c -------------------------------------------------------------------------------- /core/deps/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzFind.h -------------------------------------------------------------------------------- /core/deps/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzHash.h -------------------------------------------------------------------------------- /core/deps/lzma/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Lzma2Dec.c -------------------------------------------------------------------------------- /core/deps/lzma/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Lzma2Dec.h -------------------------------------------------------------------------------- /core/deps/lzma/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Lzma86.h -------------------------------------------------------------------------------- /core/deps/lzma/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Lzma86Dec.c -------------------------------------------------------------------------------- /core/deps/lzma/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Lzma86Enc.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzmaDec.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzmaDec.h -------------------------------------------------------------------------------- /core/deps/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /core/deps/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzmaLib.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/LzmaLib.h -------------------------------------------------------------------------------- /core/deps/lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Precomp.h -------------------------------------------------------------------------------- /core/deps/lzma/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Sort.c -------------------------------------------------------------------------------- /core/deps/lzma/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/lzma/Sort.h -------------------------------------------------------------------------------- /core/deps/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/md5/md5.cpp -------------------------------------------------------------------------------- /core/deps/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/md5/md5.h -------------------------------------------------------------------------------- /core/deps/miniupnpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/miniupnpc/.gitignore -------------------------------------------------------------------------------- /core/deps/miniupnpc/LICENSE: -------------------------------------------------------------------------------- 1 | ../LICENSE -------------------------------------------------------------------------------- /core/deps/miniupnpc/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/miniupnpc/MANIFEST.in -------------------------------------------------------------------------------- /core/deps/miniupnpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/miniupnpc/Makefile -------------------------------------------------------------------------------- /core/deps/miniupnpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/miniupnpc/README -------------------------------------------------------------------------------- /core/deps/miniupnpc/VERSION: -------------------------------------------------------------------------------- 1 | 2.2.3 2 | -------------------------------------------------------------------------------- /core/deps/miniupnpc/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.jar 3 | -------------------------------------------------------------------------------- /core/deps/miniupnpc/miniupnpc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/miniupnpc/miniupnpc.rc -------------------------------------------------------------------------------- /core/deps/miniupnpc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/miniupnpc/setup.py -------------------------------------------------------------------------------- /core/deps/miniupnpc/src/upnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/miniupnpc/src/upnpc.c -------------------------------------------------------------------------------- /core/deps/miniupnpc/testreplyparse/DeletePortMapping.namevalue: -------------------------------------------------------------------------------- 1 | NewRemoteHost= 2 | NewExternalPort=123 3 | NewProtocol=TCP 4 | -------------------------------------------------------------------------------- /core/deps/miniupnpc/testreplyparse/GetExternalIPAddress.namevalue: -------------------------------------------------------------------------------- 1 | NewExternalIPAddress=1.2.3.4 2 | 3 | -------------------------------------------------------------------------------- /core/deps/nowide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/nowide/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/nowide/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/nowide/COPYING -------------------------------------------------------------------------------- /core/deps/nowide/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/nowide/Doxyfile.in -------------------------------------------------------------------------------- /core/deps/nowide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/nowide/README.md -------------------------------------------------------------------------------- /core/deps/nowide/test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/nowide/test/test.hpp -------------------------------------------------------------------------------- /core/deps/oboe/gamesdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/oboe/gamesdk.cmake -------------------------------------------------------------------------------- /core/deps/oboe/libs/arm64-v8a_API28_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | arm64-v8a_API28_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/oboe/libs/arm64-v8a_API29_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | arm64-v8a_API29_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/oboe/libs/armeabi-v7a_API28_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | armeabi-v7a_API28_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/oboe/libs/armeabi-v7a_API29_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | armeabi-v7a_API29_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/oboe/libs/x86_64_API28_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | x86_64_API28_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/oboe/libs/x86_64_API29_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | x86_64_API29_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/oboe/libs/x86_API28_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | x86_API28_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/oboe/libs/x86_API29_NDK21_cpp_static_RelWithDebInfo: -------------------------------------------------------------------------------- 1 | x86_API29_NDK21_cpp_static_Release -------------------------------------------------------------------------------- /core/deps/picotcp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/COPYING -------------------------------------------------------------------------------- /core/deps/picotcp/LICENSE.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/LICENSE.GPLv2 -------------------------------------------------------------------------------- /core/deps/picotcp/LICENSE.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/LICENSE.GPLv3 -------------------------------------------------------------------------------- /core/deps/picotcp/MODTREE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/MODTREE -------------------------------------------------------------------------------- /core/deps/picotcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/Makefile -------------------------------------------------------------------------------- /core/deps/picotcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/README.md -------------------------------------------------------------------------------- /core/deps/picotcp/include/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/include/heap.h -------------------------------------------------------------------------------- /core/deps/picotcp/mkdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/mkdeps.sh -------------------------------------------------------------------------------- /core/deps/picotcp/rules/crc.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_CRC 2 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/rules/debug.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/eth.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/rules/eth.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/icmp4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/rules/icmp4.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/ipv4.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_IPV4 2 | MOD_OBJ+=$(LIBBASE)modules/pico_ipv4.o 3 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/ipv4frag.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_IPV4FRAG 2 | MOD_OBJ+=$(LIBBASE)modules/pico_fragments.o 3 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/ppp.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_PPP 2 | MOD_OBJ+=$(LIBBASE)modules/pico_dev_ppp.o 3 | 4 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/tap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/rules/tap.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/tcp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/rules/tcp.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/tun.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/rules/tun.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/udp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/picotcp/rules/udp.mk -------------------------------------------------------------------------------- /core/deps/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/stb/stb_image.h -------------------------------------------------------------------------------- /core/deps/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/stb/stb_image_write.h -------------------------------------------------------------------------------- /core/deps/vixl/cpu-features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/cpu-features.cc -------------------------------------------------------------------------------- /core/deps/vixl/cpu-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/cpu-features.h -------------------------------------------------------------------------------- /core/deps/vixl/globals-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/globals-vixl.h -------------------------------------------------------------------------------- /core/deps/vixl/invalset-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/invalset-vixl.h -------------------------------------------------------------------------------- /core/deps/vixl/platform-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/platform-vixl.h -------------------------------------------------------------------------------- /core/deps/vixl/pool-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/pool-manager.h -------------------------------------------------------------------------------- /core/deps/vixl/utils-vixl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/utils-vixl.cc -------------------------------------------------------------------------------- /core/deps/vixl/utils-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/vixl/utils-vixl.h -------------------------------------------------------------------------------- /core/deps/xbrz/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbrz/Changelog.txt -------------------------------------------------------------------------------- /core/deps/xbrz/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbrz/License.txt -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbrz/xbrz.cpp -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbrz/xbrz.h -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbrz/xbrz_config.h -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbrz/xbrz_tools.h -------------------------------------------------------------------------------- /core/deps/xbyak/.gitignore: -------------------------------------------------------------------------------- 1 | /build* # cmake 2 | -------------------------------------------------------------------------------- /core/deps/xbyak/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /core/deps/xbyak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/cmake/config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-targets.cmake") 2 | -------------------------------------------------------------------------------- /core/deps/xbyak/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/gen/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/gen/avx_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/gen/avx_type.hpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/b2hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/gen/b2hex.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/gen_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/gen/gen_code.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/sortline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/gen/sortline.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/gen/update.bat -------------------------------------------------------------------------------- /core/deps/xbyak/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/readme.md -------------------------------------------------------------------------------- /core/deps/xbyak/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/readme.txt -------------------------------------------------------------------------------- /core/deps/xbyak/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/sample/bf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/bf.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/calc.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/calc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/calc2.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/echo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/echo.bf -------------------------------------------------------------------------------- /core/deps/xbyak/sample/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/hello.bf -------------------------------------------------------------------------------- /core/deps/xbyak/sample/test0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/test0.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/toyvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/sample/toyvm.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/test/a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/a.bat -------------------------------------------------------------------------------- /core/deps/xbyak/test/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/address.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/jmp.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/jmp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/jmp.sln -------------------------------------------------------------------------------- /core/deps/xbyak/test/jmp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/jmp.vcproj -------------------------------------------------------------------------------- /core/deps/xbyak/test/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/lib.h -------------------------------------------------------------------------------- /core/deps/xbyak/test/lib_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/lib_min.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/lib_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/lib_run.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/make_nm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/make_nm.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/misc.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/readme.txt -------------------------------------------------------------------------------- /core/deps/xbyak/test/set_opt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/set_opt.bat -------------------------------------------------------------------------------- /core/deps/xbyak/test/sf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/sf_test.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/state.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/state.pptx -------------------------------------------------------------------------------- /core/deps/xbyak/test/test_avx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/test_avx.sh -------------------------------------------------------------------------------- /core/deps/xbyak/test/test_nm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/test_nm.bat -------------------------------------------------------------------------------- /core/deps/xbyak/test/test_nm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/test/test_nm.sh -------------------------------------------------------------------------------- /core/deps/xbyak/xbyak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/xbyak.sln -------------------------------------------------------------------------------- /core/deps/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /core/deps/xxHash/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/.gitattributes -------------------------------------------------------------------------------- /core/deps/xxHash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/.gitignore -------------------------------------------------------------------------------- /core/deps/xxHash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/.travis.yml -------------------------------------------------------------------------------- /core/deps/xxHash/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/CHANGELOG -------------------------------------------------------------------------------- /core/deps/xxHash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/LICENSE -------------------------------------------------------------------------------- /core/deps/xxHash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/Makefile -------------------------------------------------------------------------------- /core/deps/xxHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/README.md -------------------------------------------------------------------------------- /core/deps/xxHash/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/appveyor.yml -------------------------------------------------------------------------------- /core/deps/xxHash/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/doc/README.md -------------------------------------------------------------------------------- /core/deps/xxHash/libxxhash.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/libxxhash.pc.in -------------------------------------------------------------------------------- /core/deps/xxHash/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/tests/Makefile -------------------------------------------------------------------------------- /core/deps/xxHash/tests/collisions/.gitignore: -------------------------------------------------------------------------------- 1 | #build artefacts 2 | collisionsTest 3 | -------------------------------------------------------------------------------- /core/deps/xxHash/tests/collisions/allcodecs/README.md: -------------------------------------------------------------------------------- 1 | Put in this directory all hash algorithms to test 2 | -------------------------------------------------------------------------------- /core/deps/xxHash/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/xxh3.h -------------------------------------------------------------------------------- /core/deps/xxHash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/xxhash.c -------------------------------------------------------------------------------- /core/deps/xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/xxhash.h -------------------------------------------------------------------------------- /core/deps/xxHash/xxhsum.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/xxhsum.1 -------------------------------------------------------------------------------- /core/deps/xxHash/xxhsum.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/xxhsum.1.md -------------------------------------------------------------------------------- /core/deps/xxHash/xxhsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/deps/xxHash/xxhsum.c -------------------------------------------------------------------------------- /core/emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/emulator.cpp -------------------------------------------------------------------------------- /core/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/emulator.h -------------------------------------------------------------------------------- /core/hw/aica/aica.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/aica.cpp -------------------------------------------------------------------------------- /core/hw/aica/aica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/aica.h -------------------------------------------------------------------------------- /core/hw/aica/aica_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/aica_if.cpp -------------------------------------------------------------------------------- /core/hw/aica/aica_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/aica_if.h -------------------------------------------------------------------------------- /core/hw/aica/aica_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/aica_mem.cpp -------------------------------------------------------------------------------- /core/hw/aica/aica_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/aica_mem.h -------------------------------------------------------------------------------- /core/hw/aica/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/dsp.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/dsp.h -------------------------------------------------------------------------------- /core/hw/aica/dsp_arm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/dsp_arm32.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/dsp_arm64.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/dsp_interp.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/dsp_x64.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/dsp_x86.cpp -------------------------------------------------------------------------------- /core/hw/aica/sgc_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/sgc_if.cpp -------------------------------------------------------------------------------- /core/hw/aica/sgc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/aica/sgc_if.h -------------------------------------------------------------------------------- /core/hw/arm7/arm-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm-new.h -------------------------------------------------------------------------------- /core/hw/arm7/arm7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm7.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm7.h -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm7_rec.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm7_rec.h -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec_arm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm7_rec_arm32.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm7_rec_arm64.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm7_rec_x64.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm_mem.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/arm7/arm_mem.h -------------------------------------------------------------------------------- /core/hw/bba/bba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/bba/bba.cpp -------------------------------------------------------------------------------- /core/hw/bba/bba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/bba/bba.h -------------------------------------------------------------------------------- /core/hw/bba/rtl8139c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/bba/rtl8139c.cpp -------------------------------------------------------------------------------- /core/hw/bba/rtl8139c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/bba/rtl8139c.h -------------------------------------------------------------------------------- /core/hw/flashrom/flashrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/flashrom/flashrom.cpp -------------------------------------------------------------------------------- /core/hw/flashrom/flashrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/flashrom/flashrom.h -------------------------------------------------------------------------------- /core/hw/gdrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/gdrom/README.md -------------------------------------------------------------------------------- /core/hw/gdrom/gdrom_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/gdrom/gdrom_if.h -------------------------------------------------------------------------------- /core/hw/gdrom/gdrom_response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/gdrom/gdrom_response.cpp -------------------------------------------------------------------------------- /core/hw/gdrom/gdromv3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/gdrom/gdromv3.cpp -------------------------------------------------------------------------------- /core/hw/gdrom/gdromv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/gdrom/gdromv3.h -------------------------------------------------------------------------------- /core/hw/holly/holly_intc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/holly/holly_intc.cpp -------------------------------------------------------------------------------- /core/hw/holly/holly_intc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/holly/holly_intc.h -------------------------------------------------------------------------------- /core/hw/holly/sb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/holly/sb.cpp -------------------------------------------------------------------------------- /core/hw/holly/sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/holly/sb.h -------------------------------------------------------------------------------- /core/hw/holly/sb_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/holly/sb_mem.cpp -------------------------------------------------------------------------------- /core/hw/holly/sb_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/holly/sb_mem.h -------------------------------------------------------------------------------- /core/hw/hwreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/hwreg.h -------------------------------------------------------------------------------- /core/hw/maple/maple_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_cfg.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_cfg.h -------------------------------------------------------------------------------- /core/hw/maple/maple_devs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_devs.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_devs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_devs.h -------------------------------------------------------------------------------- /core/hw/maple/maple_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_helper.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_helper.h -------------------------------------------------------------------------------- /core/hw/maple/maple_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_if.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_if.h -------------------------------------------------------------------------------- /core/hw/maple/maple_jvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/maple/maple_jvs.cpp -------------------------------------------------------------------------------- /core/hw/mem/_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/mem/_vmem.cpp -------------------------------------------------------------------------------- /core/hw/mem/_vmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/mem/_vmem.h -------------------------------------------------------------------------------- /core/hw/mem/mem_watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/mem/mem_watch.cpp -------------------------------------------------------------------------------- /core/hw/mem/mem_watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/mem/mem_watch.h -------------------------------------------------------------------------------- /core/hw/modem/modem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/modem/modem.cpp -------------------------------------------------------------------------------- /core/hw/modem/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/modem/modem.h -------------------------------------------------------------------------------- /core/hw/modem/modem_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/modem/modem_regs.h -------------------------------------------------------------------------------- /core/hw/naomi/awave_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/awave_regs.h -------------------------------------------------------------------------------- /core/hw/naomi/awcartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/awcartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/awcartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/awcartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/card_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/card_reader.cpp -------------------------------------------------------------------------------- /core/hw/naomi/card_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/card_reader.h -------------------------------------------------------------------------------- /core/hw/naomi/decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/decrypt.cpp -------------------------------------------------------------------------------- /core/hw/naomi/decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/decrypt.h -------------------------------------------------------------------------------- /core/hw/naomi/gdcartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/gdcartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/gdcartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/gdcartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/m1cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/m1cartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/m1cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/m1cartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/m4cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/m4cartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/m4cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/m4cartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_cart.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_cart.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_flashrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_flashrom.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_flashrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_flashrom.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_m3comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_m3comm.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_m3comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_m3comm.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_regs.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_roms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_roms.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_roms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_roms.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_roms_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/naomi/naomi_roms_input.h -------------------------------------------------------------------------------- /core/hw/pvr/Renderer_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/Renderer_if.cpp -------------------------------------------------------------------------------- /core/hw/pvr/Renderer_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/Renderer_if.h -------------------------------------------------------------------------------- /core/hw/pvr/elan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/elan.cpp -------------------------------------------------------------------------------- /core/hw/pvr/elan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/elan.h -------------------------------------------------------------------------------- /core/hw/pvr/elan_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/elan_struct.h -------------------------------------------------------------------------------- /core/hw/pvr/helper_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/helper_classes.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr_mem.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr_mem.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr_regs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr_regs.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr_regs.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr_sb_regs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr_sb_regs.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr_sb_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/pvr_sb_regs.h -------------------------------------------------------------------------------- /core/hw/pvr/spg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/spg.cpp -------------------------------------------------------------------------------- /core/hw/pvr/spg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/spg.h -------------------------------------------------------------------------------- /core/hw/pvr/ta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/ta.cpp -------------------------------------------------------------------------------- /core/hw/pvr/ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/ta.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_const_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/ta_const_df.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/ta_ctx.cpp -------------------------------------------------------------------------------- /core/hw/pvr/ta_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/ta_ctx.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/ta_structs.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_vtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/pvr/ta_vtx.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/blockmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/blockmanager.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/decoder.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/decoder.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/driver.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ngen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/ngen.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/shil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/shil.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/shil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/shil.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ssa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/ssa.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ssa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/ssa.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ssa_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/dyna/ssa_regalloc.h -------------------------------------------------------------------------------- /core/hw/sh4/fsca-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/fsca-table.h -------------------------------------------------------------------------------- /core/hw/sh4/interpr/sh4_fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/interpr/sh4_fpu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/bsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/bsc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/ccn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/ccn.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/ccn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/ccn.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/cpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/cpg.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/dmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/dmac.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/dmac.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/fastmmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/fastmmu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/intc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/intc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/mmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/mmu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/mmu.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/modules.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/rtc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/serial.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/tmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/tmu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/ubc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/ubc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/wince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/modules/wince.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_cache.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_core.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_core_regs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_core_regs.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_if.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_interpreter.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_interrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_interrupts.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_interrupts.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_mem.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_mem.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mmr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_mmr.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_mmr.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_opcode_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_opcode_list.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_opcode_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_opcode_list.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_rom.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_rom.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_sched.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/hw/sh4/sh4_sched.h -------------------------------------------------------------------------------- /core/imgread/ImgReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/ImgReader.cpp -------------------------------------------------------------------------------- /core/imgread/cdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/cdi.cpp -------------------------------------------------------------------------------- /core/imgread/chd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/chd.cpp -------------------------------------------------------------------------------- /core/imgread/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/common.cpp -------------------------------------------------------------------------------- /core/imgread/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/common.h -------------------------------------------------------------------------------- /core/imgread/cue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/cue.cpp -------------------------------------------------------------------------------- /core/imgread/gdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/gdi.cpp -------------------------------------------------------------------------------- /core/imgread/ioctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/ioctl.cpp -------------------------------------------------------------------------------- /core/imgread/iso9660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/iso9660.h -------------------------------------------------------------------------------- /core/imgread/isofs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/isofs.cpp -------------------------------------------------------------------------------- /core/imgread/isofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/imgread/isofs.h -------------------------------------------------------------------------------- /core/input/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/gamepad.h -------------------------------------------------------------------------------- /core/input/gamepad_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/gamepad_device.cpp -------------------------------------------------------------------------------- /core/input/gamepad_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/gamepad_device.h -------------------------------------------------------------------------------- /core/input/keyboard_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/keyboard_device.h -------------------------------------------------------------------------------- /core/input/mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/mapping.cpp -------------------------------------------------------------------------------- /core/input/mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/mapping.h -------------------------------------------------------------------------------- /core/input/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/mouse.cpp -------------------------------------------------------------------------------- /core/input/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/input/mouse.h -------------------------------------------------------------------------------- /core/khronos/APPLE/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/APPLE/egl.h -------------------------------------------------------------------------------- /core/khronos/APPLE/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/APPLE/eglplatform.h -------------------------------------------------------------------------------- /core/khronos/APPLE/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/APPLE/khrplatform.h -------------------------------------------------------------------------------- /core/khronos/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/EGL/egl.h -------------------------------------------------------------------------------- /core/khronos/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/EGL/eglext.h -------------------------------------------------------------------------------- /core/khronos/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/EGL/eglplatform.h -------------------------------------------------------------------------------- /core/khronos/GL3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GL3/gl3.h -------------------------------------------------------------------------------- /core/khronos/GL3/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GL3/gl3w.c -------------------------------------------------------------------------------- /core/khronos/GL3/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GL3/gl3w.h -------------------------------------------------------------------------------- /core/khronos/GL4/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GL4/gl3w.c -------------------------------------------------------------------------------- /core/khronos/GL4/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GL4/gl3w.h -------------------------------------------------------------------------------- /core/khronos/GL4/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GL4/glcorearb.h -------------------------------------------------------------------------------- /core/khronos/GL4/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GL4/glext.h -------------------------------------------------------------------------------- /core/khronos/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES2/gl2.h -------------------------------------------------------------------------------- /core/khronos/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES2/gl2ext.h -------------------------------------------------------------------------------- /core/khronos/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES2/gl2platform.h -------------------------------------------------------------------------------- /core/khronos/GLES3/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES3/gl2ext.h -------------------------------------------------------------------------------- /core/khronos/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES3/gl3.h -------------------------------------------------------------------------------- /core/khronos/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES3/gl3platform.h -------------------------------------------------------------------------------- /core/khronos/GLES32/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES32/gl2ext.h -------------------------------------------------------------------------------- /core/khronos/GLES32/gl32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/GLES32/gl32.h -------------------------------------------------------------------------------- /core/khronos/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/khronos/KHR/khrplatform.h -------------------------------------------------------------------------------- /core/linux-dist/dispmanx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/dispmanx.cpp -------------------------------------------------------------------------------- /core/linux-dist/dispmanx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern void dispmanx_window_create(); 4 | -------------------------------------------------------------------------------- /core/linux-dist/evdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/evdev.cpp -------------------------------------------------------------------------------- /core/linux-dist/evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/evdev.h -------------------------------------------------------------------------------- /core/linux-dist/evdev_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/evdev_gamepad.h -------------------------------------------------------------------------------- /core/linux-dist/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/icon.h -------------------------------------------------------------------------------- /core/linux-dist/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/main.cpp -------------------------------------------------------------------------------- /core/linux-dist/x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/x11.cpp -------------------------------------------------------------------------------- /core/linux-dist/x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/x11.h -------------------------------------------------------------------------------- /core/linux-dist/x11_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux-dist/x11_keyboard.h -------------------------------------------------------------------------------- /core/linux/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux/common.cpp -------------------------------------------------------------------------------- /core/linux/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux/context.cpp -------------------------------------------------------------------------------- /core/linux/libnx_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux/libnx_vmem.cpp -------------------------------------------------------------------------------- /core/linux/posix_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux/posix_vmem.cpp -------------------------------------------------------------------------------- /core/linux/unwind_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux/unwind_info.cpp -------------------------------------------------------------------------------- /core/linux/vita_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/linux/vita_vmem.cpp -------------------------------------------------------------------------------- /core/log/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/BitSet.h -------------------------------------------------------------------------------- /core/log/ConsoleListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/ConsoleListener.h -------------------------------------------------------------------------------- /core/log/ConsoleListenerNix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/ConsoleListenerNix.cpp -------------------------------------------------------------------------------- /core/log/ConsoleListenerWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/ConsoleListenerWin.cpp -------------------------------------------------------------------------------- /core/log/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/Log.h -------------------------------------------------------------------------------- /core/log/LogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/LogManager.cpp -------------------------------------------------------------------------------- /core/log/LogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/LogManager.h -------------------------------------------------------------------------------- /core/log/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/log/StringUtil.h -------------------------------------------------------------------------------- /core/lua/flycast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/lua/flycast.lua -------------------------------------------------------------------------------- /core/lua/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/lua/lua.cpp -------------------------------------------------------------------------------- /core/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/lua/lua.h -------------------------------------------------------------------------------- /core/network/dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/dns.cpp -------------------------------------------------------------------------------- /core/network/ggpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/ggpo.cpp -------------------------------------------------------------------------------- /core/network/ggpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/ggpo.h -------------------------------------------------------------------------------- /core/network/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/ifaddrs.c -------------------------------------------------------------------------------- /core/network/miniupnp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/miniupnp.cpp -------------------------------------------------------------------------------- /core/network/miniupnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/miniupnp.h -------------------------------------------------------------------------------- /core/network/naomi_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/naomi_network.cpp -------------------------------------------------------------------------------- /core/network/naomi_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/naomi_network.h -------------------------------------------------------------------------------- /core/network/net_handshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/net_handshake.cpp -------------------------------------------------------------------------------- /core/network/net_handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/net_handshake.h -------------------------------------------------------------------------------- /core/network/net_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/net_platform.h -------------------------------------------------------------------------------- /core/network/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/output.cpp -------------------------------------------------------------------------------- /core/network/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/output.h -------------------------------------------------------------------------------- /core/network/picoppp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/picoppp.cpp -------------------------------------------------------------------------------- /core/network/picoppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/network/picoppp.h -------------------------------------------------------------------------------- /core/nullDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/nullDC.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_alsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiobackend_alsa.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiobackend_null.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_oboe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiobackend_oboe.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_omx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiobackend_omx.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_oss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiobackend_oss.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiobackend_sdl2.cpp -------------------------------------------------------------------------------- /core/oslib/audiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiostream.cpp -------------------------------------------------------------------------------- /core/oslib/audiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/audiostream.h -------------------------------------------------------------------------------- /core/oslib/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/directory.h -------------------------------------------------------------------------------- /core/oslib/host_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/host_context.h -------------------------------------------------------------------------------- /core/oslib/oslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/oslib.cpp -------------------------------------------------------------------------------- /core/oslib/oslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/oslib/oslib.h -------------------------------------------------------------------------------- /core/profiler/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/profiler/profiler.cpp -------------------------------------------------------------------------------- /core/profiler/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/profiler/profiler.h -------------------------------------------------------------------------------- /core/rec-ARM/rec_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-ARM/rec_arm.cpp -------------------------------------------------------------------------------- /core/rec-ARM64/arm64_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-ARM64/arm64_regalloc.h -------------------------------------------------------------------------------- /core/rec-ARM64/arm64_unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-ARM64/arm64_unwind.h -------------------------------------------------------------------------------- /core/rec-ARM64/rec_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-ARM64/rec_arm64.cpp -------------------------------------------------------------------------------- /core/rec-cpp/rec_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-cpp/rec_cpp.cpp -------------------------------------------------------------------------------- /core/rec-x64/rec_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-x64/rec_x64.cpp -------------------------------------------------------------------------------- /core/rec-x64/x64_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-x64/x64_regalloc.h -------------------------------------------------------------------------------- /core/rec-x64/xbyak_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-x64/xbyak_base.h -------------------------------------------------------------------------------- /core/rec-x86/rec_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-x86/rec_x86.cpp -------------------------------------------------------------------------------- /core/rec-x86/rec_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-x86/rec_x86.h -------------------------------------------------------------------------------- /core/rec-x86/x86_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-x86/x86_ops.cpp -------------------------------------------------------------------------------- /core/rec-x86/x86_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rec-x86/x86_regalloc.h -------------------------------------------------------------------------------- /core/reios/descrambl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/descrambl.cpp -------------------------------------------------------------------------------- /core/reios/descrambl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/descrambl.h -------------------------------------------------------------------------------- /core/reios/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/font.h -------------------------------------------------------------------------------- /core/reios/gdrom_hle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/gdrom_hle.cpp -------------------------------------------------------------------------------- /core/reios/gdrom_hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/gdrom_hle.h -------------------------------------------------------------------------------- /core/reios/reios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/reios.cpp -------------------------------------------------------------------------------- /core/reios/reios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/reios.h -------------------------------------------------------------------------------- /core/reios/reios_elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/reios_elf.cpp -------------------------------------------------------------------------------- /core/reios/reios_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/reios/reios_elf.h -------------------------------------------------------------------------------- /core/rend/CustomTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/CustomTexture.cpp -------------------------------------------------------------------------------- /core/rend/CustomTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/CustomTexture.h -------------------------------------------------------------------------------- /core/rend/TexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/TexCache.cpp -------------------------------------------------------------------------------- /core/rend/TexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/TexCache.h -------------------------------------------------------------------------------- /core/rend/boxart/boxart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/boxart.cpp -------------------------------------------------------------------------------- /core/rend/boxart/boxart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/boxart.h -------------------------------------------------------------------------------- /core/rend/boxart/gamesdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/gamesdb.cpp -------------------------------------------------------------------------------- /core/rend/boxart/gamesdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/gamesdb.h -------------------------------------------------------------------------------- /core/rend/boxart/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/http_client.cpp -------------------------------------------------------------------------------- /core/rend/boxart/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/http_client.h -------------------------------------------------------------------------------- /core/rend/boxart/pvrparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/pvrparser.h -------------------------------------------------------------------------------- /core/rend/boxart/scraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/scraper.cpp -------------------------------------------------------------------------------- /core/rend/boxart/scraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/boxart/scraper.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_driver.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_naomi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_naomi2.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_naomi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_naomi2.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_overlay.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_overlay.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_quad.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_renderer.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_renderer.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_shaders.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_shaders.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_texture.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11_texture.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11context.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11context.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11context_lr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/dx11context_lr.h -------------------------------------------------------------------------------- /core/rend/dx11/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx11/imgui_impl_dx11.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_overlay.cpp -------------------------------------------------------------------------------- /core/rend/dx9/d3d_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_overlay.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_renderer.cpp -------------------------------------------------------------------------------- /core/rend/dx9/d3d_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_renderer.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_shaders.cpp -------------------------------------------------------------------------------- /core/rend/dx9/d3d_shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_shaders.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_texture.cpp -------------------------------------------------------------------------------- /core/rend/dx9/d3d_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/d3d_texture.h -------------------------------------------------------------------------------- /core/rend/dx9/dx9_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/dx9_driver.h -------------------------------------------------------------------------------- /core/rend/dx9/dxcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/dxcontext.cpp -------------------------------------------------------------------------------- /core/rend/dx9/dxcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/dxcontext.h -------------------------------------------------------------------------------- /core/rend/dx9/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/dx9/imgui_impl_dx9.h -------------------------------------------------------------------------------- /core/rend/game_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/game_scanner.h -------------------------------------------------------------------------------- /core/rend/gl4/abuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gl4/abuffer.cpp -------------------------------------------------------------------------------- /core/rend/gl4/gl4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gl4/gl4.h -------------------------------------------------------------------------------- /core/rend/gl4/gl4naomi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gl4/gl4naomi2.cpp -------------------------------------------------------------------------------- /core/rend/gl4/gl4naomi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gl4/gl4naomi2.h -------------------------------------------------------------------------------- /core/rend/gl4/gldraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gl4/gldraw.cpp -------------------------------------------------------------------------------- /core/rend/gl4/gles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gl4/gles.cpp -------------------------------------------------------------------------------- /core/rend/gl4/glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gl4/glsl.h -------------------------------------------------------------------------------- /core/rend/gles/glcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/glcache.h -------------------------------------------------------------------------------- /core/rend/gles/gldraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/gldraw.cpp -------------------------------------------------------------------------------- /core/rend/gles/gles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/gles.cpp -------------------------------------------------------------------------------- /core/rend/gles/gles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/gles.h -------------------------------------------------------------------------------- /core/rend/gles/gltex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/gltex.cpp -------------------------------------------------------------------------------- /core/rend/gles/naomi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/naomi2.cpp -------------------------------------------------------------------------------- /core/rend/gles/naomi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/naomi2.h -------------------------------------------------------------------------------- /core/rend/gles/opengl_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/opengl_driver.h -------------------------------------------------------------------------------- /core/rend/gles/postprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/postprocess.cpp -------------------------------------------------------------------------------- /core/rend/gles/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/postprocess.h -------------------------------------------------------------------------------- /core/rend/gles/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gles/quad.cpp -------------------------------------------------------------------------------- /core/rend/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui.cpp -------------------------------------------------------------------------------- /core/rend/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui.h -------------------------------------------------------------------------------- /core/rend/gui_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui_android.cpp -------------------------------------------------------------------------------- /core/rend/gui_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui_android.h -------------------------------------------------------------------------------- /core/rend/gui_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui_chat.h -------------------------------------------------------------------------------- /core/rend/gui_cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui_cheats.cpp -------------------------------------------------------------------------------- /core/rend/gui_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui_util.cpp -------------------------------------------------------------------------------- /core/rend/gui_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/gui_util.h -------------------------------------------------------------------------------- /core/rend/imgui_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/imgui_driver.h -------------------------------------------------------------------------------- /core/rend/mainui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/mainui.cpp -------------------------------------------------------------------------------- /core/rend/mainui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/mainui.h -------------------------------------------------------------------------------- /core/rend/norend/norend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/norend/norend.cpp -------------------------------------------------------------------------------- /core/rend/osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/osd.cpp -------------------------------------------------------------------------------- /core/rend/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/osd.h -------------------------------------------------------------------------------- /core/rend/shader_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/shader_util.h -------------------------------------------------------------------------------- /core/rend/sorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/sorter.cpp -------------------------------------------------------------------------------- /core/rend/sorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/sorter.h -------------------------------------------------------------------------------- /core/rend/tileclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/tileclip.h -------------------------------------------------------------------------------- /core/rend/transform_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/transform_matrix.h -------------------------------------------------------------------------------- /core/rend/vulkan/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/buffer.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/buffer.h -------------------------------------------------------------------------------- /core/rend/vulkan/commandpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/commandpool.h -------------------------------------------------------------------------------- /core/rend/vulkan/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/compiler.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/compiler.h -------------------------------------------------------------------------------- /core/rend/vulkan/desc_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/desc_set.h -------------------------------------------------------------------------------- /core/rend/vulkan/drawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/drawer.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/drawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/drawer.h -------------------------------------------------------------------------------- /core/rend/vulkan/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/overlay.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/overlay.h -------------------------------------------------------------------------------- /core/rend/vulkan/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/pipeline.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/pipeline.h -------------------------------------------------------------------------------- /core/rend/vulkan/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/quad.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/quad.h -------------------------------------------------------------------------------- /core/rend/vulkan/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/shaders.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/shaders.h -------------------------------------------------------------------------------- /core/rend/vulkan/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/texture.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/texture.h -------------------------------------------------------------------------------- /core/rend/vulkan/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/utils.h -------------------------------------------------------------------------------- /core/rend/vulkan/vmallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/vmallocator.h -------------------------------------------------------------------------------- /core/rend/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/rend/vulkan/vulkan.h -------------------------------------------------------------------------------- /core/sdl/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/sdl/sdl.cpp -------------------------------------------------------------------------------- /core/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/sdl/sdl.h -------------------------------------------------------------------------------- /core/sdl/sdl_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/sdl/sdl_gamepad.h -------------------------------------------------------------------------------- /core/sdl/sdl_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/sdl/sdl_keyboard.h -------------------------------------------------------------------------------- /core/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/serialize.cpp -------------------------------------------------------------------------------- /core/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/serialize.h -------------------------------------------------------------------------------- /core/stdclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/stdclass.cpp -------------------------------------------------------------------------------- /core/stdclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/stdclass.h -------------------------------------------------------------------------------- /core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/types.h -------------------------------------------------------------------------------- /core/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/version.h.in -------------------------------------------------------------------------------- /core/windows/comptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/comptr.h -------------------------------------------------------------------------------- /core/windows/fault_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/fault_handler.cpp -------------------------------------------------------------------------------- /core/windows/rawinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/rawinput.cpp -------------------------------------------------------------------------------- /core/windows/rawinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/rawinput.h -------------------------------------------------------------------------------- /core/windows/unwind_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/unwind_info.cpp -------------------------------------------------------------------------------- /core/windows/win_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/win_keyboard.h -------------------------------------------------------------------------------- /core/windows/win_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/win_vmem.cpp -------------------------------------------------------------------------------- /core/windows/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/winmain.cpp -------------------------------------------------------------------------------- /core/windows/xinput_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/windows/xinput_gamepad.h -------------------------------------------------------------------------------- /core/wsi/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/context.h -------------------------------------------------------------------------------- /core/wsi/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/egl.cpp -------------------------------------------------------------------------------- /core/wsi/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/egl.h -------------------------------------------------------------------------------- /core/wsi/gl32funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/gl32funcs.c -------------------------------------------------------------------------------- /core/wsi/gl32funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/gl32funcs.h -------------------------------------------------------------------------------- /core/wsi/gl4funcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/gl4funcs.cpp -------------------------------------------------------------------------------- /core/wsi/gl_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/gl_context.cpp -------------------------------------------------------------------------------- /core/wsi/gl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/gl_context.h -------------------------------------------------------------------------------- /core/wsi/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/libretro.cpp -------------------------------------------------------------------------------- /core/wsi/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/libretro.h -------------------------------------------------------------------------------- /core/wsi/osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/osx.cpp -------------------------------------------------------------------------------- /core/wsi/osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/osx.h -------------------------------------------------------------------------------- /core/wsi/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/sdl.cpp -------------------------------------------------------------------------------- /core/wsi/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/sdl.h -------------------------------------------------------------------------------- /core/wsi/switcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/switcher.cpp -------------------------------------------------------------------------------- /core/wsi/wgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/wgl.cpp -------------------------------------------------------------------------------- /core/wsi/wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/wgl.h -------------------------------------------------------------------------------- /core/wsi/xgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/xgl.cpp -------------------------------------------------------------------------------- /core/wsi/xgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/core/wsi/xgl.h -------------------------------------------------------------------------------- /docs/DreamCast_Specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/docs/DreamCast_Specs.md -------------------------------------------------------------------------------- /docs/Dynarec Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/docs/Dynarec Architecture.md -------------------------------------------------------------------------------- /docs/Naomi_Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/docs/Naomi_Overview.md -------------------------------------------------------------------------------- /docs/Notable game bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/docs/Notable game bugs.md -------------------------------------------------------------------------------- /gdtool/gdtool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/gdtool.sln -------------------------------------------------------------------------------- /gdtool/gdtool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/gdtool.vcxproj -------------------------------------------------------------------------------- /gdtool/gdtool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/gdtool.vcxproj.filters -------------------------------------------------------------------------------- /gdtool/gdtool.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/gdtool.vcxproj.user -------------------------------------------------------------------------------- /gdtool/src/cdromfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/src/cdromfs.cpp -------------------------------------------------------------------------------- /gdtool/src/cdromfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/src/cdromfs.h -------------------------------------------------------------------------------- /gdtool/src/cdromfs_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/src/cdromfs_imp.h -------------------------------------------------------------------------------- /gdtool/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/gdtool/src/main.cpp -------------------------------------------------------------------------------- /intl/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | crowdin-cli.jar 3 | *.h 4 | *.json 5 | -------------------------------------------------------------------------------- /intl/activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/activate.py -------------------------------------------------------------------------------- /intl/core_option_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/core_option_regex.py -------------------------------------------------------------------------------- /intl/crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/crowdin.yaml -------------------------------------------------------------------------------- /intl/crowdin_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/crowdin_prep.py -------------------------------------------------------------------------------- /intl/crowdin_source_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/crowdin_source_upload.py -------------------------------------------------------------------------------- /intl/crowdin_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/crowdin_translate.py -------------------------------------------------------------------------------- /intl/download_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/download_workflow.py -------------------------------------------------------------------------------- /intl/initial_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/initial_sync.py -------------------------------------------------------------------------------- /intl/remove_initial_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/remove_initial_cycle.py -------------------------------------------------------------------------------- /intl/upload_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/upload_workflow.py -------------------------------------------------------------------------------- /intl/v1_to_v2_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/intl/v1_to_v2_converter.py -------------------------------------------------------------------------------- /shell/android-studio/flycast/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /shell/android-studio/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/android-studio/gradlew -------------------------------------------------------------------------------- /shell/apple/emulator-ios/AltKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /shell/apple/emulator-ios/AltKit/Sources/CAltKit/include/NSError+ALTServerError.h: -------------------------------------------------------------------------------- 1 | ../NSError+ALTServerError.h -------------------------------------------------------------------------------- /shell/apple/emulator-osx/LLDBInitFile: -------------------------------------------------------------------------------- 1 | br set -r "NSApplication run" -C "process handle -s false SIGBUS" -G true 2 | -------------------------------------------------------------------------------- /shell/apple/libomp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/apple/libomp.rb -------------------------------------------------------------------------------- /shell/imgs/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/imgs/screenshot1.png -------------------------------------------------------------------------------- /shell/imgs/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/imgs/screenshot2.png -------------------------------------------------------------------------------- /shell/imgs/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/imgs/screenshot3.png -------------------------------------------------------------------------------- /shell/imgs/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/imgs/screenshot4.png -------------------------------------------------------------------------------- /shell/libretro/LogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/LogManager.cpp -------------------------------------------------------------------------------- /shell/libretro/LogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/LogManager.h -------------------------------------------------------------------------------- /shell/libretro/audiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/audiostream.cpp -------------------------------------------------------------------------------- /shell/libretro/keyboard_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/keyboard_map.h -------------------------------------------------------------------------------- /shell/libretro/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/libretro.cpp -------------------------------------------------------------------------------- /shell/libretro/option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/option.cpp -------------------------------------------------------------------------------- /shell/libretro/option_lr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/option_lr.h -------------------------------------------------------------------------------- /shell/libretro/oslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/oslib.cpp -------------------------------------------------------------------------------- /shell/libretro/vmu_xhair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/vmu_xhair.cpp -------------------------------------------------------------------------------- /shell/libretro/vmu_xhair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/libretro/vmu_xhair.h -------------------------------------------------------------------------------- /shell/linux/flycast.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/linux/flycast.desktop -------------------------------------------------------------------------------- /shell/linux/flycast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/linux/flycast.png -------------------------------------------------------------------------------- /shell/linux/man/flycast.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/linux/man/flycast.1 -------------------------------------------------------------------------------- /shell/switch/context_switch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/switch/context_switch.S -------------------------------------------------------------------------------- /shell/switch/flycast.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/switch/flycast.jpeg -------------------------------------------------------------------------------- /shell/switch/nswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/switch/nswitch.h -------------------------------------------------------------------------------- /shell/switch/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/switch/stubs.c -------------------------------------------------------------------------------- /shell/switch/sys/mman.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /shell/switch/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/switch/ucontext.h -------------------------------------------------------------------------------- /shell/uwp/flycast150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/flycast150.png -------------------------------------------------------------------------------- /shell/uwp/flycast44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/flycast44.png -------------------------------------------------------------------------------- /shell/uwp/flycast48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/flycast48.png -------------------------------------------------------------------------------- /shell/uwp/flycast50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/flycast50.png -------------------------------------------------------------------------------- /shell/uwp/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/http_client.cpp -------------------------------------------------------------------------------- /shell/uwp/package.appxManifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/package.appxManifest -------------------------------------------------------------------------------- /shell/uwp/sign_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/sign_cert.pfx -------------------------------------------------------------------------------- /shell/uwp/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/uwp/splash.png -------------------------------------------------------------------------------- /shell/vita/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/vita/bg.png -------------------------------------------------------------------------------- /shell/vita/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/vita/icon0.png -------------------------------------------------------------------------------- /shell/vita/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/vita/startup.png -------------------------------------------------------------------------------- /shell/vita/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/vita/template.xml -------------------------------------------------------------------------------- /shell/windows/flycast.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/windows/flycast.ico -------------------------------------------------------------------------------- /shell/windows/flycast.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/windows/flycast.rc -------------------------------------------------------------------------------- /shell/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/shell/windows/resource.h -------------------------------------------------------------------------------- /tests/files/test_gdis/a/cs.gdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/files/test_gdis/a/cs.gdi -------------------------------------------------------------------------------- /tests/files/test_gdis/a/tracks/cs01.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/a/tracks/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/a/tracks/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/b/cs.gdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/files/test_gdis/b/cs.gdi -------------------------------------------------------------------------------- /tests/files/test_gdis/b/cs01.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/b/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/b/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/c/cs.gdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/files/test_gdis/c/cs.gdi -------------------------------------------------------------------------------- /tests/files/test_gdis/c/tracks/cs01.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/c/tracks/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/c/tracks/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/d/cs (0,1).bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/d/cs.gdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/files/test_gdis/d/cs.gdi -------------------------------------------------------------------------------- /tests/files/test_gdis/d/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/d/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/AicaArmTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/src/AicaArmTest.cpp -------------------------------------------------------------------------------- /tests/src/CheatManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/src/CheatManagerTest.cpp -------------------------------------------------------------------------------- /tests/src/ConfigFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/src/ConfigFileTest.cpp -------------------------------------------------------------------------------- /tests/src/div32_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/src/div32_test.cpp -------------------------------------------------------------------------------- /tests/src/serialize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/src/serialize_test.cpp -------------------------------------------------------------------------------- /tests/src/sh4_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/src/sh4_ops.h -------------------------------------------------------------------------------- /tests/src/test_stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/tests/src/test_stubs.cpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/flycast-vita/HEAD/vcpkg.json --------------------------------------------------------------------------------