├── .clang-format ├── .clang-format-ignore ├── .clangd ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── 01_bug_report.yml │ └── 02_proposal.yml └── workflows │ └── main.yml ├── .gitignore ├── .vscode ├── build.bat ├── launch.json └── tasks.json ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.md ├── LICENSE.TXT ├── README.md ├── cliff.toml ├── docs └── lua │ ├── build_documentation.bat │ ├── examples │ ├── emu │ │ ├── atd2ddraw.lua │ │ ├── atinput.lua │ │ ├── atstop.lua │ │ ├── atupdatescreen.lua │ │ ├── atvi.lua │ │ ├── console.lua │ │ └── statusbar.lua │ └── global │ │ ├── print.lua │ │ └── stop.lua │ ├── export │ └── readme.txt │ ├── generate_css.bat │ ├── script │ ├── buildSite.py │ └── requirements.txt │ └── static │ ├── css │ ├── pygments.css │ └── styles.css │ ├── img │ └── mupen_logo.png │ ├── index-no-min.html │ ├── index.html │ └── js │ └── index.js ├── src ├── CMakeLists.txt ├── Common │ ├── CMakeLists.txt │ └── include │ │ ├── CommonPCH.h │ │ ├── DummyPluginStub.h │ │ ├── IOUtils.h │ │ ├── MiscHelpers.h │ │ ├── StrUtils.h │ │ └── VersionNameHelpers.h ├── Core │ ├── CMakeLists.txt │ ├── Core.cpp │ ├── Core.h │ ├── alloc.cpp │ ├── alloc.h │ ├── cheats.cpp │ ├── cheats.h │ ├── include │ │ ├── core_api.h │ │ ├── core_plugin.h │ │ └── core_types.h │ ├── memory │ │ ├── dma.cpp │ │ ├── dma.h │ │ ├── flashram.cpp │ │ ├── flashram.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── pif.cpp │ │ ├── pif.h │ │ ├── pif_lut.cpp │ │ ├── pif_lut.h │ │ ├── savestates.cpp │ │ ├── savestates.h │ │ ├── summercart.cpp │ │ ├── summercart.h │ │ ├── tlb.cpp │ │ └── tlb.h │ └── r4300 │ │ ├── bc.cpp │ │ ├── cop0.cpp │ │ ├── cop1.cpp │ │ ├── cop1_d.cpp │ │ ├── cop1_helpers.cpp │ │ ├── cop1_helpers.h │ │ ├── cop1_l.cpp │ │ ├── cop1_s.cpp │ │ ├── cop1_w.cpp │ │ ├── debugger.cpp │ │ ├── debugger.h │ │ ├── disasm.cpp │ │ ├── disasm.h │ │ ├── exception.cpp │ │ ├── exception.h │ │ ├── interrupt.cpp │ │ ├── interrupt.h │ │ ├── macros.h │ │ ├── ops.h │ │ ├── pure_interp.cpp │ │ ├── r4300.cpp │ │ ├── r4300.h │ │ ├── recomp.cpp │ │ ├── recomp.h │ │ ├── recomph.h │ │ ├── regimm.cpp │ │ ├── rom.cpp │ │ ├── rom.h │ │ ├── special.cpp │ │ ├── timers.cpp │ │ ├── timers.h │ │ ├── tracelog.cpp │ │ ├── tracelog.h │ │ ├── vcr.cpp │ │ ├── vcr.h │ │ └── x86 │ │ ├── assemble.cpp │ │ ├── assemble.h │ │ ├── gbc.cpp │ │ ├── gcop0.cpp │ │ ├── gcop1.cpp │ │ ├── gcop1_d.cpp │ │ ├── gcop1_helpers.cpp │ │ ├── gcop1_helpers.h │ │ ├── gcop1_l.cpp │ │ ├── gcop1_s.cpp │ │ ├── gcop1_w.cpp │ │ ├── gr4300.cpp │ │ ├── gregimm.cpp │ │ ├── gspecial.cpp │ │ ├── gtlb.cpp │ │ ├── regcache.cpp │ │ ├── regcache.h │ │ └── rjump.cpp ├── Lua │ ├── api.lua │ ├── sandbox.lua │ └── shims.lua ├── Plugins.Common.cmake ├── Plugins.Win32.DummyAudio │ ├── CMakeLists.txt │ └── Main.cpp ├── Plugins.Win32.DummyInput │ ├── CMakeLists.txt │ └── Main.cpp ├── Plugins.Win32.DummyRSP │ ├── CMakeLists.txt │ └── Main.cpp ├── Plugins.Win32.DummyVideo │ ├── CMakeLists.txt │ └── Main.cpp ├── Plugins.Win32.TASAudio │ ├── ABI1.cpp │ ├── ABI2.cpp │ ├── ABI3.cpp │ ├── ABI3mp3.cpp │ ├── ABI_Adpcm.cpp │ ├── ABI_Buffers.cpp │ ├── ABI_Envmixer.cpp │ ├── ABI_Filters.cpp │ ├── ABI_MixerInterleave.cpp │ ├── ABI_Resample.cpp │ ├── AudioHLE.h │ ├── CMakeLists.txt │ ├── Common.h │ ├── Configuration.cpp │ ├── Configuration.h │ ├── DirectSoundDriver.cpp │ ├── DirectSoundDriver.h │ ├── HLEMain.cpp │ ├── Main.cpp │ ├── Mupen64plusHLE │ │ ├── Mupen64Support.cpp │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── common.h │ │ ├── hle_external.h │ │ ├── hle_internal.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── musyx.cpp │ │ └── ucodes.h │ ├── Resource.h │ ├── Resource.rc │ ├── SoundDriver.cpp │ ├── SoundDriver.h │ ├── SoundDriverInterface.cpp │ ├── SoundDriverInterface.h │ └── Types.h ├── Plugins.Win32.TASRSP │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── Disasm.cpp │ ├── Disasm.h │ ├── HLE.h │ ├── JPEG.cpp │ ├── MP3.cpp │ ├── Main.cpp │ ├── Main.h │ ├── Resource.h │ ├── Resource.rc │ ├── UCode1.cpp │ ├── UCode2.cpp │ ├── UCode3.cpp │ ├── stdafx.cpp │ └── stdafx.h ├── Plugins.Win32.TASVideo │ ├── 2xSAI.cpp │ ├── 2xSAI.h │ ├── 3DMath.h │ ├── CMakeLists.txt │ ├── CRC.cpp │ ├── CRC.h │ ├── Combiner.cpp │ ├── Combiner.h │ ├── Config.cpp │ ├── Config.h │ ├── DepthBuffer.cpp │ ├── DepthBuffer.h │ ├── F3D.cpp │ ├── F3D.h │ ├── F3DDKR.cpp │ ├── F3DDKR.h │ ├── F3DEX.cpp │ ├── F3DEX.h │ ├── F3DEX2.cpp │ ├── F3DEX2.h │ ├── F3DPD.cpp │ ├── F3DPD.h │ ├── F3DWRUS.cpp │ ├── F3DWRUS.h │ ├── FrameBuffer.cpp │ ├── FrameBuffer.h │ ├── GBI.cpp │ ├── GBI.h │ ├── L3D.cpp │ ├── L3D.h │ ├── L3DEX.cpp │ ├── L3DEX.h │ ├── L3DEX2.cpp │ ├── L3DEX2.h │ ├── N64.cpp │ ├── N64.h │ ├── NV_register_combiners.cpp │ ├── NV_register_combiners.h │ ├── OpenGL.cpp │ ├── OpenGL.h │ ├── RDP.cpp │ ├── RDP.h │ ├── RSP.cpp │ ├── RSP.h │ ├── Resource.rc │ ├── S2DEX.cpp │ ├── S2DEX.h │ ├── S2DEX2.cpp │ ├── S2DEX2.h │ ├── Textures.cpp │ ├── Textures.h │ ├── Types.h │ ├── VI.cpp │ ├── VI.h │ ├── convert.h │ ├── gDP.cpp │ ├── gDP.h │ ├── gSP.cpp │ ├── gSP.h │ ├── glN64.cpp │ ├── glN64.h │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── texture_env.cpp │ ├── texture_env.h │ ├── texture_env_combine.cpp │ └── texture_env_combine.h ├── Views.Win32 │ ├── ActionManager.cpp │ ├── ActionManager.h │ ├── CMakeLists.txt │ ├── Config.cpp │ ├── Config.h │ ├── DialogService.cpp │ ├── DialogService.h │ ├── Hotkey.cpp │ ├── Hotkey.h │ ├── Loggers.cpp │ ├── Loggers.h │ ├── Main.cpp │ ├── Main.h │ ├── Messenger.cpp │ ├── Messenger.h │ ├── Plugin.cpp │ ├── Plugin.h │ ├── ResizeAnchor.cpp │ ├── ResizeAnchor.h │ ├── Resource.rc │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ ├── ViewHelpers.h │ ├── app.manifest │ ├── capture │ │ ├── EncodingManager.cpp │ │ ├── EncodingManager.h │ │ ├── Resampler.cpp │ │ ├── Resampler.h │ │ └── encoders │ │ │ ├── Encoder.h │ │ │ ├── FFmpegEncoder.cpp │ │ │ ├── FFmpegEncoder.h │ │ │ ├── VFWEncoder.cpp │ │ │ └── VFWEncoder.h │ ├── components │ │ ├── ActionMenu.cpp │ │ ├── ActionMenu.h │ │ ├── AppActions.cpp │ │ ├── AppActions.h │ │ ├── Benchmark.cpp │ │ ├── Benchmark.h │ │ ├── CLI.cpp │ │ ├── CLI.h │ │ ├── Cheats.cpp │ │ ├── Cheats.h │ │ ├── CommandPalette.cpp │ │ ├── CommandPalette.h │ │ ├── Compare.cpp │ │ ├── Compare.h │ │ ├── ConfigDialog.cpp │ │ ├── ConfigDialog.h │ │ ├── CoreDbg.cpp │ │ ├── CoreDbg.h │ │ ├── CrashManager.cpp │ │ ├── CrashManager.h │ │ ├── Dispatcher.cpp │ │ ├── Dispatcher.h │ │ ├── FilePicker.cpp │ │ ├── FilePicker.h │ │ ├── HotkeyTracker.cpp │ │ ├── HotkeyTracker.h │ │ ├── LuaDialog.cpp │ │ ├── LuaDialog.h │ │ ├── MGECompositor.cpp │ │ ├── MGECompositor.h │ │ ├── MovieDialog.cpp │ │ ├── MovieDialog.h │ │ ├── PianoRoll.cpp │ │ ├── PianoRoll.h │ │ ├── RecentItems.cpp │ │ ├── RecentItems.h │ │ ├── RomBrowser.cpp │ │ ├── RomBrowser.h │ │ ├── Seeker.cpp │ │ ├── Seeker.h │ │ ├── SettingsListView.cpp │ │ ├── SettingsListView.h │ │ ├── Statusbar.cpp │ │ ├── Statusbar.h │ │ ├── TextEditDialog.cpp │ │ ├── TextEditDialog.h │ │ ├── UpdateChecker.cpp │ │ └── UpdateChecker.h │ ├── icons │ │ ├── BMPs │ │ │ ├── austral.bmp │ │ │ ├── changed.bmp │ │ │ ├── current.bmp │ │ │ ├── demo.bmp │ │ │ ├── deny.bmp │ │ │ ├── europe.bmp │ │ │ ├── france.bmp │ │ │ ├── germany.bmp │ │ │ ├── italy.bmp │ │ │ ├── japan.bmp │ │ │ ├── marker.bmp │ │ │ ├── n64beta.bmp │ │ │ ├── spain.bmp │ │ │ ├── unknown.bmp │ │ │ └── usa.bmp │ │ ├── Gif │ │ │ ├── austral.gif │ │ │ ├── demo.gif │ │ │ ├── europe.gif │ │ │ ├── france.gif │ │ │ ├── germany.gif │ │ │ ├── italy.gif │ │ │ ├── japan.gif │ │ │ ├── n64beta.gif │ │ │ ├── spain.gif │ │ │ ├── unknown.gif │ │ │ └── usa.gif │ │ ├── Old Icons │ │ │ ├── Italy.ico │ │ │ ├── austral.ico │ │ │ ├── beta.ico │ │ │ ├── demo.ico │ │ │ ├── europe.ico │ │ │ ├── france.ico │ │ │ ├── germany.ico │ │ │ ├── japan.ico │ │ │ ├── m64big-old2.ico │ │ │ ├── m64small-old2.ico │ │ │ ├── mupen64-old2.ico │ │ │ ├── mupen64.ico │ │ │ ├── spain.ico │ │ │ ├── unknown.ico │ │ │ └── usa.ico │ │ ├── changed.ico │ │ ├── current.ico │ │ ├── deny.ico │ │ ├── flag_au.ico │ │ ├── flag_beta.ico │ │ ├── flag_de.ico │ │ ├── flag_demo.ico │ │ ├── flag_eu.ico │ │ ├── flag_fr.ico │ │ ├── flag_it.ico │ │ ├── flag_jp.ico │ │ ├── flag_sp.ico │ │ ├── flag_unknown.ico │ │ ├── flag_us.ico │ │ ├── logo_16.ico │ │ ├── logo_48.ico │ │ ├── marker.ico │ │ ├── mupen64.ico │ │ ├── plugin_audio.bmp │ │ ├── plugin_input.bmp │ │ ├── plugin_rsp.bmp │ │ └── plugin_video.bmp │ ├── include │ │ └── Views.Win32 │ │ │ └── ViewPlugin.h │ ├── lua │ │ ├── LuaCallbacks.cpp │ │ ├── LuaCallbacks.h │ │ ├── LuaManager.cpp │ │ ├── LuaManager.h │ │ ├── LuaRegistry.cpp │ │ ├── LuaRegistry.h │ │ ├── LuaRenderer.cpp │ │ ├── LuaRenderer.h │ │ ├── LuaTypes.h │ │ ├── modules │ │ │ ├── AVI.h │ │ │ ├── Action.h │ │ │ ├── Clipboard.h │ │ │ ├── D2D.h │ │ │ ├── Emu.h │ │ │ ├── Global.h │ │ │ ├── Hotkey.h │ │ │ ├── IOHelper.h │ │ │ ├── Input.h │ │ │ ├── Joypad.h │ │ │ ├── Memory.h │ │ │ ├── Movie.h │ │ │ ├── Savestate.h │ │ │ └── WGUI.h │ │ └── presenters │ │ │ ├── DCompPresenter.cpp │ │ │ ├── DCompPresenter.h │ │ │ ├── GDIPresenter.cpp │ │ │ ├── GDIPresenter.h │ │ │ └── Presenter.h │ ├── resource.h │ └── stdafx.h └── Website │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── eslint.config.js │ ├── package.json │ ├── src │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── lib │ │ ├── assets │ │ │ ├── demo.png │ │ │ ├── github.svg │ │ │ ├── lua.svg │ │ │ ├── mupen64.svg │ │ │ ├── sm64luaredux.png │ │ │ └── ugui.png │ │ ├── components │ │ │ └── Hero.svelte │ │ ├── helpers │ │ │ ├── DocFetcher.ts │ │ │ └── DocNameConverter.ts │ │ └── index.ts │ └── routes │ │ ├── +error.svelte │ │ ├── +layout.server.ts │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ ├── docs │ │ └── win │ │ │ └── [...slug] │ │ │ ├── +layout.svelte │ │ │ ├── +page.server.ts │ │ │ └── +page.svelte │ │ ├── sm64luaredux │ │ └── +page.svelte │ │ └── ugui │ │ └── +page.svelte │ ├── static │ ├── docs │ │ └── win │ │ │ ├── 1. Beginner-Tutorial.md │ │ │ ├── 2. FAQ.md │ │ │ ├── 3. Actions.md │ │ │ ├── 4. Settings.md │ │ │ ├── 5. Capturing.md │ │ │ ├── 6. M64s-and-Accompanying-Files.md │ │ │ ├── 7. Piano-Roll.md │ │ │ └── 8. Data-Formats.md │ ├── img │ │ └── banner.png │ └── robots.txt │ ├── svelte.config.js │ ├── tailwind.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── test ├── CMakeLists.txt ├── Core.Tests │ ├── CMakeLists.txt │ ├── stdafx.h │ └── vcr_tests.cpp ├── Lua.TestLib │ ├── CMakeLists.txt │ └── main.cpp └── lua │ ├── image.png │ ├── manual │ ├── 302.lua │ ├── 336.lua │ ├── 420.lua │ ├── action_system.lua │ ├── base_manual_test.lua │ ├── hotkey_prompt.lua │ ├── input.prompt.lua │ ├── os.exit.lua │ ├── print_in_atstop.lua │ └── print_in_global.lua │ ├── output.png │ ├── test_prelude.lua │ └── tests.lua ├── toolchains ├── vcpkg-triplets │ ├── x64-windows-static-asan.cmake │ └── x86-windows-static-asan.cmake └── vcpkg-win64.cmake ├── tools ├── benchmark │ ├── benchmark.py │ ├── dummy.lua │ └── test_rom_benchmark.m64 ├── check_encode_validity.py ├── generate_changelog.py ├── lua │ ├── d2d_dummy.lua │ ├── savestate_api.lua │ ├── savestate_api_stress_test.lua │ └── shimmed_apis.lua ├── m64 │ ├── vcr_benchmark.m64 │ └── vcr_benchmark.st ├── plugins │ ├── NoAudio-x64.dll │ ├── NoAudio-x86.dll │ ├── NoInput-x64.dll │ ├── NoInput-x86.dll │ ├── NoRSP-x64.dll │ ├── NoRSP-x86.dll │ ├── NoVideo-x64.dll │ └── NoVideo-x86.dll └── roms │ └── m64p_test_rom.v64 ├── vcpkg.json └── vendor ├── CMakeLists.txt ├── aladdin-md5 ├── CMakeLists.txt ├── md5.c └── md5.h ├── argh ├── CMakeLists.txt └── argh.h ├── bs-thread-pool ├── BS_thread_pool.hpp └── CMakeLists.txt ├── hqx ├── CMakeLists.txt ├── common.h ├── hq2x.c ├── hq3x.c ├── hq4x.c ├── hqx.h └── init.c ├── lua-modules ├── inspect.lua └── lust.lua ├── microlru ├── CMakeLists.txt └── microlru.h ├── mini ├── CMakeLists.txt └── ini.h ├── xbrz ├── CMakeLists.txt ├── xbrz.cpp ├── xbrz.h ├── xbrz_config.h └── xbrz_tools.h └── xxhash64 ├── CMakeLists.txt └── xxh64.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format-ignore: -------------------------------------------------------------------------------- 1 | lib/* 2 | util/* -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.clangd -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # format files 2 | a7b624e8399561cc9847d902956e41a980fd8c02 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.github/ISSUE_TEMPLATE/01_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.github/ISSUE_TEMPLATE/02_proposal.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.vscode/build.bat -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/README.md -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/cliff.toml -------------------------------------------------------------------------------- /docs/lua/build_documentation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/build_documentation.bat -------------------------------------------------------------------------------- /docs/lua/examples/emu/atd2ddraw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/emu/atd2ddraw.lua -------------------------------------------------------------------------------- /docs/lua/examples/emu/atinput.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/emu/atinput.lua -------------------------------------------------------------------------------- /docs/lua/examples/emu/atstop.lua: -------------------------------------------------------------------------------- 1 | emu.atstop(function () 2 | 3 | end) -------------------------------------------------------------------------------- /docs/lua/examples/emu/atupdatescreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/emu/atupdatescreen.lua -------------------------------------------------------------------------------- /docs/lua/examples/emu/atvi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/emu/atvi.lua -------------------------------------------------------------------------------- /docs/lua/examples/emu/console.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/emu/console.lua -------------------------------------------------------------------------------- /docs/lua/examples/emu/statusbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/emu/statusbar.lua -------------------------------------------------------------------------------- /docs/lua/examples/global/print.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/global/print.lua -------------------------------------------------------------------------------- /docs/lua/examples/global/stop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/examples/global/stop.lua -------------------------------------------------------------------------------- /docs/lua/export/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/export/readme.txt -------------------------------------------------------------------------------- /docs/lua/generate_css.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/generate_css.bat -------------------------------------------------------------------------------- /docs/lua/script/buildSite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/script/buildSite.py -------------------------------------------------------------------------------- /docs/lua/script/requirements.txt: -------------------------------------------------------------------------------- 1 | markdown 2 | pygments 3 | minify-html 4 | dataclasses -------------------------------------------------------------------------------- /docs/lua/static/css/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/static/css/pygments.css -------------------------------------------------------------------------------- /docs/lua/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/static/css/styles.css -------------------------------------------------------------------------------- /docs/lua/static/img/mupen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/static/img/mupen_logo.png -------------------------------------------------------------------------------- /docs/lua/static/index-no-min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/static/index-no-min.html -------------------------------------------------------------------------------- /docs/lua/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/static/index.html -------------------------------------------------------------------------------- /docs/lua/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/docs/lua/static/js/index.js -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Common/CMakeLists.txt -------------------------------------------------------------------------------- /src/Common/include/CommonPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Common/include/CommonPCH.h -------------------------------------------------------------------------------- /src/Common/include/DummyPluginStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Common/include/DummyPluginStub.h -------------------------------------------------------------------------------- /src/Common/include/IOUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Common/include/IOUtils.h -------------------------------------------------------------------------------- /src/Common/include/MiscHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Common/include/MiscHelpers.h -------------------------------------------------------------------------------- /src/Common/include/StrUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Common/include/StrUtils.h -------------------------------------------------------------------------------- /src/Common/include/VersionNameHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Common/include/VersionNameHelpers.h -------------------------------------------------------------------------------- /src/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/CMakeLists.txt -------------------------------------------------------------------------------- /src/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/Core.cpp -------------------------------------------------------------------------------- /src/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/Core.h -------------------------------------------------------------------------------- /src/Core/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/alloc.cpp -------------------------------------------------------------------------------- /src/Core/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/alloc.h -------------------------------------------------------------------------------- /src/Core/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/cheats.cpp -------------------------------------------------------------------------------- /src/Core/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/cheats.h -------------------------------------------------------------------------------- /src/Core/include/core_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/include/core_api.h -------------------------------------------------------------------------------- /src/Core/include/core_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/include/core_plugin.h -------------------------------------------------------------------------------- /src/Core/include/core_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/include/core_types.h -------------------------------------------------------------------------------- /src/Core/memory/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/dma.cpp -------------------------------------------------------------------------------- /src/Core/memory/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/dma.h -------------------------------------------------------------------------------- /src/Core/memory/flashram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/flashram.cpp -------------------------------------------------------------------------------- /src/Core/memory/flashram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/flashram.h -------------------------------------------------------------------------------- /src/Core/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/memory.cpp -------------------------------------------------------------------------------- /src/Core/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/memory.h -------------------------------------------------------------------------------- /src/Core/memory/pif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/pif.cpp -------------------------------------------------------------------------------- /src/Core/memory/pif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/pif.h -------------------------------------------------------------------------------- /src/Core/memory/pif_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/pif_lut.cpp -------------------------------------------------------------------------------- /src/Core/memory/pif_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/pif_lut.h -------------------------------------------------------------------------------- /src/Core/memory/savestates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/savestates.cpp -------------------------------------------------------------------------------- /src/Core/memory/savestates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/savestates.h -------------------------------------------------------------------------------- /src/Core/memory/summercart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/summercart.cpp -------------------------------------------------------------------------------- /src/Core/memory/summercart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/summercart.h -------------------------------------------------------------------------------- /src/Core/memory/tlb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/tlb.cpp -------------------------------------------------------------------------------- /src/Core/memory/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/memory/tlb.h -------------------------------------------------------------------------------- /src/Core/r4300/bc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/bc.cpp -------------------------------------------------------------------------------- /src/Core/r4300/cop0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop0.cpp -------------------------------------------------------------------------------- /src/Core/r4300/cop1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop1.cpp -------------------------------------------------------------------------------- /src/Core/r4300/cop1_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop1_d.cpp -------------------------------------------------------------------------------- /src/Core/r4300/cop1_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop1_helpers.cpp -------------------------------------------------------------------------------- /src/Core/r4300/cop1_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop1_helpers.h -------------------------------------------------------------------------------- /src/Core/r4300/cop1_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop1_l.cpp -------------------------------------------------------------------------------- /src/Core/r4300/cop1_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop1_s.cpp -------------------------------------------------------------------------------- /src/Core/r4300/cop1_w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/cop1_w.cpp -------------------------------------------------------------------------------- /src/Core/r4300/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/debugger.cpp -------------------------------------------------------------------------------- /src/Core/r4300/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/debugger.h -------------------------------------------------------------------------------- /src/Core/r4300/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/disasm.cpp -------------------------------------------------------------------------------- /src/Core/r4300/disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/disasm.h -------------------------------------------------------------------------------- /src/Core/r4300/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/exception.cpp -------------------------------------------------------------------------------- /src/Core/r4300/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/exception.h -------------------------------------------------------------------------------- /src/Core/r4300/interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/interrupt.cpp -------------------------------------------------------------------------------- /src/Core/r4300/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/interrupt.h -------------------------------------------------------------------------------- /src/Core/r4300/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/macros.h -------------------------------------------------------------------------------- /src/Core/r4300/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/ops.h -------------------------------------------------------------------------------- /src/Core/r4300/pure_interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/pure_interp.cpp -------------------------------------------------------------------------------- /src/Core/r4300/r4300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/r4300.cpp -------------------------------------------------------------------------------- /src/Core/r4300/r4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/r4300.h -------------------------------------------------------------------------------- /src/Core/r4300/recomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/recomp.cpp -------------------------------------------------------------------------------- /src/Core/r4300/recomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/recomp.h -------------------------------------------------------------------------------- /src/Core/r4300/recomph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/recomph.h -------------------------------------------------------------------------------- /src/Core/r4300/regimm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/regimm.cpp -------------------------------------------------------------------------------- /src/Core/r4300/rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/rom.cpp -------------------------------------------------------------------------------- /src/Core/r4300/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/rom.h -------------------------------------------------------------------------------- /src/Core/r4300/special.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/special.cpp -------------------------------------------------------------------------------- /src/Core/r4300/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/timers.cpp -------------------------------------------------------------------------------- /src/Core/r4300/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/timers.h -------------------------------------------------------------------------------- /src/Core/r4300/tracelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/tracelog.cpp -------------------------------------------------------------------------------- /src/Core/r4300/tracelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/tracelog.h -------------------------------------------------------------------------------- /src/Core/r4300/vcr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/vcr.cpp -------------------------------------------------------------------------------- /src/Core/r4300/vcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/vcr.h -------------------------------------------------------------------------------- /src/Core/r4300/x86/assemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/assemble.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/assemble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/assemble.h -------------------------------------------------------------------------------- /src/Core/r4300/x86/gbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gbc.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop0.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop1.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop1_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop1_d.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop1_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop1_helpers.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop1_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop1_helpers.h -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop1_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop1_l.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop1_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop1_s.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gcop1_w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gcop1_w.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gr4300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gr4300.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gregimm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gregimm.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gspecial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gspecial.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/gtlb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/gtlb.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/regcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/regcache.cpp -------------------------------------------------------------------------------- /src/Core/r4300/x86/regcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/regcache.h -------------------------------------------------------------------------------- /src/Core/r4300/x86/rjump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Core/r4300/x86/rjump.cpp -------------------------------------------------------------------------------- /src/Lua/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Lua/api.lua -------------------------------------------------------------------------------- /src/Lua/sandbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Lua/sandbox.lua -------------------------------------------------------------------------------- /src/Lua/shims.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Lua/shims.lua -------------------------------------------------------------------------------- /src/Plugins.Common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Common.cmake -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyAudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyAudio/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyAudio/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyAudio/Main.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyInput/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyInput/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyInput/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyInput/Main.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyRSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyRSP/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyRSP/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyRSP/Main.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyVideo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyVideo/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins.Win32.DummyVideo/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.DummyVideo/Main.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI1.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI2.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI3.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI3mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI3mp3.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI_Adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI_Adpcm.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI_Buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI_Buffers.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI_Envmixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI_Envmixer.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI_Filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI_Filters.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI_MixerInterleave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI_MixerInterleave.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/ABI_Resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/ABI_Resample.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/AudioHLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/AudioHLE.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Common.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Configuration.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Configuration.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/DirectSoundDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/DirectSoundDriver.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/DirectSoundDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/DirectSoundDriver.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/HLEMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/HLEMain.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Main.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/Mupen64Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/Mupen64Support.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/audio.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/audio.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/common.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/hle_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/hle_external.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/hle_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/hle_internal.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/memory.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/memory.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/musyx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/musyx.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Mupen64plusHLE/ucodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Mupen64plusHLE/ucodes.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Resource.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Resource.rc -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/SoundDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/SoundDriver.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/SoundDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/SoundDriver.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/SoundDriverInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/SoundDriverInterface.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/SoundDriverInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/SoundDriverInterface.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASAudio/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASAudio/Types.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Config.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Config.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Disasm.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Disasm.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/HLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/HLE.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/JPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/JPEG.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/MP3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/MP3.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Main.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Main.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Resource.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/Resource.rc -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/UCode1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/UCode1.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/UCode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/UCode2.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/UCode3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/UCode3.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/stdafx.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASRSP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASRSP/stdafx.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/2xSAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/2xSAI.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/2xSAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/2xSAI.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/3DMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/3DMath.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/CRC.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/CRC.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Combiner.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Combiner.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Config.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Config.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/DepthBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/DepthBuffer.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/DepthBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/DepthBuffer.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3D.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3D.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DDKR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DDKR.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DDKR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DDKR.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DEX.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DEX.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DEX2.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DEX2.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DPD.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DPD.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DWRUS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DWRUS.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/F3DWRUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/F3DWRUS.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/FrameBuffer.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/FrameBuffer.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/GBI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/GBI.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/GBI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/GBI.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/L3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/L3D.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/L3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/L3D.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/L3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/L3DEX.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/L3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/L3DEX.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/L3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/L3DEX2.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/L3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/L3DEX2.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/N64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/N64.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/N64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/N64.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/NV_register_combiners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/NV_register_combiners.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/NV_register_combiners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/NV_register_combiners.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/OpenGL.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/OpenGL.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/RDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/RDP.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/RDP.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void RDP_Init(); -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/RSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/RSP.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/RSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/RSP.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Resource.rc -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/S2DEX.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/S2DEX.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/S2DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/S2DEX2.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/S2DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/S2DEX2.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Textures.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Textures.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/Types.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/VI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/VI.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/VI.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/convert.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/gDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/gDP.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/gDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/gDP.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/gSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/gSP.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/gSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/gSP.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/glN64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/glN64.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/glN64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/glN64.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/resource.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/stdafx.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/texture_env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/texture_env.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/texture_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/texture_env.h -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/texture_env_combine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/texture_env_combine.cpp -------------------------------------------------------------------------------- /src/Plugins.Win32.TASVideo/texture_env_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Plugins.Win32.TASVideo/texture_env_combine.h -------------------------------------------------------------------------------- /src/Views.Win32/ActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/ActionManager.cpp -------------------------------------------------------------------------------- /src/Views.Win32/ActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/ActionManager.h -------------------------------------------------------------------------------- /src/Views.Win32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/CMakeLists.txt -------------------------------------------------------------------------------- /src/Views.Win32/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Config.cpp -------------------------------------------------------------------------------- /src/Views.Win32/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Config.h -------------------------------------------------------------------------------- /src/Views.Win32/DialogService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/DialogService.cpp -------------------------------------------------------------------------------- /src/Views.Win32/DialogService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/DialogService.h -------------------------------------------------------------------------------- /src/Views.Win32/Hotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Hotkey.cpp -------------------------------------------------------------------------------- /src/Views.Win32/Hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Hotkey.h -------------------------------------------------------------------------------- /src/Views.Win32/Loggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Loggers.cpp -------------------------------------------------------------------------------- /src/Views.Win32/Loggers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Loggers.h -------------------------------------------------------------------------------- /src/Views.Win32/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Main.cpp -------------------------------------------------------------------------------- /src/Views.Win32/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Main.h -------------------------------------------------------------------------------- /src/Views.Win32/Messenger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Messenger.cpp -------------------------------------------------------------------------------- /src/Views.Win32/Messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Messenger.h -------------------------------------------------------------------------------- /src/Views.Win32/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Plugin.cpp -------------------------------------------------------------------------------- /src/Views.Win32/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Plugin.h -------------------------------------------------------------------------------- /src/Views.Win32/ResizeAnchor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/ResizeAnchor.cpp -------------------------------------------------------------------------------- /src/Views.Win32/ResizeAnchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/ResizeAnchor.h -------------------------------------------------------------------------------- /src/Views.Win32/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/Resource.rc -------------------------------------------------------------------------------- /src/Views.Win32/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/ThreadPool.cpp -------------------------------------------------------------------------------- /src/Views.Win32/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/ThreadPool.h -------------------------------------------------------------------------------- /src/Views.Win32/ViewHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/ViewHelpers.h -------------------------------------------------------------------------------- /src/Views.Win32/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/app.manifest -------------------------------------------------------------------------------- /src/Views.Win32/capture/EncodingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/EncodingManager.cpp -------------------------------------------------------------------------------- /src/Views.Win32/capture/EncodingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/EncodingManager.h -------------------------------------------------------------------------------- /src/Views.Win32/capture/Resampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/Resampler.cpp -------------------------------------------------------------------------------- /src/Views.Win32/capture/Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/Resampler.h -------------------------------------------------------------------------------- /src/Views.Win32/capture/encoders/Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/encoders/Encoder.h -------------------------------------------------------------------------------- /src/Views.Win32/capture/encoders/FFmpegEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/encoders/FFmpegEncoder.cpp -------------------------------------------------------------------------------- /src/Views.Win32/capture/encoders/FFmpegEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/encoders/FFmpegEncoder.h -------------------------------------------------------------------------------- /src/Views.Win32/capture/encoders/VFWEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/encoders/VFWEncoder.cpp -------------------------------------------------------------------------------- /src/Views.Win32/capture/encoders/VFWEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/capture/encoders/VFWEncoder.h -------------------------------------------------------------------------------- /src/Views.Win32/components/ActionMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/ActionMenu.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/ActionMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/ActionMenu.h -------------------------------------------------------------------------------- /src/Views.Win32/components/AppActions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/AppActions.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/AppActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/AppActions.h -------------------------------------------------------------------------------- /src/Views.Win32/components/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Benchmark.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Benchmark.h -------------------------------------------------------------------------------- /src/Views.Win32/components/CLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CLI.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/CLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CLI.h -------------------------------------------------------------------------------- /src/Views.Win32/components/Cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Cheats.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/Cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Cheats.h -------------------------------------------------------------------------------- /src/Views.Win32/components/CommandPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CommandPalette.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/CommandPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CommandPalette.h -------------------------------------------------------------------------------- /src/Views.Win32/components/Compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Compare.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Compare.h -------------------------------------------------------------------------------- /src/Views.Win32/components/ConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/ConfigDialog.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/ConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/ConfigDialog.h -------------------------------------------------------------------------------- /src/Views.Win32/components/CoreDbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CoreDbg.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/CoreDbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CoreDbg.h -------------------------------------------------------------------------------- /src/Views.Win32/components/CrashManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CrashManager.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/CrashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/CrashManager.h -------------------------------------------------------------------------------- /src/Views.Win32/components/Dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Dispatcher.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/Dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Dispatcher.h -------------------------------------------------------------------------------- /src/Views.Win32/components/FilePicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/FilePicker.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/FilePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/FilePicker.h -------------------------------------------------------------------------------- /src/Views.Win32/components/HotkeyTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/HotkeyTracker.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/HotkeyTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/HotkeyTracker.h -------------------------------------------------------------------------------- /src/Views.Win32/components/LuaDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/LuaDialog.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/LuaDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/LuaDialog.h -------------------------------------------------------------------------------- /src/Views.Win32/components/MGECompositor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/MGECompositor.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/MGECompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/MGECompositor.h -------------------------------------------------------------------------------- /src/Views.Win32/components/MovieDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/MovieDialog.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/MovieDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/MovieDialog.h -------------------------------------------------------------------------------- /src/Views.Win32/components/PianoRoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/PianoRoll.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/PianoRoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/PianoRoll.h -------------------------------------------------------------------------------- /src/Views.Win32/components/RecentItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/RecentItems.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/RecentItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/RecentItems.h -------------------------------------------------------------------------------- /src/Views.Win32/components/RomBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/RomBrowser.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/RomBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/RomBrowser.h -------------------------------------------------------------------------------- /src/Views.Win32/components/Seeker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Seeker.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/Seeker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Seeker.h -------------------------------------------------------------------------------- /src/Views.Win32/components/SettingsListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/SettingsListView.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/SettingsListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/SettingsListView.h -------------------------------------------------------------------------------- /src/Views.Win32/components/Statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Statusbar.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/Statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/Statusbar.h -------------------------------------------------------------------------------- /src/Views.Win32/components/TextEditDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/TextEditDialog.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/TextEditDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/TextEditDialog.h -------------------------------------------------------------------------------- /src/Views.Win32/components/UpdateChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/UpdateChecker.cpp -------------------------------------------------------------------------------- /src/Views.Win32/components/UpdateChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/components/UpdateChecker.h -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/austral.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/austral.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/changed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/changed.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/current.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/current.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/demo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/demo.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/deny.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/deny.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/europe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/europe.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/france.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/france.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/germany.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/germany.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/italy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/italy.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/japan.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/japan.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/marker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/marker.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/n64beta.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/n64beta.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/spain.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/spain.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/unknown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/unknown.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/BMPs/usa.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/BMPs/usa.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/austral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/austral.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/demo.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/europe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/europe.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/france.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/france.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/germany.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/germany.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/italy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/italy.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/japan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/japan.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/n64beta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/n64beta.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/spain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/spain.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/unknown.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Gif/usa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Gif/usa.gif -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/Italy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/Italy.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/austral.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/austral.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/beta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/beta.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/demo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/demo.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/europe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/europe.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/france.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/france.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/germany.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/germany.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/japan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/japan.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/m64big-old2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/m64big-old2.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/m64small-old2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/m64small-old2.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/mupen64-old2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/mupen64-old2.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/mupen64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/mupen64.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/spain.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/spain.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/unknown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/unknown.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/Old Icons/usa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/Old Icons/usa.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/changed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/changed.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/current.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/current.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/deny.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/deny.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_au.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_au.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_beta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_beta.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_de.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_de.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_demo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_demo.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_eu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_eu.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_fr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_fr.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_it.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_it.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_jp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_jp.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_sp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_sp.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_unknown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_unknown.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/flag_us.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/flag_us.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/logo_16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/logo_16.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/logo_48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/logo_48.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/marker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/marker.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/mupen64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/mupen64.ico -------------------------------------------------------------------------------- /src/Views.Win32/icons/plugin_audio.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/plugin_audio.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/plugin_input.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/plugin_input.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/plugin_rsp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/plugin_rsp.bmp -------------------------------------------------------------------------------- /src/Views.Win32/icons/plugin_video.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/icons/plugin_video.bmp -------------------------------------------------------------------------------- /src/Views.Win32/include/Views.Win32/ViewPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/include/Views.Win32/ViewPlugin.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaCallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaCallbacks.cpp -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaCallbacks.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaManager.cpp -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaManager.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaRegistry.cpp -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaRegistry.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaRenderer.cpp -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaRenderer.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/LuaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/LuaTypes.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/AVI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/AVI.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Action.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Clipboard.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/D2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/D2D.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Emu.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Global.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Hotkey.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/IOHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/IOHelper.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Input.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Joypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Joypad.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Memory.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Movie.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/Savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/Savestate.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/modules/WGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/modules/WGUI.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/presenters/DCompPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/presenters/DCompPresenter.cpp -------------------------------------------------------------------------------- /src/Views.Win32/lua/presenters/DCompPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/presenters/DCompPresenter.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/presenters/GDIPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/presenters/GDIPresenter.cpp -------------------------------------------------------------------------------- /src/Views.Win32/lua/presenters/GDIPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/presenters/GDIPresenter.h -------------------------------------------------------------------------------- /src/Views.Win32/lua/presenters/Presenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/lua/presenters/Presenter.h -------------------------------------------------------------------------------- /src/Views.Win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/resource.h -------------------------------------------------------------------------------- /src/Views.Win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Views.Win32/stdafx.h -------------------------------------------------------------------------------- /src/Website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/.gitignore -------------------------------------------------------------------------------- /src/Website/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /src/Website/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/.prettierignore -------------------------------------------------------------------------------- /src/Website/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/.prettierrc -------------------------------------------------------------------------------- /src/Website/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/eslint.config.js -------------------------------------------------------------------------------- /src/Website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/package.json -------------------------------------------------------------------------------- /src/Website/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/app.css -------------------------------------------------------------------------------- /src/Website/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/app.d.ts -------------------------------------------------------------------------------- /src/Website/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/app.html -------------------------------------------------------------------------------- /src/Website/src/lib/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/assets/demo.png -------------------------------------------------------------------------------- /src/Website/src/lib/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/assets/github.svg -------------------------------------------------------------------------------- /src/Website/src/lib/assets/lua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/assets/lua.svg -------------------------------------------------------------------------------- /src/Website/src/lib/assets/mupen64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/assets/mupen64.svg -------------------------------------------------------------------------------- /src/Website/src/lib/assets/sm64luaredux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/assets/sm64luaredux.png -------------------------------------------------------------------------------- /src/Website/src/lib/assets/ugui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/assets/ugui.png -------------------------------------------------------------------------------- /src/Website/src/lib/components/Hero.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/components/Hero.svelte -------------------------------------------------------------------------------- /src/Website/src/lib/helpers/DocFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/helpers/DocFetcher.ts -------------------------------------------------------------------------------- /src/Website/src/lib/helpers/DocNameConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/helpers/DocNameConverter.ts -------------------------------------------------------------------------------- /src/Website/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/lib/index.ts -------------------------------------------------------------------------------- /src/Website/src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/Website/src/routes/+layout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/+layout.server.ts -------------------------------------------------------------------------------- /src/Website/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/Website/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/Website/src/routes/docs/win/[...slug]/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/docs/win/[...slug]/+layout.svelte -------------------------------------------------------------------------------- /src/Website/src/routes/docs/win/[...slug]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/docs/win/[...slug]/+page.server.ts -------------------------------------------------------------------------------- /src/Website/src/routes/docs/win/[...slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/docs/win/[...slug]/+page.svelte -------------------------------------------------------------------------------- /src/Website/src/routes/sm64luaredux/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/sm64luaredux/+page.svelte -------------------------------------------------------------------------------- /src/Website/src/routes/ugui/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/src/routes/ugui/+page.svelte -------------------------------------------------------------------------------- /src/Website/static/docs/win/1. Beginner-Tutorial.md: -------------------------------------------------------------------------------- 1 | WIP -------------------------------------------------------------------------------- /src/Website/static/docs/win/2. FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/docs/win/2. FAQ.md -------------------------------------------------------------------------------- /src/Website/static/docs/win/3. Actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/docs/win/3. Actions.md -------------------------------------------------------------------------------- /src/Website/static/docs/win/4. Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/docs/win/4. Settings.md -------------------------------------------------------------------------------- /src/Website/static/docs/win/5. Capturing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/docs/win/5. Capturing.md -------------------------------------------------------------------------------- /src/Website/static/docs/win/6. M64s-and-Accompanying-Files.md: -------------------------------------------------------------------------------- 1 | stub -------------------------------------------------------------------------------- /src/Website/static/docs/win/7. Piano-Roll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/docs/win/7. Piano-Roll.md -------------------------------------------------------------------------------- /src/Website/static/docs/win/8. Data-Formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/docs/win/8. Data-Formats.md -------------------------------------------------------------------------------- /src/Website/static/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/img/banner.png -------------------------------------------------------------------------------- /src/Website/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/static/robots.txt -------------------------------------------------------------------------------- /src/Website/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/svelte.config.js -------------------------------------------------------------------------------- /src/Website/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/tailwind.config.js -------------------------------------------------------------------------------- /src/Website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/tsconfig.json -------------------------------------------------------------------------------- /src/Website/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/src/Website/vite.config.ts -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Core.Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/Core.Tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/Core.Tests/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/Core.Tests/stdafx.h -------------------------------------------------------------------------------- /test/Core.Tests/vcr_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/Core.Tests/vcr_tests.cpp -------------------------------------------------------------------------------- /test/Lua.TestLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/Lua.TestLib/CMakeLists.txt -------------------------------------------------------------------------------- /test/Lua.TestLib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/Lua.TestLib/main.cpp -------------------------------------------------------------------------------- /test/lua/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/image.png -------------------------------------------------------------------------------- /test/lua/manual/302.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/302.lua -------------------------------------------------------------------------------- /test/lua/manual/336.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/336.lua -------------------------------------------------------------------------------- /test/lua/manual/420.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/420.lua -------------------------------------------------------------------------------- /test/lua/manual/action_system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/action_system.lua -------------------------------------------------------------------------------- /test/lua/manual/base_manual_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/base_manual_test.lua -------------------------------------------------------------------------------- /test/lua/manual/hotkey_prompt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/hotkey_prompt.lua -------------------------------------------------------------------------------- /test/lua/manual/input.prompt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/input.prompt.lua -------------------------------------------------------------------------------- /test/lua/manual/os.exit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/os.exit.lua -------------------------------------------------------------------------------- /test/lua/manual/print_in_atstop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/print_in_atstop.lua -------------------------------------------------------------------------------- /test/lua/manual/print_in_global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/manual/print_in_global.lua -------------------------------------------------------------------------------- /test/lua/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/output.png -------------------------------------------------------------------------------- /test/lua/test_prelude.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/test_prelude.lua -------------------------------------------------------------------------------- /test/lua/tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/test/lua/tests.lua -------------------------------------------------------------------------------- /toolchains/vcpkg-triplets/x64-windows-static-asan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/toolchains/vcpkg-triplets/x64-windows-static-asan.cmake -------------------------------------------------------------------------------- /toolchains/vcpkg-triplets/x86-windows-static-asan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/toolchains/vcpkg-triplets/x86-windows-static-asan.cmake -------------------------------------------------------------------------------- /toolchains/vcpkg-win64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/toolchains/vcpkg-win64.cmake -------------------------------------------------------------------------------- /tools/benchmark/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/benchmark/benchmark.py -------------------------------------------------------------------------------- /tools/benchmark/dummy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/benchmark/dummy.lua -------------------------------------------------------------------------------- /tools/benchmark/test_rom_benchmark.m64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/benchmark/test_rom_benchmark.m64 -------------------------------------------------------------------------------- /tools/check_encode_validity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/check_encode_validity.py -------------------------------------------------------------------------------- /tools/generate_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/generate_changelog.py -------------------------------------------------------------------------------- /tools/lua/d2d_dummy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/lua/d2d_dummy.lua -------------------------------------------------------------------------------- /tools/lua/savestate_api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/lua/savestate_api.lua -------------------------------------------------------------------------------- /tools/lua/savestate_api_stress_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/lua/savestate_api_stress_test.lua -------------------------------------------------------------------------------- /tools/lua/shimmed_apis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/lua/shimmed_apis.lua -------------------------------------------------------------------------------- /tools/m64/vcr_benchmark.m64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/m64/vcr_benchmark.m64 -------------------------------------------------------------------------------- /tools/m64/vcr_benchmark.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/m64/vcr_benchmark.st -------------------------------------------------------------------------------- /tools/plugins/NoAudio-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoAudio-x64.dll -------------------------------------------------------------------------------- /tools/plugins/NoAudio-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoAudio-x86.dll -------------------------------------------------------------------------------- /tools/plugins/NoInput-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoInput-x64.dll -------------------------------------------------------------------------------- /tools/plugins/NoInput-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoInput-x86.dll -------------------------------------------------------------------------------- /tools/plugins/NoRSP-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoRSP-x64.dll -------------------------------------------------------------------------------- /tools/plugins/NoRSP-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoRSP-x86.dll -------------------------------------------------------------------------------- /tools/plugins/NoVideo-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoVideo-x64.dll -------------------------------------------------------------------------------- /tools/plugins/NoVideo-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/plugins/NoVideo-x86.dll -------------------------------------------------------------------------------- /tools/roms/m64p_test_rom.v64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/tools/roms/m64p_test_rom.v64 -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vcpkg.json -------------------------------------------------------------------------------- /vendor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/aladdin-md5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/aladdin-md5/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/aladdin-md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/aladdin-md5/md5.c -------------------------------------------------------------------------------- /vendor/aladdin-md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/aladdin-md5/md5.h -------------------------------------------------------------------------------- /vendor/argh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/argh/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/argh/argh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/argh/argh.h -------------------------------------------------------------------------------- /vendor/bs-thread-pool/BS_thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/bs-thread-pool/BS_thread_pool.hpp -------------------------------------------------------------------------------- /vendor/bs-thread-pool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/bs-thread-pool/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/hqx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/hqx/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/hqx/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/hqx/common.h -------------------------------------------------------------------------------- /vendor/hqx/hq2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/hqx/hq2x.c -------------------------------------------------------------------------------- /vendor/hqx/hq3x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/hqx/hq3x.c -------------------------------------------------------------------------------- /vendor/hqx/hq4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/hqx/hq4x.c -------------------------------------------------------------------------------- /vendor/hqx/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/hqx/hqx.h -------------------------------------------------------------------------------- /vendor/hqx/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/hqx/init.c -------------------------------------------------------------------------------- /vendor/lua-modules/inspect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/lua-modules/inspect.lua -------------------------------------------------------------------------------- /vendor/lua-modules/lust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/lua-modules/lust.lua -------------------------------------------------------------------------------- /vendor/microlru/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/microlru/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/microlru/microlru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/microlru/microlru.h -------------------------------------------------------------------------------- /vendor/mini/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/mini/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/mini/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/mini/ini.h -------------------------------------------------------------------------------- /vendor/xbrz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/xbrz/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/xbrz/xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/xbrz/xbrz.cpp -------------------------------------------------------------------------------- /vendor/xbrz/xbrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/xbrz/xbrz.h -------------------------------------------------------------------------------- /vendor/xbrz/xbrz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/xbrz/xbrz_config.h -------------------------------------------------------------------------------- /vendor/xbrz/xbrz_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/xbrz/xbrz_tools.h -------------------------------------------------------------------------------- /vendor/xxhash64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/xxhash64/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/xxhash64/xxh64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64/mupen64-rr-lua/HEAD/vendor/xxhash64/xxh64.h --------------------------------------------------------------------------------