gitextract_j_xyk2b9/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── CREDITS.txt ├── MAME License.txt ├── README.md ├── git-version.cmake ├── make_version.py ├── msvc/ │ ├── .gitignore │ ├── angrylion-plus.sln │ ├── core.vcxproj │ ├── core.vcxproj.filters │ ├── output.vcxproj │ ├── output.vcxproj.filters │ ├── plugin-mupen64plus.vcxproj │ ├── plugin-mupen64plus.vcxproj.filters │ ├── plugin-zilmar.vcxproj │ └── plugin-zilmar.vcxproj.filters └── src/ ├── core/ │ ├── common.h │ ├── msg.h │ ├── n64video/ │ │ ├── rdp/ │ │ │ ├── blender.c │ │ │ ├── combiner.c │ │ │ ├── coverage.c │ │ │ ├── dither.c │ │ │ ├── fbuffer.c │ │ │ ├── rasterizer.c │ │ │ ├── rdram.c │ │ │ ├── tcoord.c │ │ │ ├── tex.c │ │ │ ├── tmem.c │ │ │ └── zbuffer.c │ │ ├── rdp.c │ │ ├── vi/ │ │ │ ├── divot.c │ │ │ ├── fetch.c │ │ │ ├── gamma.c │ │ │ ├── lerp.c │ │ │ ├── restore.c │ │ │ └── video.c │ │ └── vi.c │ ├── n64video.c │ ├── n64video.h │ ├── parallel.cpp │ ├── parallel.h │ └── version.h.in ├── output/ │ ├── gl_core_3_3.c │ ├── gl_core_3_3.h │ ├── gl_proc.h │ ├── screen.h │ ├── vdac.c │ └── vdac.h └── plugin/ ├── mupen64plus/ │ ├── api/ │ │ ├── m64p_common.h │ │ ├── m64p_config.h │ │ ├── m64p_plugin.h │ │ ├── m64p_types.h │ │ └── m64p_vidext.h │ ├── gfx_m64p.c │ ├── gfx_m64p.h │ ├── msg.c │ └── screen.c └── zilmar/ ├── config.c ├── config.h ├── config.rc ├── gfx_1.3.c ├── gfx_1.3.h ├── msg.c ├── resource.h ├── screen.c ├── wgl_ext.c └── wgl_ext.h