├── .gitignore ├── .gitlab-ci.yml ├── GLideN64 ├── .github │ └── workflows │ │ └── build.yml ├── .gitignore ├── .gitrepo ├── LICENSE ├── README.md ├── ini │ ├── GLideN64.custom.ini │ └── GLideN64.ini ├── licenses │ ├── GLSL-FXAA │ │ └── LICENSE.md │ ├── GlideHQ │ │ └── gpl-2.0.txt │ ├── Glow │ │ └── LICENSE │ ├── gles2n64 │ │ └── LICENSE │ └── readerwriterqueue │ │ └── LICENSE.md ├── projects │ ├── cmake │ │ └── Readme.txt │ └── msvc │ │ ├── GLideN64.sln │ │ ├── GLideN64.vcxproj │ │ ├── GLideN64.vcxproj.filters │ │ ├── GLideN64_Builder.cmd │ │ ├── GLideNUI-wtl.vcxproj │ │ ├── GLideNUI-wtl.vcxproj.filters │ │ ├── GLideNUI.pro │ │ ├── GLideNUI.vcxproj │ │ ├── GLideNUI.vcxproj.filters │ │ ├── lib │ │ ├── dbg │ │ │ ├── freetype253MT_D.lib │ │ │ ├── libpngd.lib │ │ │ └── zlibd.lib │ │ ├── msvc12 │ │ │ ├── dbg │ │ │ │ ├── freetype253MT_D.lib │ │ │ │ ├── libpngd.lib │ │ │ │ └── zlibd.lib │ │ │ └── rel │ │ │ │ ├── freetype253MT.lib │ │ │ │ ├── libpng.lib │ │ │ │ └── zlib.lib │ │ ├── rel │ │ │ ├── freetype253MT.lib │ │ │ ├── libpng.lib │ │ │ └── zlib.lib │ │ └── x64 │ │ │ ├── dbg │ │ │ ├── freetype253MT_D.lib │ │ │ ├── libpngd.lib │ │ │ └── zlibd.lib │ │ │ └── rel │ │ │ ├── freetype253MT.lib │ │ │ ├── libpng.lib │ │ │ └── zlib.lib │ │ ├── libGLideNHQ.vcxproj │ │ ├── libGLideNHQ.vcxproj.filters │ │ ├── osal.vcxproj │ │ ├── osal.vcxproj.filters │ │ ├── ticpp.vcxproj │ │ ├── ticpp.vcxproj.filters │ │ ├── ts2lang.vcxproj │ │ └── ts2lang.vcxproj.filters ├── src │ ├── 3DMath.cpp │ ├── 3DMath.h │ ├── BufferCopy │ │ ├── BlueNoiseTexture.cpp │ │ ├── BlueNoiseTexture.h │ │ ├── ColorBufferToRDRAM.cpp │ │ ├── ColorBufferToRDRAM.h │ │ ├── ColorBufferToRDRAMStub.h │ │ ├── DepthBufferToRDRAM.cpp │ │ ├── DepthBufferToRDRAM.h │ │ ├── RDRAMtoColorBuffer.cpp │ │ ├── RDRAMtoColorBuffer.h │ │ └── WriteToRDRAM.h │ ├── CMakeLists.txt │ ├── CRC.h │ ├── CRC32.cpp │ ├── CRC32_ARMV8.cpp │ ├── CRC_OPT.cpp │ ├── Combiner.cpp │ ├── Combiner.h │ ├── CombinerKey.cpp │ ├── CombinerKey.h │ ├── CommonPluginAPI.cpp │ ├── Config.cpp │ ├── Config.h │ ├── DebugDump.cpp │ ├── DebugDump.h │ ├── Debugger.cpp │ ├── Debugger.h │ ├── DepthBuffer.cpp │ ├── DepthBuffer.h │ ├── DepthBufferRender │ │ ├── ClipPolygon.cpp │ │ ├── ClipPolygon.h │ │ ├── DepthBufferRender.cpp │ │ └── DepthBufferRender.h │ ├── DisplayLoadProgress.cpp │ ├── DisplayLoadProgress.h │ ├── DisplayWindow.cpp │ ├── DisplayWindow.h │ ├── FrameBuffer.cpp │ ├── FrameBuffer.h │ ├── FrameBufferEmulationIssues.txt │ ├── FrameBufferInfo.cpp │ ├── FrameBufferInfo.h │ ├── FrameBufferInfoAPI.h │ ├── GBI.cpp │ ├── GBI.h │ ├── GLideN64.cpp │ ├── GLideN64.h │ ├── GLideN64.rc │ ├── GLideNHQ │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── TextureFilters.cpp │ │ ├── TextureFilters.h │ │ ├── TextureFilters_2xsai.cpp │ │ ├── TextureFilters_2xsai.h │ │ ├── TextureFilters_hq2x.cpp │ │ ├── TextureFilters_hq2x.h │ │ ├── TextureFilters_hq4x.cpp │ │ ├── TextureFilters_hq4x.h │ │ ├── TextureFilters_lq2x.h │ │ ├── TextureFilters_xbrz.cpp │ │ ├── TextureFilters_xbrz.h │ │ ├── TxCache.cpp │ │ ├── TxCache.h │ │ ├── TxDbg.cpp │ │ ├── TxDbg.h │ │ ├── TxFilter.cpp │ │ ├── TxFilter.h │ │ ├── TxFilterExport.cpp │ │ ├── TxFilterExport.h │ │ ├── TxHiResCache.cpp │ │ ├── TxHiResCache.h │ │ ├── TxHiResLoader.cpp │ │ ├── TxHiResLoader.h │ │ ├── TxHiResNoCache.cpp │ │ ├── TxHiResNoCache.h │ │ ├── TxImage.cpp │ │ ├── TxImage.h │ │ ├── TxInternal.h │ │ ├── TxQuantize.cpp │ │ ├── TxQuantize.h │ │ ├── TxReSample.cpp │ │ ├── TxReSample.h │ │ ├── TxTexCache.cpp │ │ ├── TxTexCache.h │ │ ├── TxUtil.cpp │ │ ├── TxUtil.h │ │ ├── gpl-2.0.txt │ │ ├── inc │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pnglibconf.h │ │ │ ├── pngstruct.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ ├── lib │ │ │ ├── libdxtn.a │ │ │ ├── libpng.a │ │ │ └── libz.a │ │ └── txWidestringHelper.h │ ├── GLideNUI-wtl │ │ ├── About.cpp │ │ ├── About.h │ │ ├── ConfigDlg.cpp │ │ ├── ConfigDlg.h │ │ ├── FileClass.cpp │ │ ├── FileClass.h │ │ ├── FontInfo.cpp │ │ ├── FontInfo.h │ │ ├── FullscreenResolutions.h │ │ ├── GLideNUI.cpp │ │ ├── GLideNUI.h │ │ ├── GLideNUI.rc │ │ ├── GlSettings.cpp │ │ ├── GlSettings.h │ │ ├── IniFileClass.cpp │ │ ├── IniFileClass.h │ │ ├── InputDialog.cpp │ │ ├── InputDialog.h │ │ ├── Language.cpp │ │ ├── Language.h │ │ ├── Settings.cpp │ │ ├── Settings.h │ │ ├── WTL │ │ │ ├── atlapp.h │ │ │ ├── atlcrack.h │ │ │ ├── atlctrls.h │ │ │ ├── atlctrlw.h │ │ │ ├── atlctrlx.h │ │ │ ├── atlddx.h │ │ │ ├── atldlgs.h │ │ │ ├── atldwm.h │ │ │ ├── atlfind.h │ │ │ ├── atlframe.h │ │ │ ├── atlgdi.h │ │ │ ├── atlmisc.h │ │ │ ├── atlprint.h │ │ │ ├── atlres.h │ │ │ ├── atlresce.h │ │ │ ├── atlribbon.h │ │ │ ├── atlscrl.h │ │ │ ├── atlsplit.h │ │ │ ├── atltheme.h │ │ │ ├── atluser.h │ │ │ ├── atlwince.h │ │ │ └── atlwinx.h │ │ ├── config-debug.cpp │ │ ├── config-debug.h │ │ ├── config-emulation.cpp │ │ ├── config-emulation.h │ │ ├── config-framebuffer.cpp │ │ ├── config-framebuffer.h │ │ ├── config-osd.cpp │ │ ├── config-osd.h │ │ ├── config-overscan.cpp │ │ ├── config-overscan.h │ │ ├── config-tab.cpp │ │ ├── config-tab.h │ │ ├── config-texture.cpp │ │ ├── config-texture.h │ │ ├── config-video.cpp │ │ ├── config-video.h │ │ ├── fullscreenresolutions_windows.cpp │ │ ├── resource.h │ │ ├── ticpp │ │ │ ├── ticpp.cpp │ │ │ ├── ticpp.h │ │ │ ├── ticppapi.h │ │ │ ├── ticpprc.h │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ └── tinyxmlparser.cpp │ │ ├── util │ │ │ ├── StdString.cpp │ │ │ ├── StdString.h │ │ │ ├── md5.cpp │ │ │ ├── md5.h │ │ │ ├── path.cpp │ │ │ ├── path.h │ │ │ ├── ts2lang.cpp │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── wtl-BitmapPicture.cpp │ │ ├── wtl-BitmapPicture.h │ │ ├── wtl-ColorButton.cpp │ │ ├── wtl-ColorButton.h │ │ ├── wtl-OsdButton.cpp │ │ ├── wtl-OsdButton.h │ │ ├── wtl-OsdPreview.cpp │ │ ├── wtl-OsdPreview.h │ │ ├── wtl-WindowFont.h │ │ ├── wtl-tooltip.h │ │ └── wtl.h │ ├── GLideNUI │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.h │ │ ├── AboutDialog.ui │ │ ├── ConfigDialog.cpp │ │ ├── ConfigDialog.h │ │ ├── Config_GLideNUI.cpp │ │ ├── FullscreenResolutions.h │ │ ├── GLideNUI.cpp │ │ ├── GLideNUI.h │ │ ├── GLideNUI.pro │ │ ├── HIDKeyToName.cpp │ │ ├── HIDKeyToName.h │ │ ├── QtKeyToHID.cpp │ │ ├── QtKeyToHID.h │ │ ├── Resources │ │ │ ├── BottomLeft.ico │ │ │ ├── BottomRight.ico │ │ │ ├── Down.ico │ │ │ ├── Icon-Original.ico │ │ │ ├── Icon.ico │ │ │ ├── Info.ico │ │ │ ├── Left.ico │ │ │ ├── Right.ico │ │ │ ├── TopLeft.ico │ │ │ ├── TopRight.ico │ │ │ ├── Up.ico │ │ │ └── Warning.ico │ │ ├── Settings.cpp │ │ ├── Settings.h │ │ ├── configDialog.ui │ │ ├── fullscreenresolutions_mupen64plus.cpp │ │ ├── fullscreenresolutions_windows.cpp │ │ └── icon.qrc │ ├── Graphics │ │ ├── ColorBufferReader.cpp │ │ ├── ColorBufferReader.h │ │ ├── CombinerProgram.cpp │ │ ├── CombinerProgram.h │ │ ├── Context.cpp │ │ ├── Context.h │ │ ├── ContextImpl.h │ │ ├── FramebufferTextureFormats.h │ │ ├── ObjectHandle.cpp │ │ ├── ObjectHandle.h │ │ ├── OpenGLContext │ │ │ ├── GLFunctions.cpp │ │ │ ├── GLFunctions.h │ │ │ ├── GLSL │ │ │ │ ├── glsl_CombinerInputs.cpp │ │ │ │ ├── glsl_CombinerInputs.h │ │ │ │ ├── glsl_CombinerProgramBuilder.cpp │ │ │ │ ├── glsl_CombinerProgramBuilder.h │ │ │ │ ├── glsl_CombinerProgramBuilderAccurate.cpp │ │ │ │ ├── glsl_CombinerProgramBuilderAccurate.h │ │ │ │ ├── glsl_CombinerProgramBuilderCommon.cpp │ │ │ │ ├── glsl_CombinerProgramBuilderCommon.h │ │ │ │ ├── glsl_CombinerProgramBuilderFast.cpp │ │ │ │ ├── glsl_CombinerProgramBuilderFast.h │ │ │ │ ├── glsl_CombinerProgramImpl.cpp │ │ │ │ ├── glsl_CombinerProgramImpl.h │ │ │ │ ├── glsl_CombinerProgramUniformFactory.cpp │ │ │ │ ├── glsl_CombinerProgramUniformFactory.h │ │ │ │ ├── glsl_CombinerProgramUniformFactoryAccurate.cpp │ │ │ │ ├── glsl_CombinerProgramUniformFactoryAccurate.h │ │ │ │ ├── glsl_CombinerProgramUniformFactoryCommon.cpp │ │ │ │ ├── glsl_CombinerProgramUniformFactoryCommon.h │ │ │ │ ├── glsl_CombinerProgramUniformFactoryFast.cpp │ │ │ │ ├── glsl_CombinerProgramUniformFactoryFast.h │ │ │ │ ├── glsl_FXAA.cpp │ │ │ │ ├── glsl_FXAA.h │ │ │ │ ├── glsl_ShaderPart.h │ │ │ │ ├── glsl_ShaderStorage.cpp │ │ │ │ ├── glsl_ShaderStorage.h │ │ │ │ ├── glsl_SpecialShadersFactory.cpp │ │ │ │ ├── glsl_SpecialShadersFactory.h │ │ │ │ ├── glsl_Utils.cpp │ │ │ │ └── glsl_Utils.h │ │ │ ├── GraphicBuffer │ │ │ │ ├── GraphicBufferWrapper.cpp │ │ │ │ ├── GraphicBufferWrapper.h │ │ │ │ ├── PrivateApi │ │ │ │ │ ├── GraphicBuffer.cpp │ │ │ │ │ ├── GraphicBuffer.h │ │ │ │ │ ├── gralloc.h │ │ │ │ │ ├── libhardware.cpp │ │ │ │ │ └── libhardware.h │ │ │ │ └── PublicApi │ │ │ │ │ ├── android_hardware_buffer_compat.cpp │ │ │ │ │ ├── android_hardware_buffer_compat.h │ │ │ │ │ ├── check.h │ │ │ │ │ └── dcheck.h │ │ │ ├── ThreadedOpenGl │ │ │ │ ├── BlockingQueue.h │ │ │ │ ├── RingBufferPool.cpp │ │ │ │ ├── RingBufferPool.h │ │ │ │ ├── atomicops.h │ │ │ │ ├── opengl_Command.cpp │ │ │ │ ├── opengl_Command.h │ │ │ │ ├── opengl_ObjectPool.cpp │ │ │ │ ├── opengl_ObjectPool.h │ │ │ │ ├── opengl_WrappedFunctions.cpp │ │ │ │ ├── opengl_WrappedFunctions.h │ │ │ │ ├── opengl_Wrapper.cpp │ │ │ │ ├── opengl_Wrapper.h │ │ │ │ └── readerwriterqueue.h │ │ │ ├── mupen64plus │ │ │ │ └── mupen64plus_DisplayWindow.cpp │ │ │ ├── opengl_Attributes.cpp │ │ │ ├── opengl_Attributes.h │ │ │ ├── opengl_BufferManipulationObjectFactory.cpp │ │ │ ├── opengl_BufferManipulationObjectFactory.h │ │ │ ├── opengl_BufferedDrawer.cpp │ │ │ ├── opengl_BufferedDrawer.h │ │ │ ├── opengl_CachedFunctions.cpp │ │ │ ├── opengl_CachedFunctions.h │ │ │ ├── opengl_ColorBufferReaderWithBufferStorage.cpp │ │ │ ├── opengl_ColorBufferReaderWithBufferStorage.h │ │ │ ├── opengl_ColorBufferReaderWithEGLImage.cpp │ │ │ ├── opengl_ColorBufferReaderWithEGLImage.h │ │ │ ├── opengl_ColorBufferReaderWithPixelBuffer.cpp │ │ │ ├── opengl_ColorBufferReaderWithPixelBuffer.h │ │ │ ├── opengl_ColorBufferReaderWithReadPixels.cpp │ │ │ ├── opengl_ColorBufferReaderWithReadPixels.h │ │ │ ├── opengl_ContextImpl.cpp │ │ │ ├── opengl_ContextImpl.h │ │ │ ├── opengl_GLInfo.cpp │ │ │ ├── opengl_GLInfo.h │ │ │ ├── opengl_GraphicsDrawer.h │ │ │ ├── opengl_Parameters.cpp │ │ │ ├── opengl_TextureManipulationObjectFactory.cpp │ │ │ ├── opengl_TextureManipulationObjectFactory.h │ │ │ ├── opengl_UnbufferedDrawer.cpp │ │ │ ├── opengl_UnbufferedDrawer.h │ │ │ ├── opengl_Utils.cpp │ │ │ ├── opengl_Utils.h │ │ │ └── windows │ │ │ │ ├── WindowsWGL.cpp │ │ │ │ ├── WindowsWGL.h │ │ │ │ └── windows_DisplayWindow.cpp │ │ ├── Parameter.h │ │ ├── Parameters.h │ │ ├── PixelBuffer.h │ │ └── ShaderProgram.h │ ├── GraphicsDrawer.cpp │ ├── GraphicsDrawer.h │ ├── Log.cpp │ ├── Log.h │ ├── Log_android.cpp │ ├── Log_ios.mm │ ├── MemoryStatus.h │ ├── MupenPlusPluginAPI.cpp │ ├── N64.cpp │ ├── N64.h │ ├── Neon │ │ ├── 3DMathNeon.cpp │ │ ├── CRC_OPT_NEON.cpp │ │ ├── RSP_LoadMatrixNeon.cpp │ │ └── gSPNeon.cpp │ ├── PaletteTexture.cpp │ ├── PaletteTexture.h │ ├── Performance.cpp │ ├── Performance.h │ ├── Platform.h │ ├── PluginAPI.h │ ├── PostProcessor.cpp │ ├── PostProcessor.h │ ├── RDP.cpp │ ├── RDP.h │ ├── RSP.cpp │ ├── RSP.h │ ├── RSP_LoadMatrix.cpp │ ├── RSP_LoadMatrixX86.cpp │ ├── SoftwareRender.cpp │ ├── SoftwareRender.h │ ├── TexrectDrawer.cpp │ ├── TexrectDrawer.h │ ├── TextDrawer.cpp │ ├── TextDrawer.h │ ├── TextDrawerStub.cpp │ ├── TextureFilterHandler.cpp │ ├── TextureFilterHandler.h │ ├── Textures.cpp │ ├── Textures.h │ ├── TxFilterStub.cpp │ ├── Types.h │ ├── VI.cpp │ ├── VI.h │ ├── ZilmarGFX_1_3.h │ ├── ZilmarPluginAPI.cpp │ ├── ZlutTexture.cpp │ ├── ZlutTexture.h │ ├── common │ │ └── CommonAPIImpl_common.cpp │ ├── convert.cpp │ ├── convert.h │ ├── gDP.cpp │ ├── gDP.h │ ├── gSP.cpp │ ├── gSP.h │ ├── getRevision.bat │ ├── getRevision.sh │ ├── inc │ │ ├── GL │ │ │ ├── glcorearb.h │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── callbacks.h │ │ ├── config.h │ │ ├── debugger.h │ │ ├── freetype │ │ │ └── include │ │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ft2build.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftautoh.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftcffdrv.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── ftttdrv.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── ftxf86.h │ │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpic.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ └── svxf86nm.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ ├── m64p_common.h │ │ ├── m64p_config.h │ │ ├── m64p_debugger.h │ │ ├── m64p_frontend.h │ │ ├── m64p_plugin.h │ │ ├── m64p_types.h │ │ └── m64p_vidext.h │ ├── iob.cpp │ ├── mupenplus │ │ ├── CommonAPIImpl_mupenplus.cpp │ │ ├── Config_mupenplus.cpp │ │ ├── GLideN64_mupenplus.h │ │ ├── MemoryStatus_mupenplus.cpp │ │ ├── MupenPlusAPIImpl.cpp │ │ └── video_api_export.ver │ ├── osal │ │ ├── CMakeLists.txt │ │ ├── keycode │ │ │ └── keycode.h │ │ ├── osal_export.h │ │ ├── osal_files.h │ │ ├── osal_files_ios.mm │ │ ├── osal_files_unix.c │ │ ├── osal_files_win32.c │ │ ├── osal_keys.h │ │ ├── osal_keys_linux.c │ │ ├── osal_keys_unix.c │ │ └── osal_keys_win.c │ ├── resource.h │ ├── sdl2_compat.h │ ├── uCodes │ │ ├── F3D.cpp │ │ ├── F3D.h │ │ ├── F3DAM.cpp │ │ ├── F3DAM.h │ │ ├── F3DBETA.cpp │ │ ├── F3DBETA.h │ │ ├── F3DDKR.cpp │ │ ├── F3DDKR.h │ │ ├── F3DEX.cpp │ │ ├── F3DEX.h │ │ ├── F3DEX095.cpp │ │ ├── F3DEX095.h │ │ ├── F3DEX2.cpp │ │ ├── F3DEX2.h │ │ ├── F3DEX2ACCLAIM.cpp │ │ ├── F3DEX2ACCLAIM.h │ │ ├── F3DEX2CBFD.cpp │ │ ├── F3DEX2CBFD.h │ │ ├── F3DEX3.cpp │ │ ├── F3DEX3.h │ │ ├── F3DFLX2.cpp │ │ ├── F3DFLX2.h │ │ ├── F3DGOLDEN.cpp │ │ ├── F3DGOLDEN.h │ │ ├── F3DPD.cpp │ │ ├── F3DPD.h │ │ ├── F3DSETA.cpp │ │ ├── F3DSETA.h │ │ ├── F3DTEXA.cpp │ │ ├── F3DTEXA.h │ │ ├── F3DZEX2.cpp │ │ ├── F3DZEX2.h │ │ ├── F5Indi_Naboo.cpp │ │ ├── F5Indi_Naboo.h │ │ ├── F5Rogue.cpp │ │ ├── F5Rogue.h │ │ ├── L3D.cpp │ │ ├── L3D.h │ │ ├── L3DEX.cpp │ │ ├── L3DEX.h │ │ ├── L3DEX2.cpp │ │ ├── L3DEX2.h │ │ ├── S2DEX.cpp │ │ ├── S2DEX.h │ │ ├── S2DEX2.cpp │ │ ├── S2DEX2.h │ │ ├── T3DUX.cpp │ │ ├── T3DUX.h │ │ ├── Turbo3D.cpp │ │ ├── Turbo3D.h │ │ ├── ZSort.cpp │ │ ├── ZSort.h │ │ ├── ZSortBOSS.cpp │ │ └── ZSortBOSS.h │ ├── windows │ │ ├── CommonAPIImpl_windows.cpp │ │ ├── GLideN64_windows.cpp │ │ ├── GLideN64_windows.h │ │ ├── MemoryStatus_windows.cpp │ │ ├── ScreenShot.cpp │ │ ├── ScreenShot.h │ │ └── ZilmarAPIImpl_windows.cpp │ ├── winlnxdefs.h │ ├── wst.h │ └── xxHash │ │ └── xxhash.h └── translations │ ├── gliden64_de.ts │ ├── gliden64_es.ts │ ├── gliden64_fr.ts │ ├── gliden64_it.ts │ ├── gliden64_ja.ts │ ├── gliden64_pl.ts │ ├── gliden64_pt_BR.ts │ ├── gliden64_zh.ts │ └── release │ ├── gliden64_de.qm │ ├── gliden64_es.qm │ ├── gliden64_fr.qm │ ├── gliden64_it.qm │ ├── gliden64_ja.qm │ ├── gliden64_pl.qm │ ├── gliden64_pt_BR.qm │ └── gliden64_zh.qm ├── LICENSE ├── Makefile ├── Makefile.common ├── README.md ├── custom ├── GLideN64 │ ├── GLideN64.custom.ini.h │ ├── GLideN64_libretro.h │ ├── inc │ │ └── ARB_buffer_storage.h │ └── mupenplus │ │ ├── CommonAPIImpl_mupenplus.cpp │ │ ├── Config_mupenplus.cpp │ │ ├── GLideN64_mupenplus.h │ │ └── OpenGL_mupenplus.cpp ├── android │ └── include │ │ ├── GLES3 │ │ └── gl31.h │ │ ├── android │ │ └── hardware_buffer.h │ │ ├── cutils │ │ ├── android_reboot.h │ │ ├── aref.h │ │ ├── ashmem.h │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── compiler.h │ │ ├── config_utils.h │ │ ├── debugger.h │ │ ├── fs.h │ │ ├── hashmap.h │ │ ├── iosched_policy.h │ │ ├── jstring.h │ │ ├── klog.h │ │ ├── list.h │ │ ├── log.h │ │ ├── memory.h │ │ ├── misc.h │ │ ├── multiuser.h │ │ ├── native_handle.h │ │ ├── open_memstream.h │ │ ├── partition_utils.h │ │ ├── process_name.h │ │ ├── properties.h │ │ ├── qtaguid.h │ │ ├── record_stream.h │ │ ├── sched_policy.h │ │ ├── sockets.h │ │ ├── str_parms.h │ │ ├── threads.h │ │ ├── trace.h │ │ └── uevent.h │ │ ├── hardware │ │ ├── activity_recognition.h │ │ ├── audio.h │ │ ├── audio_alsaops.h │ │ ├── audio_effect.h │ │ ├── audio_policy.h │ │ ├── bluetooth.h │ │ ├── boot_control.h │ │ ├── bt_av.h │ │ ├── bt_common_types.h │ │ ├── bt_gatt.h │ │ ├── bt_gatt_client.h │ │ ├── bt_gatt_server.h │ │ ├── bt_gatt_types.h │ │ ├── bt_hf.h │ │ ├── bt_hf_client.h │ │ ├── bt_hh.h │ │ ├── bt_hl.h │ │ ├── bt_mce.h │ │ ├── bt_pan.h │ │ ├── bt_rc.h │ │ ├── bt_sdp.h │ │ ├── bt_sock.h │ │ ├── camera.h │ │ ├── camera2.h │ │ ├── camera3.h │ │ ├── camera_common.h │ │ ├── consumerir.h │ │ ├── fb.h │ │ ├── fingerprint.h │ │ ├── fused_location.h │ │ ├── gatekeeper.h │ │ ├── gps.h │ │ ├── gralloc.h │ │ ├── hardware.h │ │ ├── hdmi_cec.h │ │ ├── hw_auth_token.h │ │ ├── hwcomposer.h │ │ ├── hwcomposer_defs.h │ │ ├── input.h │ │ ├── keymaster0.h │ │ ├── keymaster1.h │ │ ├── keymaster2.h │ │ ├── keymaster_common.h │ │ ├── keymaster_defs.h │ │ ├── lights.h │ │ ├── local_time_hal.h │ │ ├── memtrack.h │ │ ├── nfc.h │ │ ├── nfc_tag.h │ │ ├── nvram.h │ │ ├── nvram_defs.h │ │ ├── power.h │ │ ├── qemu_pipe.h │ │ ├── qemud.h │ │ ├── radio.h │ │ ├── sensors.h │ │ ├── sound_trigger.h │ │ ├── tv_input.h │ │ └── vibrator.h │ │ ├── log │ │ ├── event_tag_map.h │ │ ├── log.h │ │ ├── log_read.h │ │ ├── logd.h │ │ ├── logger.h │ │ ├── logprint.h │ │ └── uio.h │ │ ├── system │ │ ├── camera.h │ │ ├── graphics.h │ │ ├── radio.h │ │ ├── thread_defs.h │ │ └── window.h │ │ ├── ui │ │ ├── ANativeObjectBase.h │ │ ├── DisplayInfo.h │ │ ├── DisplayStatInfo.h │ │ ├── Fence.h │ │ ├── FrameStats.h │ │ ├── FramebufferNativeWindow.h │ │ ├── GraphicBuffer.h │ │ ├── GraphicBufferAllocator.h │ │ ├── GraphicBufferMapper.h │ │ ├── PixelFormat.h │ │ ├── Point.h │ │ ├── Rect.h │ │ ├── Region.h │ │ ├── TMatHelpers.h │ │ ├── TVecHelpers.h │ │ ├── UiConfig.h │ │ ├── mat4.h │ │ ├── vec2.h │ │ ├── vec3.h │ │ └── vec4.h │ │ └── utils │ │ ├── AndroidThreads.h │ │ ├── Atomic.h │ │ ├── BitSet.h │ │ ├── BlobCache.h │ │ ├── ByteOrder.h │ │ ├── CallStack.h │ │ ├── Compat.h │ │ ├── Condition.h │ │ ├── Debug.h │ │ ├── Endian.h │ │ ├── Errors.h │ │ ├── FileMap.h │ │ ├── Flattenable.h │ │ ├── Functor.h │ │ ├── JenkinsHash.h │ │ ├── KeyedVector.h │ │ ├── LinearTransform.h │ │ ├── List.h │ │ ├── Log.h │ │ ├── Looper.h │ │ ├── LruCache.h │ │ ├── Mutex.h │ │ ├── NativeHandle.h │ │ ├── Printer.h │ │ ├── ProcessCallStack.h │ │ ├── PropertyMap.h │ │ ├── RWLock.h │ │ ├── RefBase.h │ │ ├── Singleton.h │ │ ├── SortedVector.h │ │ ├── StopWatch.h │ │ ├── String16.h │ │ ├── String8.h │ │ ├── StrongPointer.h │ │ ├── SystemClock.h │ │ ├── Thread.h │ │ ├── ThreadDefs.h │ │ ├── Timers.h │ │ ├── Tokenizer.h │ │ ├── Trace.h │ │ ├── TypeHelpers.h │ │ ├── Unicode.h │ │ ├── Vector.h │ │ ├── VectorImpl.h │ │ ├── misc.h │ │ └── threads.h ├── dependencies │ ├── libpng │ │ ├── arm │ │ │ ├── arm_init.c │ │ │ ├── filter_neon.S │ │ │ └── filter_neon_intrinsics.c │ │ ├── config.h │ │ ├── contrib │ │ │ └── arm-neon │ │ │ │ ├── android-ndk.c │ │ │ │ ├── linux-auxv.c │ │ │ │ └── linux.c │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtrans.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c │ └── libzlib │ │ ├── Makefile │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── ios │ └── compat.c ├── mman-win32 │ ├── mman.c │ └── sys │ │ └── mman.h ├── mupen64plus-core │ ├── api │ │ ├── config.c │ │ ├── msvc_compat.h │ │ └── vidext_libretro.c │ ├── main │ │ └── mupen64plus.ini.h │ └── plugin │ │ ├── audio_libretro │ │ ├── audio_backend_libretro.c │ │ └── audio_plugin.h │ │ ├── emulate_game_controller_via_input_plugin.h │ │ ├── emulate_game_controller_via_libretro.c │ │ └── plugin.h ├── mupen64plus-next_common.h └── tools │ └── gas-preprocessor.pl ├── generate-ini-headers.sh ├── libretro-common ├── .gitignore ├── .gitrepo ├── Makefile.test ├── audio │ ├── audio_mix.c │ ├── audio_mixer.c │ ├── conversion │ │ ├── float_to_s16.c │ │ ├── float_to_s16_neon.S │ │ ├── float_to_s16_neon.c │ │ ├── mono_to_stereo_float.c │ │ ├── s16_to_float.c │ │ ├── s16_to_float_neon.S │ │ ├── s16_to_float_neon.c │ │ └── stereo_to_mono_float.c │ ├── dsp_filter.c │ ├── dsp_filters │ │ ├── BassBoost.dsp │ │ ├── ChipTune-Lowpass.dsp │ │ ├── ChipTuneEnhance.dsp │ │ ├── Chorus.dsp │ │ ├── Crystalizer.dsp │ │ ├── EQ.dsp │ │ ├── Echo.dsp │ │ ├── EchoReverb.dsp │ │ ├── HighShelfDampen.dsp │ │ ├── IIR.dsp │ │ ├── LowPassCPS.dsp │ │ ├── Makefile │ │ ├── Mono.dsp │ │ ├── Panning.dsp │ │ ├── Phaser.dsp │ │ ├── Reverb.dsp │ │ ├── Tremolo.dsp │ │ ├── Vibrato.dsp │ │ ├── WahWah.dsp │ │ ├── chorus.c │ │ ├── configure │ │ ├── crystalizer.c │ │ ├── echo.c │ │ ├── eq.c │ │ ├── fft │ │ │ ├── fft.c │ │ │ └── fft.h │ │ ├── iir.c │ │ ├── link.T │ │ ├── panning.c │ │ ├── phaser.c │ │ ├── reverb.c │ │ ├── tremolo.c │ │ ├── vibrato.c │ │ └── wahwah.c │ └── resampler │ │ ├── audio_resampler.c │ │ └── drivers │ │ ├── nearest_resampler.c │ │ ├── sinc_resampler.c │ │ └── sinc_resampler_neon.S ├── cdrom │ └── cdrom.c ├── compat │ ├── compat_fnmatch.c │ ├── compat_getopt.c │ ├── compat_ifaddrs.c │ ├── compat_posix_string.c │ ├── compat_snprintf.c │ ├── compat_strcasestr.c │ ├── compat_strl.c │ ├── compat_strldup.c │ ├── compat_vscprintf.c │ └── fopen_utf8.c ├── crt │ ├── include │ │ └── string.h │ └── string.c ├── dynamic │ └── dylib.c ├── encodings │ ├── encoding_base64.c │ ├── encoding_crc32.c │ └── encoding_utf.c ├── features │ └── features_cpu.c ├── file │ ├── archive_file.c │ ├── archive_file_7z.c │ ├── archive_file_zlib.c │ ├── config_file.c │ ├── config_file_userdata.c │ ├── file_path.c │ ├── file_path_io.c │ ├── nbio │ │ ├── nbio_intf.c │ │ ├── nbio_linux.c │ │ ├── nbio_orbis.c │ │ ├── nbio_stdio.c │ │ ├── nbio_unixmmap.c │ │ └── nbio_windowsmmap.c │ └── retro_dirent.c ├── formats │ ├── bmp │ │ ├── rbmp.c │ │ └── rbmp_encode.c │ ├── cdfs │ │ └── cdfs.c │ ├── image_texture.c │ ├── image_transfer.c │ ├── jpeg │ │ └── rjpeg.c │ ├── json │ │ └── rjson.c │ ├── libchdr │ │ ├── libchdr_bitstream.c │ │ ├── libchdr_cdrom.c │ │ ├── libchdr_chd.c │ │ ├── libchdr_flac.c │ │ ├── libchdr_flac_codec.c │ │ ├── libchdr_huffman.c │ │ ├── libchdr_lzma.c │ │ └── libchdr_zlib.c │ ├── logiqx_dat │ │ └── logiqx_dat.c │ ├── m3u │ │ └── m3u_file.c │ ├── png │ │ ├── rpng.c │ │ ├── rpng_encode.c │ │ └── rpng_internal.h │ ├── tga │ │ └── rtga.c │ ├── wav │ │ └── rwav.c │ └── xml │ │ ├── rxml.c │ │ └── test │ │ ├── Makefile │ │ └── rxml_test.c ├── gfx │ ├── gl_capabilities.c │ └── scaler │ │ ├── pixconv.c │ │ ├── scaler.c │ │ ├── scaler_filter.c │ │ └── scaler_int.c ├── glsm │ └── glsm.c ├── glsym │ ├── README.md │ ├── glgen.py │ ├── glsym_es2.c │ ├── glsym_es3.c │ ├── glsym_gl.c │ ├── rglgen.c │ ├── rglgen.py │ └── xglgen.py ├── hash │ └── lrc_hash.c ├── include │ ├── array │ │ ├── rbuf.h │ │ └── rhmap.h │ ├── audio │ │ ├── audio_mix.h │ │ ├── audio_mixer.h │ │ ├── audio_resampler.h │ │ ├── conversion │ │ │ ├── dual_mono.h │ │ │ ├── float_to_s16.h │ │ │ └── s16_to_float.h │ │ └── dsp_filter.h │ ├── boolean.h │ ├── cdrom │ │ └── cdrom.h │ ├── clamping.h │ ├── compat │ │ ├── apple_compat.h │ │ ├── fnmatch.h │ │ ├── fopen_utf8.h │ │ ├── getopt.h │ │ ├── ifaddrs.h │ │ ├── intrinsics.h │ │ ├── msvc.h │ │ ├── msvc │ │ │ └── stdint.h │ │ ├── posix_string.h │ │ ├── strcasestr.h │ │ ├── strl.h │ │ ├── zconf.h │ │ ├── zconf.h.in │ │ ├── zlib.h │ │ ├── zlib │ │ │ ├── zconf.h │ │ │ ├── zconf.h.in │ │ │ ├── zlib.h │ │ │ └── zutil.h │ │ └── zutil.h │ ├── defines │ │ ├── cocoa_defines.h │ │ ├── d3d_defines.h │ │ ├── gx_defines.h │ │ ├── ps3_defines.h │ │ ├── ps4_defines.h │ │ └── psp_defines.h │ ├── dynamic │ │ └── dylib.h │ ├── encodings │ │ ├── base64.h │ │ ├── crc32.h │ │ ├── utf.h │ │ └── win32.h │ ├── fastcpy.h │ ├── features │ │ └── features_cpu.h │ ├── file │ │ ├── archive_file.h │ │ ├── config_file.h │ │ ├── config_file_userdata.h │ │ ├── file_path.h │ │ └── nbio.h │ ├── filters.h │ ├── formats │ │ ├── cdfs.h │ │ ├── image.h │ │ ├── logiqx_dat.h │ │ ├── m3u_file.h │ │ ├── rbmp.h │ │ ├── rjpeg.h │ │ ├── rjson.h │ │ ├── rjson_helpers.h │ │ ├── rpng.h │ │ ├── rtga.h │ │ ├── rwav.h │ │ └── rxml.h │ ├── gfx │ │ ├── gl_capabilities.h │ │ ├── math │ │ │ ├── matrix_3x3.h │ │ │ ├── matrix_4x4.h │ │ │ ├── vector_2.h │ │ │ ├── vector_3.h │ │ │ └── vector_4.h │ │ ├── scaler │ │ │ ├── filter.h │ │ │ ├── pixconv.h │ │ │ ├── scaler.h │ │ │ └── scaler_int.h │ │ └── video_frame.h │ ├── glsm │ │ ├── glsm.h │ │ ├── glsm_caps.h │ │ ├── glsm_state_ctl.h │ │ └── glsmsym.h │ ├── glsym │ │ ├── glsym.h │ │ ├── glsym_es2.h │ │ ├── glsym_es3.h │ │ ├── glsym_gl.h │ │ ├── rglgen.h │ │ ├── rglgen_headers.h │ │ ├── rglgen_private_headers.h │ │ └── switch │ │ │ ├── nx_gl.h │ │ │ └── nx_glsym.h │ ├── libchdr │ │ ├── bitstream.h │ │ ├── cdrom.h │ │ ├── chd.h │ │ ├── coretypes.h │ │ ├── flac.h │ │ ├── huffman.h │ │ ├── libchdr_zlib.h │ │ ├── lzma.h │ │ └── minmax.h │ ├── libco.h │ ├── libretro.h │ ├── libretro_d3d.h │ ├── libretro_dspfilter.h │ ├── libretro_gskit_ps2.h │ ├── libretro_vulkan.h │ ├── lists │ │ ├── dir_list.h │ │ ├── file_list.h │ │ ├── linked_list.h │ │ ├── nested_list.h │ │ └── string_list.h │ ├── lrc_hash.h │ ├── math │ │ ├── complex.h │ │ ├── float_minmax.h │ │ └── fxp.h │ ├── media │ │ └── media_detect_cd.h │ ├── memalign.h │ ├── memmap.h │ ├── net │ │ ├── net_compat.h │ │ ├── net_http.h │ │ ├── net_http_parse.h │ │ ├── net_ifinfo.h │ │ ├── net_socket.h │ │ └── net_socket_ssl.h │ ├── playlists │ │ └── label_sanitization.h │ ├── queues │ │ ├── fifo_queue.h │ │ ├── generic_queue.h │ │ ├── message_queue.h │ │ └── task_queue.h │ ├── retro_assert.h │ ├── retro_common.h │ ├── retro_common_api.h │ ├── retro_dirent.h │ ├── retro_endianness.h │ ├── retro_environment.h │ ├── retro_inline.h │ ├── retro_math.h │ ├── retro_miscellaneous.h │ ├── retro_stat.h │ ├── retro_timers.h │ ├── rthreads │ │ ├── async_job.h │ │ ├── rthreads.h │ │ └── tpool.h │ ├── streams │ │ ├── chd_stream.h │ │ ├── file_stream.h │ │ ├── file_stream_transforms.h │ │ ├── interface_stream.h │ │ ├── memory_stream.h │ │ ├── network_stream.h │ │ ├── rzip_stream.h │ │ ├── stdin_stream.h │ │ └── trans_stream.h │ ├── string │ │ └── stdstring.h │ ├── time │ │ └── rtime.h │ ├── utils │ │ └── md5.h │ ├── vfs │ │ ├── vfs.h │ │ ├── vfs_implementation.h │ │ └── vfs_implementation_cdrom.h │ └── vulkan │ │ └── vulkan_symbol_wrapper.h ├── libco │ ├── aarch64.c │ ├── amd64.c │ ├── armeabi.c │ ├── fiber.c │ ├── genode.cpp │ ├── libco.c │ ├── ppc.c │ ├── ps2.c │ ├── ps3.S │ ├── psp1.c │ ├── psp2.c │ ├── scefiber.c │ ├── sjlj.c │ ├── ucontext.c │ └── x86.c ├── lists │ ├── dir_list.c │ ├── file_list.c │ ├── linked_list.c │ ├── nested_list.c │ ├── string_list.c │ └── vector_list.c ├── media │ └── media_detect_cd.c ├── memmap │ ├── memalign.c │ └── memmap.c ├── net │ ├── net_compat.c │ ├── net_http.c │ ├── net_http_parse.c │ ├── net_ifinfo.c │ ├── net_socket.c │ ├── net_socket_ssl_bear.c │ └── net_socket_ssl_mbed.c ├── playlists │ └── label_sanitization.c ├── queues │ ├── fifo_queue.c │ ├── generic_queue.c │ ├── message_queue.c │ └── task_queue.c ├── rthreads │ ├── ctr_pthread.h │ ├── gx_pthread.h │ ├── psp_pthread.h │ ├── rthreads.c │ ├── tpool.c │ ├── wiiu_pthread.h │ └── xenon_sdl_threads.c ├── samples │ ├── compat │ │ ├── fnmatch │ │ │ ├── Makefile │ │ │ └── compat_fnmatch_test.c │ │ ├── snprintf │ │ │ ├── Makefile │ │ │ └── snprintf_test.c │ │ └── strl │ │ │ ├── Makefile │ │ │ └── strl_test.c │ ├── core_options │ │ ├── README.md │ │ ├── example_categories │ │ │ ├── conversion_scripts │ │ │ │ ├── core_option_regex.py │ │ │ │ └── v1_to_v2_converter.py │ │ │ ├── libretro_core_options.h │ │ │ └── libretro_core_options_intl.h │ │ ├── example_default │ │ │ ├── libretro_core_options.h │ │ │ └── libretro_core_options_intl.h │ │ ├── example_hide_option │ │ │ ├── libretro_core_options.h │ │ │ └── libretro_core_options_intl.h │ │ └── example_translation │ │ │ ├── libretro_core_options.h │ │ │ ├── libretro_core_options_intl.h │ │ │ └── translation scripts │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── crowdin_intl.yml │ │ │ │ └── crowdin_prep.yml │ │ │ ├── crowdin.yml │ │ │ ├── instructions.txt │ │ │ └── intl │ │ │ ├── .gitignore │ │ │ ├── core_opt_translation.py │ │ │ ├── core_option_regex.py │ │ │ ├── crowdin_intl.py │ │ │ ├── crowdin_prep.py │ │ │ └── v1_to_v2_converter.py │ ├── file │ │ ├── config_file │ │ │ ├── Makefile │ │ │ └── config_file_test.c │ │ └── nbio │ │ │ ├── Makefile │ │ │ └── nbio_test.c │ ├── formats │ │ ├── png │ │ │ ├── Makefile │ │ │ └── rpng_test.c │ │ └── xml │ │ │ ├── Makefile │ │ │ └── rxml_test.c │ ├── net │ │ ├── Makefile │ │ ├── http_test │ │ ├── net_http_parse_test.c │ │ ├── net_http_test.c │ │ ├── net_ifinfo │ │ ├── net_ifinfo_test.c │ │ └── udp-test.c │ ├── streams │ │ └── rzip │ │ │ ├── Makefile │ │ │ └── rzip.c │ └── utils │ │ ├── Makefile │ │ ├── crc32.c │ │ ├── md5_test.c │ │ └── sha1_main.c ├── streams │ ├── chd_stream.c │ ├── file_stream.c │ ├── file_stream_transforms.c │ ├── interface_stream.c │ ├── memory_stream.c │ ├── network_stream.c │ ├── rzip_stream.c │ ├── stdin_stream.c │ ├── trans_stream.c │ ├── trans_stream_pipe.c │ └── trans_stream_zlib.c ├── string │ └── stdstring.c ├── test │ ├── hash │ │ └── test_hash.c │ ├── lists │ │ └── test_linked_list.c │ ├── queues │ │ └── test_generic_queue.c │ ├── string │ │ └── test_stdstring.c │ └── utils │ │ └── test_utils.c ├── time │ └── rtime.c ├── utils │ ├── debugbreak │ │ └── debugbreak.c │ ├── djb2.c │ ├── md5.c │ └── sha1.c ├── vfs │ ├── vfs_implementation.c │ ├── vfs_implementation_cdrom.c │ └── vfs_implementation_uwp.cpp └── vulkan │ └── vulkan_symbol_wrapper.c ├── libretro ├── jni │ ├── Android.mk │ └── Application.mk ├── libretro.c ├── libretro_core_options.h ├── libretro_memory.h ├── libretro_perf.h ├── libretro_private.h └── link.T ├── mupen64plus-core ├── .gitattributes ├── .github │ └── workflows │ │ ├── build.yml │ │ ├── schedule.yml │ │ └── scripts │ │ ├── ci_backup_mingw_deps.sh │ │ ├── ci_backup_msvc_deps.cmd │ │ ├── ci_build.sh │ │ ├── ci_get_libglew_i386.sh │ │ ├── ci_install_ubuntu_deps.sh │ │ ├── ci_msvc_build.cmd │ │ └── ci_nightly_artifacts.sh ├── .gitignore ├── .gitrepo ├── .travis.yml ├── CREDITS ├── INSTALL ├── LICENSES ├── README ├── README.md ├── RELEASE ├── appveyor.yml ├── data │ ├── font.ttf │ ├── mupen64plus.ini │ └── mupencheat.txt ├── doc │ ├── emuwiki-api-doc │ │ ├── Home.mediawiki │ │ ├── Mupen64Plus-Core-Parameters.mediawiki │ │ ├── Mupen64Plus-Plugin-Parameters.mediawiki │ │ ├── Mupen64Plus-v2.0-API-Versioning.mediawiki │ │ ├── Mupen64Plus-v2.0-Core-API-v1.0.mediawiki │ │ ├── Mupen64Plus-v2.0-Core-Basic.mediawiki │ │ ├── Mupen64Plus-v2.0-Core-Config.mediawiki │ │ ├── Mupen64Plus-v2.0-Core-Debugger.mediawiki │ │ ├── Mupen64Plus-v2.0-Core-Front-End.mediawiki │ │ ├── Mupen64Plus-v2.0-Core-Video-Extension.mediawiki │ │ ├── Mupen64Plus-v2.0-Design-Proposal-3.mediawiki │ │ ├── Mupen64Plus-v2.0-Netplay-API.mediawiki │ │ ├── Mupen64Plus-v2.0-Plugin-API.mediawiki │ │ └── Mupen64Plus-v2.0-headers.mediawiki │ ├── font-license │ ├── gpl-license │ ├── lgpl-license │ └── new_dynarec.mediawiki ├── projects │ ├── msvc │ │ ├── mupen64plus-core.vcxproj │ │ └── mupen64plus-core.vcxproj.filters │ └── unix │ │ └── Makefile ├── src │ ├── api │ │ ├── api_export.ver │ │ ├── callbacks.c │ │ ├── callbacks.h │ │ ├── common.c │ │ ├── config.c │ │ ├── config.h │ │ ├── debugger.c │ │ ├── debugger.h │ │ ├── frontend.c │ │ ├── m64p_common.h │ │ ├── m64p_config.h │ │ ├── m64p_debugger.h │ │ ├── m64p_frontend.h │ │ ├── m64p_plugin.h │ │ ├── m64p_types.h │ │ ├── m64p_vidext.h │ │ ├── vidext.c │ │ ├── vidext.h │ │ └── vidext_sdl2_compat.h │ ├── asm_defines │ │ └── asm_defines.c │ ├── backends │ │ ├── api │ │ │ ├── audio_out_backend.h │ │ │ ├── clock_backend.h │ │ │ ├── controller_input_backend.h │ │ │ ├── joybus.h │ │ │ ├── rumble_backend.h │ │ │ ├── storage_backend.h │ │ │ ├── video_capture_backend.c │ │ │ └── video_capture_backend.h │ │ ├── clock_ctime_plus_delta.c │ │ ├── clock_ctime_plus_delta.h │ │ ├── dummy_video_capture.c │ │ ├── file_storage.c │ │ ├── file_storage.h │ │ ├── opencv_video_capture.cpp │ │ └── plugins_compat │ │ │ ├── audio_plugin_compat.c │ │ │ ├── input_plugin_compat.c │ │ │ └── plugins_compat.h │ ├── debugger │ │ ├── dbg_breakpoints.c │ │ ├── dbg_breakpoints.h │ │ ├── dbg_debugger.c │ │ ├── dbg_debugger.h │ │ ├── dbg_decoder.c │ │ ├── dbg_decoder.h │ │ ├── dbg_decoder_local.h │ │ ├── dbg_memory.c │ │ └── dbg_memory.h │ ├── device │ │ ├── cart │ │ │ ├── af_rtc.c │ │ │ ├── af_rtc.h │ │ │ ├── cart.c │ │ │ ├── cart.h │ │ │ ├── cart_rom.c │ │ │ ├── cart_rom.h │ │ │ ├── eeprom.c │ │ │ ├── eeprom.h │ │ │ ├── flashram.c │ │ │ ├── flashram.h │ │ │ ├── is_viewer.c │ │ │ ├── is_viewer.h │ │ │ ├── sram.c │ │ │ └── sram.h │ │ ├── controllers │ │ │ ├── game_controller.c │ │ │ ├── game_controller.h │ │ │ ├── paks │ │ │ │ ├── biopak.c │ │ │ │ ├── biopak.h │ │ │ │ ├── mempak.c │ │ │ │ ├── mempak.h │ │ │ │ ├── rumblepak.c │ │ │ │ ├── rumblepak.h │ │ │ │ ├── transferpak.c │ │ │ │ └── transferpak.h │ │ │ ├── vru_controller.c │ │ │ └── vru_controller.h │ │ ├── dd │ │ │ ├── dd_controller.c │ │ │ ├── dd_controller.h │ │ │ ├── disk.c │ │ │ └── disk.h │ │ ├── device.c │ │ ├── device.h │ │ ├── gb │ │ │ ├── gb_cart.c │ │ │ ├── gb_cart.h │ │ │ ├── m64282fp.c │ │ │ ├── m64282fp.h │ │ │ ├── mbc3_rtc.c │ │ │ └── mbc3_rtc.h │ │ ├── memory │ │ │ ├── memory.c │ │ │ └── memory.h │ │ ├── pif │ │ │ ├── bootrom_hle.c │ │ │ ├── bootrom_hle.h │ │ │ ├── cic.c │ │ │ ├── cic.h │ │ │ ├── n64_cic_nus_6105.c │ │ │ ├── n64_cic_nus_6105.h │ │ │ ├── pif.c │ │ │ └── pif.h │ │ ├── r4300 │ │ │ ├── cached_interp.c │ │ │ ├── cached_interp.h │ │ │ ├── cp0.c │ │ │ ├── cp0.h │ │ │ ├── cp1.c │ │ │ ├── cp1.h │ │ │ ├── cp2.c │ │ │ ├── cp2.h │ │ │ ├── fpu.h │ │ │ ├── idec.c │ │ │ ├── idec.h │ │ │ ├── instr_counters.c │ │ │ ├── instr_counters.h │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── mips_instructions.def │ │ │ ├── new_dynarec │ │ │ │ ├── arm │ │ │ │ │ ├── arm_cpu_features.c │ │ │ │ │ ├── arm_cpu_features.h │ │ │ │ │ ├── asm_defines_gas.h │ │ │ │ │ ├── asm_defines_nasm.h │ │ │ │ │ ├── assem_arm.c │ │ │ │ │ ├── assem_arm.h │ │ │ │ │ └── linkage_arm.S │ │ │ │ ├── arm64 │ │ │ │ │ ├── asm_defines_gas.h │ │ │ │ │ ├── asm_defines_nasm.h │ │ │ │ │ ├── assem_arm64.c │ │ │ │ │ ├── assem_arm64.h │ │ │ │ │ └── linkage_arm64.S │ │ │ │ ├── new_dynarec.c │ │ │ │ ├── new_dynarec.h │ │ │ │ ├── recomp_dbg.c │ │ │ │ ├── x64 │ │ │ │ │ ├── asm_defines_gas.h │ │ │ │ │ ├── asm_defines_nasm.h │ │ │ │ │ ├── assem_x64.c │ │ │ │ │ ├── assem_x64.h │ │ │ │ │ └── linkage_x64.asm │ │ │ │ └── x86 │ │ │ │ │ ├── asm_defines_gas.h │ │ │ │ │ ├── asm_defines_nasm.h │ │ │ │ │ ├── assem_x86.c │ │ │ │ │ ├── assem_x86.h │ │ │ │ │ └── linkage_x86.asm │ │ │ ├── opcodes.md │ │ │ ├── pure_interp.c │ │ │ ├── pure_interp.h │ │ │ ├── r4300_core.c │ │ │ ├── r4300_core.h │ │ │ ├── recomp.c │ │ │ ├── recomp.h │ │ │ ├── recomp_types.h │ │ │ ├── tlb.c │ │ │ ├── tlb.h │ │ │ ├── x86 │ │ │ │ ├── assemble.c │ │ │ │ ├── assemble.h │ │ │ │ ├── assemble_struct.h │ │ │ │ ├── dyna_start.asm │ │ │ │ ├── dynarec.c │ │ │ │ ├── interpret.h │ │ │ │ ├── regcache.c │ │ │ │ └── regcache.h │ │ │ └── x86_64 │ │ │ │ ├── assemble.c │ │ │ │ ├── assemble.h │ │ │ │ ├── assemble_struct.h │ │ │ │ ├── dyna_start.asm │ │ │ │ ├── dynarec.c │ │ │ │ ├── interpret.h │ │ │ │ ├── regcache.c │ │ │ │ └── regcache.h │ │ ├── rcp │ │ │ ├── ai │ │ │ │ ├── ai_controller.c │ │ │ │ └── ai_controller.h │ │ │ ├── mi │ │ │ │ ├── mi_controller.c │ │ │ │ └── mi_controller.h │ │ │ ├── pi │ │ │ │ ├── pi_controller.c │ │ │ │ └── pi_controller.h │ │ │ ├── rdp │ │ │ │ ├── fb.c │ │ │ │ ├── fb.h │ │ │ │ ├── rdp_core.c │ │ │ │ └── rdp_core.h │ │ │ ├── ri │ │ │ │ ├── ri_controller.c │ │ │ │ └── ri_controller.h │ │ │ ├── rsp │ │ │ │ ├── rsp_core.c │ │ │ │ └── rsp_core.h │ │ │ ├── si │ │ │ │ ├── si_controller.c │ │ │ │ └── si_controller.h │ │ │ └── vi │ │ │ │ ├── vi_controller.c │ │ │ │ └── vi_controller.h │ │ └── rdram │ │ │ ├── rdram.c │ │ │ └── rdram.h │ ├── main │ │ ├── cheat.c │ │ ├── cheat.h │ │ ├── eventloop.c │ │ ├── eventloop.h │ │ ├── lirc.c │ │ ├── lirc.h │ │ ├── list.h │ │ ├── main.c │ │ ├── main.h │ │ ├── netplay.c │ │ ├── netplay.h │ │ ├── profile.c │ │ ├── profile.h │ │ ├── rom.c │ │ ├── rom.h │ │ ├── savestates.c │ │ ├── savestates.h │ │ ├── screenshot.c │ │ ├── screenshot.h │ │ ├── sdl_key_converter.c │ │ ├── sdl_key_converter.h │ │ ├── util.c │ │ ├── util.h │ │ ├── version.h │ │ ├── workqueue.c │ │ └── workqueue.h │ ├── osal │ │ ├── dynamiclib.h │ │ ├── dynamiclib_unix.c │ │ ├── dynamiclib_win32.c │ │ ├── files.h │ │ ├── files_macos.c │ │ ├── files_unix.c │ │ ├── files_win32.c │ │ └── preproc.h │ ├── osd │ │ ├── oglft_c.cpp │ │ ├── oglft_c.h │ │ ├── osd.c │ │ └── osd.h │ └── plugin │ │ ├── dummy_audio.c │ │ ├── dummy_audio.h │ │ ├── dummy_input.c │ │ ├── dummy_input.h │ │ ├── dummy_rsp.c │ │ ├── dummy_rsp.h │ │ ├── dummy_video.c │ │ ├── dummy_video.h │ │ ├── plugin.c │ │ └── plugin.h ├── subprojects │ ├── md5 │ │ ├── md5.c │ │ └── md5.h │ ├── minizip │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── oglft │ │ ├── OGLFT.cpp │ │ └── OGLFT.h │ └── xxhash │ │ └── xxhash.h └── tools │ ├── build_bundle_bin.sh │ ├── build_bundle_src.sh │ ├── build_modules_src.sh │ ├── cheat_code_convert.py │ ├── gen_asm_defines.awk │ ├── gen_asm_script.cmd │ ├── gen_asm_script.sh │ ├── gen_sdl_key_converter.c │ ├── install_binary_bundle.sh │ ├── joymodel.c │ ├── joymodel.png │ ├── m64p_helper_scripts.tar.gz │ ├── osx_build_bundle.sh │ ├── osx_build_instructions.txt │ ├── profiling.txt │ ├── r4300prof.c │ ├── regtests │ ├── daily-tests.cfg │ └── regression-video.py │ ├── savestate_convert.c │ ├── savestate_convert.txt │ └── uninstall_binary_bundle.sh ├── mupen64plus-rsp-cxd4 ├── COPYING ├── README.md ├── config.h ├── module.c ├── module.h ├── my_types.h ├── rsp.c ├── rsp.h ├── rsp_dump.cpp ├── rsp_dump.h ├── sse2neon │ └── SSE2NEON.h ├── su.c ├── su.h └── vu │ ├── add.c │ ├── add.h │ ├── divide.c │ ├── divide.h │ ├── logical.c │ ├── logical.h │ ├── multiply.c │ ├── multiply.h │ ├── pack.h │ ├── select.c │ ├── select.h │ ├── vu.c │ └── vu.h ├── mupen64plus-rsp-hle ├── .gitattributes ├── .github │ └── workflows │ │ └── build.yml ├── .gitignore ├── .gitrepo ├── .travis.yml ├── INSTALL ├── LICENSES ├── RELEASE ├── appveyor.yml ├── projects │ ├── msvc │ │ └── mupen64plus-rsp-hle.vcxproj │ └── unix │ │ └── Makefile └── src │ ├── alist.c │ ├── alist.h │ ├── alist_audio.c │ ├── alist_naudio.c │ ├── alist_nead.c │ ├── arithmetics.h │ ├── audio.c │ ├── audio.h │ ├── cicx105.c │ ├── common.h │ ├── hle.c │ ├── hle.h │ ├── hle_external.h │ ├── hle_internal.h │ ├── hvqm.c │ ├── jpeg.c │ ├── memory.c │ ├── memory.h │ ├── mp3.c │ ├── musyx.c │ ├── osal_dynamiclib.h │ ├── osal_dynamiclib_unix.c │ ├── osal_dynamiclib_win32.c │ ├── plugin.c │ ├── re2.c │ ├── rsp_api_export.ver │ └── ucodes.h ├── mupen64plus-rsp-paraLLEl ├── .clang-format ├── .gitignore ├── .gitrepo ├── CMakeLists.txt ├── CREDITS.txt ├── LICENSE ├── LICENSE.LESSER ├── LICENSE.MIT ├── android_fuzz_runner.sh ├── android_test_runner.sh ├── arch │ └── simd │ │ └── rsp │ │ ├── SSE2NEON.h │ │ ├── clamp.h │ │ ├── rsp_common.h │ │ ├── rsp_core.cpp │ │ ├── rsp_impl.h │ │ ├── vabs.h │ │ ├── vadd.h │ │ ├── vaddc.h │ │ ├── vand.h │ │ ├── vch.h │ │ ├── vcl.h │ │ ├── vcmp.h │ │ ├── vcr.h │ │ ├── vdivh.h │ │ ├── vmac.h │ │ ├── vmrg.h │ │ ├── vmudh.h │ │ ├── vmul.h │ │ ├── vmulh.h │ │ ├── vmull.h │ │ ├── vmulm.h │ │ ├── vmuln.h │ │ ├── vor.h │ │ ├── vrcpsq.h │ │ ├── vrsq.h │ │ ├── vsub.h │ │ ├── vsubc.h │ │ └── vxor.h ├── build_android_aarch64.sh ├── build_native.sh ├── compare_test_results.sh ├── cpu_state.hpp ├── debug-toolchain │ ├── Makefile │ ├── Makefile.mips │ ├── add.s │ ├── addi.s │ ├── and.s │ ├── andi.s │ ├── beq-impossible-delay-slot-both-taken.s │ ├── beq-impossible-delay-slot-first-taken.s │ ├── beq-impossible-delay-slot-second-taken.s │ ├── bgez.s │ ├── bgezal.s │ ├── bgtz.s │ ├── blez.s │ ├── bltz.s │ ├── bltzal.s │ ├── bne.s │ ├── bug-shl-into-branch.s │ ├── cop0.s │ ├── cop2-basic.s │ ├── cop2-ls.s │ ├── cop2-vector.s │ ├── delay-slot-before-break.s │ ├── delay-slot-before-new-block-illegal.s │ ├── delay-slot-before-new-block-not-taken.s │ ├── delay-slot-before-new-block.s │ ├── j.s │ ├── jal-into-indirect-delay-slot.s │ ├── jal.s │ ├── jalr.s │ ├── jr.s │ ├── lb.s │ ├── lbu.s │ ├── lh-unaligned.s │ ├── lh.s │ ├── lhu-unaligned.s │ ├── lhu.s │ ├── lui.s │ ├── lw-unaligned-in-branch-delay.s │ ├── lw-unaligned.s │ ├── lw.s │ ├── main.c │ ├── nor.s │ ├── or.s │ ├── ori.s │ ├── rsp-mips.h │ ├── rsp-mips.ld │ ├── rsp-mips.s │ ├── sb.s │ ├── sh-unaligned.s │ ├── sh.s │ ├── sll.s │ ├── sllv.s │ ├── slt.s │ ├── slti.s │ ├── sltiu.s │ ├── sltu.s │ ├── sra.s │ ├── srav.s │ ├── srl.s │ ├── srlv.s │ ├── start.s │ ├── sub.s │ ├── sw-unaligned.s │ ├── sw.s │ ├── unconditional-delay-slot-before-break.s │ ├── xor.s │ └── xori.s ├── debug_jit.cpp ├── debug_jit.hpp ├── debug_rsp.cpp ├── debug_rsp.hpp ├── format_all.sh ├── jit_allocator.cpp ├── jit_allocator.hpp ├── lightning │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .gitrepo │ ├── AUTHORS │ ├── COPYING │ ├── COPYING.DOC │ ├── COPYING.LESSER │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README-hacking │ ├── THANKS │ ├── TODO │ ├── bootstrap │ ├── bootstrap.conf │ ├── check │ │ ├── .gitignore │ │ ├── 3to2.ok │ │ ├── 3to2.tst │ │ ├── Makefile.am │ │ ├── add.ok │ │ ├── add.tst │ │ ├── align.ok │ │ ├── align.tst │ │ ├── all.tst │ │ ├── allocai.ok │ │ ├── allocai.tst │ │ ├── allocar.ok │ │ ├── allocar.tst │ │ ├── alu.inc │ │ ├── alu_add.ok │ │ ├── alu_add.tst │ │ ├── alu_and.ok │ │ ├── alu_and.tst │ │ ├── alu_com.ok │ │ ├── alu_com.tst │ │ ├── alu_div.ok │ │ ├── alu_div.tst │ │ ├── alu_lsh.ok │ │ ├── alu_lsh.tst │ │ ├── alu_mul.ok │ │ ├── alu_mul.tst │ │ ├── alu_neg.ok │ │ ├── alu_neg.tst │ │ ├── alu_or.ok │ │ ├── alu_or.tst │ │ ├── alu_rem.ok │ │ ├── alu_rem.tst │ │ ├── alu_rsb.ok │ │ ├── alu_rsb.tst │ │ ├── alu_rsh.ok │ │ ├── alu_rsh.tst │ │ ├── alu_sub.ok │ │ ├── alu_sub.tst │ │ ├── alu_xor.ok │ │ ├── alu_xor.tst │ │ ├── alux_add.ok │ │ ├── alux_add.tst │ │ ├── alux_sub.ok │ │ ├── alux_sub.tst │ │ ├── bit.ok │ │ ├── bit.tst │ │ ├── bp.ok │ │ ├── bp.tst │ │ ├── branch.ok │ │ ├── branch.tst │ │ ├── bswap.ok │ │ ├── bswap.tst │ │ ├── call.ok │ │ ├── call.tst │ │ ├── carg.c │ │ ├── carry.ok │ │ ├── carry.tst │ │ ├── catomic.c │ │ ├── catomic.ok │ │ ├── ccall.c │ │ ├── check.arm.sh │ │ ├── check.arm.swf.sh │ │ ├── check.arm4.swf.sh │ │ ├── check.nodata.sh │ │ ├── check.sh │ │ ├── check.swf.sh │ │ ├── check.x87.nodata.sh │ │ ├── check.x87.sh │ │ ├── clobber.ok │ │ ├── clobber.tst │ │ ├── collatz.tst │ │ ├── ctramp.c │ │ ├── cva_list.c │ │ ├── cvt.ok │ │ ├── cvt.tst │ │ ├── divi.ok │ │ ├── divi.tst │ │ ├── factorial.tst │ │ ├── fib.ok │ │ ├── fib.tst │ │ ├── float.ok │ │ ├── float.tst │ │ ├── fop_abs.ok │ │ ├── fop_abs.tst │ │ ├── fop_sqrt.ok │ │ ├── fop_sqrt.tst │ │ ├── hton.ok │ │ ├── hton.tst │ │ ├── jmpr.ok │ │ ├── jmpr.tst │ │ ├── ldst.inc │ │ ├── ldsti.ok │ │ ├── ldsti.tst │ │ ├── ldstr-c.ok │ │ ├── ldstr-c.tst │ │ ├── ldstr.ok │ │ ├── ldstr.tst │ │ ├── ldstxi-c.ok │ │ ├── ldstxi-c.tst │ │ ├── ldstxi.ok │ │ ├── ldstxi.tst │ │ ├── ldstxr-c.ok │ │ ├── ldstxr-c.tst │ │ ├── ldstxr.ok │ │ ├── ldstxr.tst │ │ ├── lightning.c │ │ ├── live.ok │ │ ├── live.tst │ │ ├── movzr.ok │ │ ├── movzr.tst │ │ ├── nodata.c │ │ ├── protect.c │ │ ├── put.ok │ │ ├── put.tst │ │ ├── qalu.inc │ │ ├── qalu_div.ok │ │ ├── qalu_div.tst │ │ ├── qalu_mul.ok │ │ ├── qalu_mul.tst │ │ ├── range.ok │ │ ├── range.tst │ │ ├── ranger.ok │ │ ├── ranger.tst │ │ ├── ret.ok │ │ ├── ret.tst │ │ ├── riprel.c │ │ ├── riprel.ok │ │ ├── rpn.ok │ │ ├── rpn.tst │ │ ├── run-test │ │ ├── self.c │ │ ├── setcode.c │ │ ├── skip.ok │ │ ├── skip.tst │ │ ├── stack.ok │ │ ├── stack.tst │ │ ├── tramp.ok │ │ ├── tramp.tst │ │ ├── va_list.ok │ │ ├── va_list.tst │ │ ├── varargs.ok │ │ └── varargs.tst │ ├── configure.ac │ ├── doc │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── body.texi │ │ ├── fact.c │ │ ├── ifib.c │ │ ├── incr.c │ │ ├── lightning.texi │ │ ├── printf.c │ │ ├── rfib.c │ │ └── rpn.c │ ├── gnulib-lib │ │ └── .gitignore │ ├── include │ │ ├── Makefile.am │ │ ├── lightning.h │ │ ├── lightning.h.in │ │ └── lightning │ │ │ ├── Makefile.am │ │ │ ├── jit_aarch64.h │ │ │ ├── jit_alpha.h │ │ │ ├── jit_arm.h │ │ │ ├── jit_hppa.h │ │ │ ├── jit_ia64.h │ │ │ ├── jit_loongarch.h │ │ │ ├── jit_mips.h │ │ │ ├── jit_ppc.h │ │ │ ├── jit_private.h │ │ │ ├── jit_riscv.h │ │ │ ├── jit_s390.h │ │ │ ├── jit_sparc.h │ │ │ └── jit_x86.h │ ├── lib │ │ ├── Makefile.am │ │ ├── aarch64-logical-immediates.c │ │ ├── jit_aarch64-cpu.c │ │ ├── jit_aarch64-fpu.c │ │ ├── jit_aarch64-sz.c │ │ ├── jit_aarch64.c │ │ ├── jit_alpha-cpu.c │ │ ├── jit_alpha-fpu.c │ │ ├── jit_alpha-sz.c │ │ ├── jit_alpha.c │ │ ├── jit_arm-cpu.c │ │ ├── jit_arm-swf.c │ │ ├── jit_arm-sz.c │ │ ├── jit_arm-vfp.c │ │ ├── jit_arm.c │ │ ├── jit_disasm.c │ │ ├── jit_fallback.c │ │ ├── jit_hppa-cpu.c │ │ ├── jit_hppa-fpu.c │ │ ├── jit_hppa-sz.c │ │ ├── jit_hppa.c │ │ ├── jit_ia64-cpu.c │ │ ├── jit_ia64-fpu.c │ │ ├── jit_ia64-sz.c │ │ ├── jit_ia64.c │ │ ├── jit_loongarch-cpu.c │ │ ├── jit_loongarch-fpu.c │ │ ├── jit_loongarch-sz.c │ │ ├── jit_loongarch.c │ │ ├── jit_memory.c │ │ ├── jit_mips-cpu.c │ │ ├── jit_mips-fpu.c │ │ ├── jit_mips-sz.c │ │ ├── jit_mips.c │ │ ├── jit_names.c │ │ ├── jit_note.c │ │ ├── jit_ppc-cpu.c │ │ ├── jit_ppc-fpu.c │ │ ├── jit_ppc-sz.c │ │ ├── jit_ppc.c │ │ ├── jit_print.c │ │ ├── jit_rewind.c │ │ ├── jit_riscv-cpu.c │ │ ├── jit_riscv-fpu.c │ │ ├── jit_riscv-sz.c │ │ ├── jit_riscv.c │ │ ├── jit_s390-cpu.c │ │ ├── jit_s390-fpu.c │ │ ├── jit_s390-sz.c │ │ ├── jit_s390.c │ │ ├── jit_size.c │ │ ├── jit_sparc-cpu.c │ │ ├── jit_sparc-fpu.c │ │ ├── jit_sparc-sz.c │ │ ├── jit_sparc.c │ │ ├── jit_x86-cpu.c │ │ ├── jit_x86-sse.c │ │ ├── jit_x86-sz.c │ │ ├── jit_x86-x87.c │ │ ├── jit_x86.c │ │ └── lightning.c │ ├── lightning.pc.in │ ├── m4 │ │ ├── .gitignore │ │ ├── .gitkeep │ │ └── gnulib-cache.m4 │ └── size.c ├── llvm_jit.cpp ├── llvm_jit.hpp ├── main.cpp ├── parallel.cpp ├── rsp │ ├── cp0.cpp │ ├── cp2.cpp │ ├── ls.cpp │ ├── pipeline.h │ ├── reciprocal.cpp │ ├── reciprocal.h │ ├── registers.md │ └── vfunctions.cpp ├── rsp_1.1.h ├── rsp_disasm.cpp ├── rsp_disasm.hpp ├── rsp_jit.cpp ├── rsp_jit.hpp ├── rsp_op.hpp ├── rsp_vu_fuzzer.cpp ├── state.hpp └── win32 │ └── mman │ └── sys │ ├── .gitignore │ ├── .gitrepo │ ├── .vs │ └── mman │ │ └── v14 │ │ └── .suo │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── UpgradeLog.htm │ ├── configure │ ├── mman-win32.pro │ ├── mman.c │ ├── mman.h │ ├── mman.sln │ ├── mman.vcxproj │ ├── mman.vcxproj.filters │ ├── mman.vcxproj.user │ └── test.c ├── mupen64plus-video-angrylion ├── Gfx #1.3.h ├── common.h ├── interface.c ├── msg.h ├── n64video.c ├── n64video.h ├── n64video │ ├── rdp.c │ ├── rdp │ │ ├── blender.c │ │ ├── combiner.c │ │ ├── coverage.c │ │ ├── dither.c │ │ ├── fbuffer.c │ │ ├── rasterizer.c │ │ ├── rdp.c │ │ ├── rdram.c │ │ ├── tcoord.c │ │ ├── tex.c │ │ ├── tmem.c │ │ └── zbuffer.c │ ├── vi.c │ └── vi │ │ ├── divot.c │ │ ├── fetch.c │ │ ├── gamma.c │ │ ├── lerp.c │ │ ├── restore.c │ │ ├── vi.c │ │ └── video.c ├── parallel_al.cpp ├── parallel_al.h ├── plugin.c ├── plugin.h ├── rdp.h ├── vdac.h └── version.h.in ├── mupen64plus-video-paraLLEl ├── Gfx #1.3.h ├── parallel-rdp │ ├── .gitrepo │ ├── COMMIT │ ├── LICENSE │ ├── README.md │ ├── config.mk │ ├── parallel-rdp │ │ ├── command_ring.cpp │ │ ├── command_ring.hpp │ │ ├── luts.hpp │ │ ├── rdp_common.hpp │ │ ├── rdp_data_structures.hpp │ │ ├── rdp_device.cpp │ │ ├── rdp_device.hpp │ │ ├── rdp_dump_write.cpp │ │ ├── rdp_dump_write.hpp │ │ ├── rdp_renderer.cpp │ │ ├── rdp_renderer.hpp │ │ ├── shaders │ │ │ ├── binning.h │ │ │ ├── blender.h │ │ │ ├── clamping.h │ │ │ ├── clear_indirect_buffer.comp │ │ │ ├── clear_super_sampled_write_mask.comp │ │ │ ├── clear_write_mask.comp │ │ │ ├── combiner.h │ │ │ ├── coverage.h │ │ │ ├── data_structures.h │ │ │ ├── data_structures_buffers.h │ │ │ ├── debug.h │ │ │ ├── depth_blend.comp │ │ │ ├── depth_test.h │ │ │ ├── dither.h │ │ │ ├── extract_vram.comp │ │ │ ├── fb_formats.h │ │ │ ├── fullscreen.vert │ │ │ ├── interpolation.h │ │ │ ├── load_attribute_setup.h │ │ │ ├── load_depth_blend_state.h │ │ │ ├── load_derived_setup.h │ │ │ ├── load_scissor_state.h │ │ │ ├── load_span_offsets.h │ │ │ ├── load_span_setup.h │ │ │ ├── load_static_raster_state.h │ │ │ ├── load_tile_info.h │ │ │ ├── load_triangle_setup.h │ │ │ ├── masked_rdram_resolve.comp │ │ │ ├── memory_interfacing.h │ │ │ ├── noise.h │ │ │ ├── perspective.h │ │ │ ├── rasterizer.comp │ │ │ ├── shading.h │ │ │ ├── slangmosh.hpp │ │ │ ├── slangmosh.json │ │ │ ├── small_types.h │ │ │ ├── span_setup.comp │ │ │ ├── store_span_setup.h │ │ │ ├── texture.h │ │ │ ├── tile_binning_combined.comp │ │ │ ├── tmem_update.comp │ │ │ ├── ubershader.comp │ │ │ ├── update_upscaled_domain_post.comp │ │ │ ├── update_upscaled_domain_pre.comp │ │ │ ├── update_upscaled_domain_resolve.comp │ │ │ ├── vi_blend_fields.frag │ │ │ ├── vi_debug.h │ │ │ ├── vi_deinterlace.frag │ │ │ ├── vi_deinterlace.vert │ │ │ ├── vi_divot.frag │ │ │ ├── vi_fetch.frag │ │ │ ├── vi_scale.frag │ │ │ ├── vi_status.h │ │ │ └── z_encode.h │ │ ├── video_interface.cpp │ │ ├── video_interface.hpp │ │ └── worker_thread.hpp │ ├── util │ │ ├── aligned_alloc.cpp │ │ ├── aligned_alloc.hpp │ │ ├── arena_allocator.cpp │ │ ├── arena_allocator.hpp │ │ ├── bitops.hpp │ │ ├── enum_cast.hpp │ │ ├── hash.hpp │ │ ├── intrusive.hpp │ │ ├── intrusive_hash_map.hpp │ │ ├── intrusive_list.hpp │ │ ├── logging.cpp │ │ ├── logging.hpp │ │ ├── object_pool.hpp │ │ ├── read_write_lock.hpp │ │ ├── small_vector.hpp │ │ ├── stack_allocator.hpp │ │ ├── temporary_hashmap.hpp │ │ ├── thread_id.cpp │ │ ├── thread_id.hpp │ │ ├── thread_name.cpp │ │ ├── thread_name.hpp │ │ ├── timeline_trace_file.cpp │ │ ├── timeline_trace_file.hpp │ │ ├── timer.cpp │ │ └── timer.hpp │ ├── volk │ │ ├── volk.c │ │ └── volk.h │ ├── vulkan-headers │ │ └── include │ │ │ └── vulkan │ │ │ ├── vk_icd.h │ │ │ ├── vk_layer.h │ │ │ ├── vk_platform.h │ │ │ ├── vk_sdk_platform.h │ │ │ ├── vulkan.h │ │ │ ├── vulkan_android.h │ │ │ ├── vulkan_beta.h │ │ │ ├── vulkan_core.h │ │ │ ├── vulkan_directfb.h │ │ │ ├── vulkan_fuchsia.h │ │ │ ├── vulkan_ggp.h │ │ │ ├── vulkan_ios.h │ │ │ ├── vulkan_macos.h │ │ │ ├── vulkan_metal.h │ │ │ ├── vulkan_screen.h │ │ │ ├── vulkan_vi.h │ │ │ ├── vulkan_wayland.h │ │ │ ├── vulkan_win32.h │ │ │ ├── vulkan_xcb.h │ │ │ ├── vulkan_xlib.h │ │ │ └── vulkan_xlib_xrandr.h │ └── vulkan │ │ ├── buffer.cpp │ │ ├── buffer.hpp │ │ ├── buffer_pool.cpp │ │ ├── buffer_pool.hpp │ │ ├── command_buffer.cpp │ │ ├── command_buffer.hpp │ │ ├── command_pool.cpp │ │ ├── command_pool.hpp │ │ ├── context.cpp │ │ ├── context.hpp │ │ ├── cookie.cpp │ │ ├── cookie.hpp │ │ ├── descriptor_set.cpp │ │ ├── descriptor_set.hpp │ │ ├── device.cpp │ │ ├── device.hpp │ │ ├── device_fossilize.cpp │ │ ├── event_manager.cpp │ │ ├── event_manager.hpp │ │ ├── fence.cpp │ │ ├── fence.hpp │ │ ├── fence_manager.cpp │ │ ├── fence_manager.hpp │ │ ├── format.hpp │ │ ├── image.cpp │ │ ├── image.hpp │ │ ├── limits.hpp │ │ ├── memory_allocator.cpp │ │ ├── memory_allocator.hpp │ │ ├── pipeline_event.cpp │ │ ├── pipeline_event.hpp │ │ ├── query_pool.cpp │ │ ├── query_pool.hpp │ │ ├── quirks.hpp │ │ ├── render_pass.cpp │ │ ├── render_pass.hpp │ │ ├── renderdoc_capture.cpp │ │ ├── sampler.cpp │ │ ├── sampler.hpp │ │ ├── semaphore.cpp │ │ ├── semaphore.hpp │ │ ├── semaphore_manager.cpp │ │ ├── semaphore_manager.hpp │ │ ├── shader.cpp │ │ ├── shader.hpp │ │ ├── texture_format.cpp │ │ ├── texture_format.hpp │ │ ├── type_to_string.hpp │ │ ├── vulkan_common.hpp │ │ ├── vulkan_headers.hpp │ │ ├── vulkan_prerotate.hpp │ │ ├── wsi.cpp │ │ ├── wsi.hpp │ │ ├── wsi_timing.cpp │ │ └── wsi_timing.hpp ├── parallel.cpp ├── parallel.h ├── rdp.cpp ├── rdp.hpp └── z64.h ├── switch └── mman.h └── xxHash ├── xxh3.h └── xxhash.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /GLideN64/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/.github/workflows/build.yml -------------------------------------------------------------------------------- /GLideN64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/.gitignore -------------------------------------------------------------------------------- /GLideN64/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/.gitrepo -------------------------------------------------------------------------------- /GLideN64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/LICENSE -------------------------------------------------------------------------------- /GLideN64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/README.md -------------------------------------------------------------------------------- /GLideN64/ini/GLideN64.custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/ini/GLideN64.custom.ini -------------------------------------------------------------------------------- /GLideN64/ini/GLideN64.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/ini/GLideN64.ini -------------------------------------------------------------------------------- /GLideN64/licenses/GLSL-FXAA/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/licenses/GLSL-FXAA/LICENSE.md -------------------------------------------------------------------------------- /GLideN64/licenses/GlideHQ/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/licenses/GlideHQ/gpl-2.0.txt -------------------------------------------------------------------------------- /GLideN64/licenses/Glow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/licenses/Glow/LICENSE -------------------------------------------------------------------------------- /GLideN64/licenses/gles2n64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/licenses/gles2n64/LICENSE -------------------------------------------------------------------------------- /GLideN64/projects/cmake/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/cmake/Readme.txt -------------------------------------------------------------------------------- /GLideN64/projects/msvc/GLideN64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/GLideN64.sln -------------------------------------------------------------------------------- /GLideN64/projects/msvc/GLideN64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/GLideN64.vcxproj -------------------------------------------------------------------------------- /GLideN64/projects/msvc/GLideNUI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/GLideNUI.pro -------------------------------------------------------------------------------- /GLideN64/projects/msvc/GLideNUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/GLideNUI.vcxproj -------------------------------------------------------------------------------- /GLideN64/projects/msvc/lib/dbg/zlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/lib/dbg/zlibd.lib -------------------------------------------------------------------------------- /GLideN64/projects/msvc/lib/rel/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/lib/rel/zlib.lib -------------------------------------------------------------------------------- /GLideN64/projects/msvc/osal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/osal.vcxproj -------------------------------------------------------------------------------- /GLideN64/projects/msvc/ticpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/ticpp.vcxproj -------------------------------------------------------------------------------- /GLideN64/projects/msvc/ts2lang.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/projects/msvc/ts2lang.vcxproj -------------------------------------------------------------------------------- /GLideN64/src/3DMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/3DMath.cpp -------------------------------------------------------------------------------- /GLideN64/src/3DMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/3DMath.h -------------------------------------------------------------------------------- /GLideN64/src/BufferCopy/WriteToRDRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/BufferCopy/WriteToRDRAM.h -------------------------------------------------------------------------------- /GLideN64/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CMakeLists.txt -------------------------------------------------------------------------------- /GLideN64/src/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CRC.h -------------------------------------------------------------------------------- /GLideN64/src/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CRC32.cpp -------------------------------------------------------------------------------- /GLideN64/src/CRC32_ARMV8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CRC32_ARMV8.cpp -------------------------------------------------------------------------------- /GLideN64/src/CRC_OPT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CRC_OPT.cpp -------------------------------------------------------------------------------- /GLideN64/src/Combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Combiner.cpp -------------------------------------------------------------------------------- /GLideN64/src/Combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Combiner.h -------------------------------------------------------------------------------- /GLideN64/src/CombinerKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CombinerKey.cpp -------------------------------------------------------------------------------- /GLideN64/src/CombinerKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CombinerKey.h -------------------------------------------------------------------------------- /GLideN64/src/CommonPluginAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/CommonPluginAPI.cpp -------------------------------------------------------------------------------- /GLideN64/src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Config.cpp -------------------------------------------------------------------------------- /GLideN64/src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Config.h -------------------------------------------------------------------------------- /GLideN64/src/DebugDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DebugDump.cpp -------------------------------------------------------------------------------- /GLideN64/src/DebugDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DebugDump.h -------------------------------------------------------------------------------- /GLideN64/src/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Debugger.cpp -------------------------------------------------------------------------------- /GLideN64/src/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Debugger.h -------------------------------------------------------------------------------- /GLideN64/src/DepthBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DepthBuffer.cpp -------------------------------------------------------------------------------- /GLideN64/src/DepthBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DepthBuffer.h -------------------------------------------------------------------------------- /GLideN64/src/DisplayLoadProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DisplayLoadProgress.cpp -------------------------------------------------------------------------------- /GLideN64/src/DisplayLoadProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DisplayLoadProgress.h -------------------------------------------------------------------------------- /GLideN64/src/DisplayWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DisplayWindow.cpp -------------------------------------------------------------------------------- /GLideN64/src/DisplayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/DisplayWindow.h -------------------------------------------------------------------------------- /GLideN64/src/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/FrameBuffer.cpp -------------------------------------------------------------------------------- /GLideN64/src/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/FrameBuffer.h -------------------------------------------------------------------------------- /GLideN64/src/FrameBufferInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/FrameBufferInfo.cpp -------------------------------------------------------------------------------- /GLideN64/src/FrameBufferInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/FrameBufferInfo.h -------------------------------------------------------------------------------- /GLideN64/src/FrameBufferInfoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/FrameBufferInfoAPI.h -------------------------------------------------------------------------------- /GLideN64/src/GBI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GBI.cpp -------------------------------------------------------------------------------- /GLideN64/src/GBI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GBI.h -------------------------------------------------------------------------------- /GLideN64/src/GLideN64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideN64.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideN64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideN64.h -------------------------------------------------------------------------------- /GLideN64/src/GLideN64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideN64.rc -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/CMakeLists.txt -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/README.txt -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TextureFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TextureFilters.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TextureFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TextureFilters.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxCache.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxCache.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxDbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxDbg.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxDbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxDbg.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxFilter.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxFilter.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxFilterExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxFilterExport.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxFilterExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxFilterExport.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxHiResCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxHiResCache.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxHiResCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxHiResCache.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxHiResLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxHiResLoader.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxHiResLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxHiResLoader.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxHiResNoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxHiResNoCache.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxHiResNoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxHiResNoCache.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxImage.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxImage.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxInternal.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxQuantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxQuantize.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxQuantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxQuantize.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxReSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxReSample.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxReSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxReSample.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxTexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxTexCache.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxTexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxTexCache.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxUtil.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/TxUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/TxUtil.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/gpl-2.0.txt -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/inc/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/inc/png.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/inc/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/inc/pngconf.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/inc/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/inc/pnglibconf.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/inc/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/inc/pngstruct.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/inc/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/inc/zconf.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/inc/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/inc/zlib.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/lib/libdxtn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/lib/libdxtn.a -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/lib/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/lib/libpng.a -------------------------------------------------------------------------------- /GLideN64/src/GLideNHQ/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNHQ/lib/libz.a -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/About.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/About.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/ConfigDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/ConfigDlg.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/ConfigDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/ConfigDlg.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/FileClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/FileClass.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/FileClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/FileClass.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/FontInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/FontInfo.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/FontInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/FontInfo.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/GLideNUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/GLideNUI.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/GLideNUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/GLideNUI.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/GLideNUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/GLideNUI.rc -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/GlSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/GlSettings.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/GlSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/GlSettings.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/IniFileClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/IniFileClass.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/InputDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/InputDialog.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/Language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/Language.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/Language.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/Settings.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/Settings.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlapp.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlcrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlcrack.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlctrls.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlctrlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlctrlw.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlctrlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlctrlx.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlddx.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atldlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atldlgs.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atldwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atldwm.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlfind.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlframe.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlgdi.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlmisc.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlprint.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlres.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlresce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlresce.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlscrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlscrl.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlsplit.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atltheme.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atluser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atluser.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlwince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlwince.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/WTL/atlwinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/WTL/atlwinx.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/config-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/config-debug.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/config-osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/config-osd.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/config-osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/config-osd.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/config-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/config-tab.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/config-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/config-tab.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/config-video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/config-video.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/resource.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/ticpp/ticpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/ticpp/ticpp.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/util/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/util/md5.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/util/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/util/md5.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/util/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/util/path.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/util/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/util/path.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/util/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/util/util.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/util/util.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/wtl-tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/wtl-tooltip.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI-wtl/wtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI-wtl/wtl.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/AboutDialog.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/AboutDialog.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/AboutDialog.ui -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/ConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/ConfigDialog.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/ConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/ConfigDialog.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/GLideNUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/GLideNUI.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/GLideNUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/GLideNUI.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/GLideNUI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/GLideNUI.pro -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/HIDKeyToName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/HIDKeyToName.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/HIDKeyToName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/HIDKeyToName.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/QtKeyToHID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/QtKeyToHID.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/QtKeyToHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/QtKeyToHID.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/Resources/Down.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/Resources/Down.ico -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/Resources/Icon.ico -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/Resources/Info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/Resources/Info.ico -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/Resources/Left.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/Resources/Left.ico -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/Resources/Up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/Resources/Up.ico -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/Settings.cpp -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/Settings.h -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/configDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/configDialog.ui -------------------------------------------------------------------------------- /GLideN64/src/GLideNUI/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GLideNUI/icon.qrc -------------------------------------------------------------------------------- /GLideN64/src/Graphics/CombinerProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/CombinerProgram.h -------------------------------------------------------------------------------- /GLideN64/src/Graphics/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/Context.cpp -------------------------------------------------------------------------------- /GLideN64/src/Graphics/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/Context.h -------------------------------------------------------------------------------- /GLideN64/src/Graphics/ContextImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/ContextImpl.h -------------------------------------------------------------------------------- /GLideN64/src/Graphics/ObjectHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/ObjectHandle.cpp -------------------------------------------------------------------------------- /GLideN64/src/Graphics/ObjectHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/ObjectHandle.h -------------------------------------------------------------------------------- /GLideN64/src/Graphics/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/Parameter.h -------------------------------------------------------------------------------- /GLideN64/src/Graphics/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/Parameters.h -------------------------------------------------------------------------------- /GLideN64/src/Graphics/PixelBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/PixelBuffer.h -------------------------------------------------------------------------------- /GLideN64/src/Graphics/ShaderProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Graphics/ShaderProgram.h -------------------------------------------------------------------------------- /GLideN64/src/GraphicsDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GraphicsDrawer.cpp -------------------------------------------------------------------------------- /GLideN64/src/GraphicsDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/GraphicsDrawer.h -------------------------------------------------------------------------------- /GLideN64/src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Log.cpp -------------------------------------------------------------------------------- /GLideN64/src/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Log.h -------------------------------------------------------------------------------- /GLideN64/src/Log_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Log_android.cpp -------------------------------------------------------------------------------- /GLideN64/src/Log_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Log_ios.mm -------------------------------------------------------------------------------- /GLideN64/src/MemoryStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/MemoryStatus.h -------------------------------------------------------------------------------- /GLideN64/src/MupenPlusPluginAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/MupenPlusPluginAPI.cpp -------------------------------------------------------------------------------- /GLideN64/src/N64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/N64.cpp -------------------------------------------------------------------------------- /GLideN64/src/N64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/N64.h -------------------------------------------------------------------------------- /GLideN64/src/Neon/3DMathNeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Neon/3DMathNeon.cpp -------------------------------------------------------------------------------- /GLideN64/src/Neon/CRC_OPT_NEON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Neon/CRC_OPT_NEON.cpp -------------------------------------------------------------------------------- /GLideN64/src/Neon/RSP_LoadMatrixNeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Neon/RSP_LoadMatrixNeon.cpp -------------------------------------------------------------------------------- /GLideN64/src/Neon/gSPNeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Neon/gSPNeon.cpp -------------------------------------------------------------------------------- /GLideN64/src/PaletteTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/PaletteTexture.cpp -------------------------------------------------------------------------------- /GLideN64/src/PaletteTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/PaletteTexture.h -------------------------------------------------------------------------------- /GLideN64/src/Performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Performance.cpp -------------------------------------------------------------------------------- /GLideN64/src/Performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Performance.h -------------------------------------------------------------------------------- /GLideN64/src/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Platform.h -------------------------------------------------------------------------------- /GLideN64/src/PluginAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/PluginAPI.h -------------------------------------------------------------------------------- /GLideN64/src/PostProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/PostProcessor.cpp -------------------------------------------------------------------------------- /GLideN64/src/PostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/PostProcessor.h -------------------------------------------------------------------------------- /GLideN64/src/RDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/RDP.cpp -------------------------------------------------------------------------------- /GLideN64/src/RDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/RDP.h -------------------------------------------------------------------------------- /GLideN64/src/RSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/RSP.cpp -------------------------------------------------------------------------------- /GLideN64/src/RSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/RSP.h -------------------------------------------------------------------------------- /GLideN64/src/RSP_LoadMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/RSP_LoadMatrix.cpp -------------------------------------------------------------------------------- /GLideN64/src/RSP_LoadMatrixX86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/RSP_LoadMatrixX86.cpp -------------------------------------------------------------------------------- /GLideN64/src/SoftwareRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/SoftwareRender.cpp -------------------------------------------------------------------------------- /GLideN64/src/SoftwareRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/SoftwareRender.h -------------------------------------------------------------------------------- /GLideN64/src/TexrectDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TexrectDrawer.cpp -------------------------------------------------------------------------------- /GLideN64/src/TexrectDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TexrectDrawer.h -------------------------------------------------------------------------------- /GLideN64/src/TextDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TextDrawer.cpp -------------------------------------------------------------------------------- /GLideN64/src/TextDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TextDrawer.h -------------------------------------------------------------------------------- /GLideN64/src/TextDrawerStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TextDrawerStub.cpp -------------------------------------------------------------------------------- /GLideN64/src/TextureFilterHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TextureFilterHandler.cpp -------------------------------------------------------------------------------- /GLideN64/src/TextureFilterHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TextureFilterHandler.h -------------------------------------------------------------------------------- /GLideN64/src/Textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Textures.cpp -------------------------------------------------------------------------------- /GLideN64/src/Textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Textures.h -------------------------------------------------------------------------------- /GLideN64/src/TxFilterStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/TxFilterStub.cpp -------------------------------------------------------------------------------- /GLideN64/src/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/Types.h -------------------------------------------------------------------------------- /GLideN64/src/VI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/VI.cpp -------------------------------------------------------------------------------- /GLideN64/src/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/VI.h -------------------------------------------------------------------------------- /GLideN64/src/ZilmarGFX_1_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/ZilmarGFX_1_3.h -------------------------------------------------------------------------------- /GLideN64/src/ZilmarPluginAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/ZilmarPluginAPI.cpp -------------------------------------------------------------------------------- /GLideN64/src/ZlutTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/ZlutTexture.cpp -------------------------------------------------------------------------------- /GLideN64/src/ZlutTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/ZlutTexture.h -------------------------------------------------------------------------------- /GLideN64/src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/convert.cpp -------------------------------------------------------------------------------- /GLideN64/src/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/convert.h -------------------------------------------------------------------------------- /GLideN64/src/gDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/gDP.cpp -------------------------------------------------------------------------------- /GLideN64/src/gDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/gDP.h -------------------------------------------------------------------------------- /GLideN64/src/gSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/gSP.cpp -------------------------------------------------------------------------------- /GLideN64/src/gSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/gSP.h -------------------------------------------------------------------------------- /GLideN64/src/getRevision.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/getRevision.bat -------------------------------------------------------------------------------- /GLideN64/src/getRevision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/getRevision.sh -------------------------------------------------------------------------------- /GLideN64/src/inc/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/GL/glcorearb.h -------------------------------------------------------------------------------- /GLideN64/src/inc/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/GL/glext.h -------------------------------------------------------------------------------- /GLideN64/src/inc/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/GL/glxext.h -------------------------------------------------------------------------------- /GLideN64/src/inc/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/GL/wglext.h -------------------------------------------------------------------------------- /GLideN64/src/inc/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/callbacks.h -------------------------------------------------------------------------------- /GLideN64/src/inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/config.h -------------------------------------------------------------------------------- /GLideN64/src/inc/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/debugger.h -------------------------------------------------------------------------------- /GLideN64/src/inc/freetype/include/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/freetype/include/ftmm.h -------------------------------------------------------------------------------- /GLideN64/src/inc/m64p_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/m64p_common.h -------------------------------------------------------------------------------- /GLideN64/src/inc/m64p_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/m64p_config.h -------------------------------------------------------------------------------- /GLideN64/src/inc/m64p_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/m64p_debugger.h -------------------------------------------------------------------------------- /GLideN64/src/inc/m64p_frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/m64p_frontend.h -------------------------------------------------------------------------------- /GLideN64/src/inc/m64p_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/m64p_plugin.h -------------------------------------------------------------------------------- /GLideN64/src/inc/m64p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/m64p_types.h -------------------------------------------------------------------------------- /GLideN64/src/inc/m64p_vidext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/inc/m64p_vidext.h -------------------------------------------------------------------------------- /GLideN64/src/iob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/iob.cpp -------------------------------------------------------------------------------- /GLideN64/src/osal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/CMakeLists.txt -------------------------------------------------------------------------------- /GLideN64/src/osal/keycode/keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/keycode/keycode.h -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_export.h -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_files.h -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_files_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_files_ios.mm -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_files_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_files_unix.c -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_files_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_files_win32.c -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_keys.h -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_keys_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_keys_linux.c -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_keys_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_keys_unix.c -------------------------------------------------------------------------------- /GLideN64/src/osal/osal_keys_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/osal/osal_keys_win.c -------------------------------------------------------------------------------- /GLideN64/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/resource.h -------------------------------------------------------------------------------- /GLideN64/src/sdl2_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/sdl2_compat.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3D.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3D.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DAM.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DAM.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DBETA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DBETA.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DBETA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DBETA.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DDKR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DDKR.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DDKR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DDKR.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX095.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX095.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX095.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX095.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX2.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX2.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX2ACCLAIM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX2ACCLAIM.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX2ACCLAIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX2ACCLAIM.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX2CBFD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX2CBFD.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX2CBFD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX2CBFD.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX3.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DEX3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DEX3.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DFLX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DFLX2.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DFLX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DFLX2.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DGOLDEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DGOLDEN.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DGOLDEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DGOLDEN.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DPD.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DPD.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DSETA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DSETA.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DSETA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DSETA.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DTEXA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DTEXA.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DTEXA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DTEXA.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DZEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DZEX2.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F3DZEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F3DZEX2.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F5Indi_Naboo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F5Indi_Naboo.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F5Indi_Naboo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F5Indi_Naboo.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F5Rogue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F5Rogue.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/F5Rogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/F5Rogue.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/L3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/L3D.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/L3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/L3D.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/L3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/L3DEX.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/L3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/L3DEX.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/L3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/L3DEX2.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/L3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/L3DEX2.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/S2DEX.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/S2DEX.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/S2DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/S2DEX2.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/S2DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/S2DEX2.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/T3DUX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/T3DUX.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/T3DUX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/T3DUX.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/Turbo3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/Turbo3D.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/Turbo3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/Turbo3D.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/ZSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/ZSort.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/ZSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/ZSort.h -------------------------------------------------------------------------------- /GLideN64/src/uCodes/ZSortBOSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/ZSortBOSS.cpp -------------------------------------------------------------------------------- /GLideN64/src/uCodes/ZSortBOSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/uCodes/ZSortBOSS.h -------------------------------------------------------------------------------- /GLideN64/src/windows/GLideN64_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/windows/GLideN64_windows.h -------------------------------------------------------------------------------- /GLideN64/src/windows/ScreenShot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/windows/ScreenShot.cpp -------------------------------------------------------------------------------- /GLideN64/src/windows/ScreenShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/windows/ScreenShot.h -------------------------------------------------------------------------------- /GLideN64/src/winlnxdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/winlnxdefs.h -------------------------------------------------------------------------------- /GLideN64/src/wst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/wst.h -------------------------------------------------------------------------------- /GLideN64/src/xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/src/xxHash/xxhash.h -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_de.ts -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_es.ts -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_fr.ts -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_it.ts -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_ja.ts -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_pl.ts -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_pt_BR.ts -------------------------------------------------------------------------------- /GLideN64/translations/gliden64_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/GLideN64/translations/gliden64_zh.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/Makefile.common -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/README.md -------------------------------------------------------------------------------- /custom/GLideN64/GLideN64.custom.ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/GLideN64/GLideN64.custom.ini.h -------------------------------------------------------------------------------- /custom/GLideN64/GLideN64_libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/GLideN64/GLideN64_libretro.h -------------------------------------------------------------------------------- /custom/GLideN64/inc/ARB_buffer_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/GLideN64/inc/ARB_buffer_storage.h -------------------------------------------------------------------------------- /custom/android/include/GLES3/gl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/GLES3/gl31.h -------------------------------------------------------------------------------- /custom/android/include/cutils/aref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/aref.h -------------------------------------------------------------------------------- /custom/android/include/cutils/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/ashmem.h -------------------------------------------------------------------------------- /custom/android/include/cutils/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/atomic.h -------------------------------------------------------------------------------- /custom/android/include/cutils/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/bitops.h -------------------------------------------------------------------------------- /custom/android/include/cutils/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/compiler.h -------------------------------------------------------------------------------- /custom/android/include/cutils/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/debugger.h -------------------------------------------------------------------------------- /custom/android/include/cutils/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/fs.h -------------------------------------------------------------------------------- /custom/android/include/cutils/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/hashmap.h -------------------------------------------------------------------------------- /custom/android/include/cutils/jstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/jstring.h -------------------------------------------------------------------------------- /custom/android/include/cutils/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/klog.h -------------------------------------------------------------------------------- /custom/android/include/cutils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/list.h -------------------------------------------------------------------------------- /custom/android/include/cutils/log.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /custom/android/include/cutils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/memory.h -------------------------------------------------------------------------------- /custom/android/include/cutils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/misc.h -------------------------------------------------------------------------------- /custom/android/include/cutils/qtaguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/qtaguid.h -------------------------------------------------------------------------------- /custom/android/include/cutils/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/sockets.h -------------------------------------------------------------------------------- /custom/android/include/cutils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/threads.h -------------------------------------------------------------------------------- /custom/android/include/cutils/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/trace.h -------------------------------------------------------------------------------- /custom/android/include/cutils/uevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/cutils/uevent.h -------------------------------------------------------------------------------- /custom/android/include/hardware/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/audio.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_av.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_hf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_hf.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_hh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_hh.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_hl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_hl.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_mce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_mce.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_pan.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_rc.h -------------------------------------------------------------------------------- /custom/android/include/hardware/bt_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/bt_sdp.h -------------------------------------------------------------------------------- /custom/android/include/hardware/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/camera.h -------------------------------------------------------------------------------- /custom/android/include/hardware/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/fb.h -------------------------------------------------------------------------------- /custom/android/include/hardware/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/gps.h -------------------------------------------------------------------------------- /custom/android/include/hardware/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/input.h -------------------------------------------------------------------------------- /custom/android/include/hardware/lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/lights.h -------------------------------------------------------------------------------- /custom/android/include/hardware/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/nfc.h -------------------------------------------------------------------------------- /custom/android/include/hardware/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/nvram.h -------------------------------------------------------------------------------- /custom/android/include/hardware/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/power.h -------------------------------------------------------------------------------- /custom/android/include/hardware/qemud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/qemud.h -------------------------------------------------------------------------------- /custom/android/include/hardware/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/hardware/radio.h -------------------------------------------------------------------------------- /custom/android/include/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/log/log.h -------------------------------------------------------------------------------- /custom/android/include/log/log_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/log/log_read.h -------------------------------------------------------------------------------- /custom/android/include/log/logd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/log/logd.h -------------------------------------------------------------------------------- /custom/android/include/log/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/log/logger.h -------------------------------------------------------------------------------- /custom/android/include/log/logprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/log/logprint.h -------------------------------------------------------------------------------- /custom/android/include/log/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/log/uio.h -------------------------------------------------------------------------------- /custom/android/include/system/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/system/camera.h -------------------------------------------------------------------------------- /custom/android/include/system/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/system/graphics.h -------------------------------------------------------------------------------- /custom/android/include/system/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/system/radio.h -------------------------------------------------------------------------------- /custom/android/include/system/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/system/window.h -------------------------------------------------------------------------------- /custom/android/include/ui/DisplayInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/DisplayInfo.h -------------------------------------------------------------------------------- /custom/android/include/ui/Fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/Fence.h -------------------------------------------------------------------------------- /custom/android/include/ui/FrameStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/FrameStats.h -------------------------------------------------------------------------------- /custom/android/include/ui/PixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/PixelFormat.h -------------------------------------------------------------------------------- /custom/android/include/ui/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/Point.h -------------------------------------------------------------------------------- /custom/android/include/ui/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/Rect.h -------------------------------------------------------------------------------- /custom/android/include/ui/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/Region.h -------------------------------------------------------------------------------- /custom/android/include/ui/TMatHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/TMatHelpers.h -------------------------------------------------------------------------------- /custom/android/include/ui/TVecHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/TVecHelpers.h -------------------------------------------------------------------------------- /custom/android/include/ui/UiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/UiConfig.h -------------------------------------------------------------------------------- /custom/android/include/ui/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/mat4.h -------------------------------------------------------------------------------- /custom/android/include/ui/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/vec2.h -------------------------------------------------------------------------------- /custom/android/include/ui/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/vec3.h -------------------------------------------------------------------------------- /custom/android/include/ui/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/ui/vec4.h -------------------------------------------------------------------------------- /custom/android/include/utils/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Atomic.h -------------------------------------------------------------------------------- /custom/android/include/utils/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/BitSet.h -------------------------------------------------------------------------------- /custom/android/include/utils/BlobCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/BlobCache.h -------------------------------------------------------------------------------- /custom/android/include/utils/ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/ByteOrder.h -------------------------------------------------------------------------------- /custom/android/include/utils/CallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/CallStack.h -------------------------------------------------------------------------------- /custom/android/include/utils/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Compat.h -------------------------------------------------------------------------------- /custom/android/include/utils/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Condition.h -------------------------------------------------------------------------------- /custom/android/include/utils/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Debug.h -------------------------------------------------------------------------------- /custom/android/include/utils/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Endian.h -------------------------------------------------------------------------------- /custom/android/include/utils/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Errors.h -------------------------------------------------------------------------------- /custom/android/include/utils/FileMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/FileMap.h -------------------------------------------------------------------------------- /custom/android/include/utils/Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Functor.h -------------------------------------------------------------------------------- /custom/android/include/utils/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/List.h -------------------------------------------------------------------------------- /custom/android/include/utils/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Log.h -------------------------------------------------------------------------------- /custom/android/include/utils/Looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Looper.h -------------------------------------------------------------------------------- /custom/android/include/utils/LruCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/LruCache.h -------------------------------------------------------------------------------- /custom/android/include/utils/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Mutex.h -------------------------------------------------------------------------------- /custom/android/include/utils/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Printer.h -------------------------------------------------------------------------------- /custom/android/include/utils/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/RWLock.h -------------------------------------------------------------------------------- /custom/android/include/utils/RefBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/RefBase.h -------------------------------------------------------------------------------- /custom/android/include/utils/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Singleton.h -------------------------------------------------------------------------------- /custom/android/include/utils/StopWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/StopWatch.h -------------------------------------------------------------------------------- /custom/android/include/utils/String16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/String16.h -------------------------------------------------------------------------------- /custom/android/include/utils/String8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/String8.h -------------------------------------------------------------------------------- /custom/android/include/utils/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Thread.h -------------------------------------------------------------------------------- /custom/android/include/utils/Timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Timers.h -------------------------------------------------------------------------------- /custom/android/include/utils/Tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Tokenizer.h -------------------------------------------------------------------------------- /custom/android/include/utils/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Trace.h -------------------------------------------------------------------------------- /custom/android/include/utils/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Unicode.h -------------------------------------------------------------------------------- /custom/android/include/utils/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/Vector.h -------------------------------------------------------------------------------- /custom/android/include/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/misc.h -------------------------------------------------------------------------------- /custom/android/include/utils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/android/include/utils/threads.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/config.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/png.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/png.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngconf.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngdebug.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngerror.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngget.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pnginfo.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pnglibconf.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngmem.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngpread.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngpriv.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngread.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngrio.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngrtran.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngrutil.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngset.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngstruct.h -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngtrans.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngwio.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngwrite.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngwtran.c -------------------------------------------------------------------------------- /custom/dependencies/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libpng/pngwutil.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/Makefile -------------------------------------------------------------------------------- /custom/dependencies/libzlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/adler32.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/compress.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/crc32.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/crc32.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/deflate.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/deflate.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/gzclose.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/gzguts.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/gzlib.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/gzread.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/gzwrite.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/infback.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/inffast.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/inffast.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/inffixed.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/inflate.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/inflate.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/inftrees.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/inftrees.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/trees.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/trees.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/uncompr.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/zconf.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/zlib.h -------------------------------------------------------------------------------- /custom/dependencies/libzlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/zutil.c -------------------------------------------------------------------------------- /custom/dependencies/libzlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/dependencies/libzlib/zutil.h -------------------------------------------------------------------------------- /custom/ios/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/ios/compat.c -------------------------------------------------------------------------------- /custom/mman-win32/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/mman-win32/mman.c -------------------------------------------------------------------------------- /custom/mman-win32/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/mman-win32/sys/mman.h -------------------------------------------------------------------------------- /custom/mupen64plus-core/api/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/mupen64plus-core/api/config.c -------------------------------------------------------------------------------- /custom/mupen64plus-core/plugin/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/mupen64plus-core/plugin/plugin.h -------------------------------------------------------------------------------- /custom/mupen64plus-next_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/mupen64plus-next_common.h -------------------------------------------------------------------------------- /custom/tools/gas-preprocessor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/custom/tools/gas-preprocessor.pl -------------------------------------------------------------------------------- /generate-ini-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/generate-ini-headers.sh -------------------------------------------------------------------------------- /libretro-common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/.gitignore -------------------------------------------------------------------------------- /libretro-common/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/.gitrepo -------------------------------------------------------------------------------- /libretro-common/Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/Makefile.test -------------------------------------------------------------------------------- /libretro-common/audio/audio_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/audio/audio_mix.c -------------------------------------------------------------------------------- /libretro-common/audio/audio_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/audio/audio_mixer.c -------------------------------------------------------------------------------- /libretro-common/audio/dsp_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/audio/dsp_filter.c -------------------------------------------------------------------------------- /libretro-common/audio/dsp_filters/EQ.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/audio/dsp_filters/EQ.dsp -------------------------------------------------------------------------------- /libretro-common/audio/dsp_filters/configure: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | PACKAGE_NAME=retroarch-filters-audio -------------------------------------------------------------------------------- /libretro-common/audio/dsp_filters/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/audio/dsp_filters/echo.c -------------------------------------------------------------------------------- /libretro-common/audio/dsp_filters/eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/audio/dsp_filters/eq.c -------------------------------------------------------------------------------- /libretro-common/cdrom/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/cdrom/cdrom.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/compat/compat_strl.c -------------------------------------------------------------------------------- /libretro-common/compat/fopen_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/compat/fopen_utf8.c -------------------------------------------------------------------------------- /libretro-common/crt/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/crt/include/string.h -------------------------------------------------------------------------------- /libretro-common/crt/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/crt/string.c -------------------------------------------------------------------------------- /libretro-common/dynamic/dylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/dynamic/dylib.c -------------------------------------------------------------------------------- /libretro-common/file/archive_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/file/archive_file.c -------------------------------------------------------------------------------- /libretro-common/file/config_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/file/config_file.c -------------------------------------------------------------------------------- /libretro-common/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/file/file_path.c -------------------------------------------------------------------------------- /libretro-common/file/file_path_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/file/file_path_io.c -------------------------------------------------------------------------------- /libretro-common/file/nbio/nbio_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/file/nbio/nbio_intf.c -------------------------------------------------------------------------------- /libretro-common/file/retro_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/file/retro_dirent.c -------------------------------------------------------------------------------- /libretro-common/formats/bmp/rbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/bmp/rbmp.c -------------------------------------------------------------------------------- /libretro-common/formats/cdfs/cdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/cdfs/cdfs.c -------------------------------------------------------------------------------- /libretro-common/formats/jpeg/rjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/jpeg/rjpeg.c -------------------------------------------------------------------------------- /libretro-common/formats/json/rjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/json/rjson.c -------------------------------------------------------------------------------- /libretro-common/formats/png/rpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/png/rpng.c -------------------------------------------------------------------------------- /libretro-common/formats/tga/rtga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/tga/rtga.c -------------------------------------------------------------------------------- /libretro-common/formats/wav/rwav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/wav/rwav.c -------------------------------------------------------------------------------- /libretro-common/formats/xml/rxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/formats/xml/rxml.c -------------------------------------------------------------------------------- /libretro-common/gfx/gl_capabilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/gfx/gl_capabilities.c -------------------------------------------------------------------------------- /libretro-common/gfx/scaler/pixconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/gfx/scaler/pixconv.c -------------------------------------------------------------------------------- /libretro-common/gfx/scaler/scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/gfx/scaler/scaler.c -------------------------------------------------------------------------------- /libretro-common/glsm/glsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsm/glsm.c -------------------------------------------------------------------------------- /libretro-common/glsym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/README.md -------------------------------------------------------------------------------- /libretro-common/glsym/glgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/glgen.py -------------------------------------------------------------------------------- /libretro-common/glsym/glsym_es2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/glsym_es2.c -------------------------------------------------------------------------------- /libretro-common/glsym/glsym_es3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/glsym_es3.c -------------------------------------------------------------------------------- /libretro-common/glsym/glsym_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/glsym_gl.c -------------------------------------------------------------------------------- /libretro-common/glsym/rglgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/rglgen.c -------------------------------------------------------------------------------- /libretro-common/glsym/rglgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/rglgen.py -------------------------------------------------------------------------------- /libretro-common/glsym/xglgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/glsym/xglgen.py -------------------------------------------------------------------------------- /libretro-common/hash/lrc_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/hash/lrc_hash.c -------------------------------------------------------------------------------- /libretro-common/include/array/rbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/array/rbuf.h -------------------------------------------------------------------------------- /libretro-common/include/array/rhmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/array/rhmap.h -------------------------------------------------------------------------------- /libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /libretro-common/include/cdrom/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/cdrom/cdrom.h -------------------------------------------------------------------------------- /libretro-common/include/clamping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/clamping.h -------------------------------------------------------------------------------- /libretro-common/include/compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/compat/msvc.h -------------------------------------------------------------------------------- /libretro-common/include/compat/strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/compat/strl.h -------------------------------------------------------------------------------- /libretro-common/include/compat/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/compat/zlib.h -------------------------------------------------------------------------------- /libretro-common/include/fastcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/fastcpy.h -------------------------------------------------------------------------------- /libretro-common/include/file/nbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/file/nbio.h -------------------------------------------------------------------------------- /libretro-common/include/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/filters.h -------------------------------------------------------------------------------- /libretro-common/include/glsm/glsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/glsm/glsm.h -------------------------------------------------------------------------------- /libretro-common/include/glsym/glsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/glsym/glsym.h -------------------------------------------------------------------------------- /libretro-common/include/libchdr/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/libchdr/chd.h -------------------------------------------------------------------------------- /libretro-common/include/libco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/libco.h -------------------------------------------------------------------------------- /libretro-common/include/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/libretro.h -------------------------------------------------------------------------------- /libretro-common/include/lrc_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/lrc_hash.h -------------------------------------------------------------------------------- /libretro-common/include/math/fxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/math/fxp.h -------------------------------------------------------------------------------- /libretro-common/include/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/memalign.h -------------------------------------------------------------------------------- /libretro-common/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/memmap.h -------------------------------------------------------------------------------- /libretro-common/include/retro_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/retro_math.h -------------------------------------------------------------------------------- /libretro-common/include/retro_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/retro_stat.h -------------------------------------------------------------------------------- /libretro-common/include/time/rtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/time/rtime.h -------------------------------------------------------------------------------- /libretro-common/include/utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/utils/md5.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/include/vfs/vfs.h -------------------------------------------------------------------------------- /libretro-common/libco/aarch64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/aarch64.c -------------------------------------------------------------------------------- /libretro-common/libco/amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/amd64.c -------------------------------------------------------------------------------- /libretro-common/libco/armeabi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/armeabi.c -------------------------------------------------------------------------------- /libretro-common/libco/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/fiber.c -------------------------------------------------------------------------------- /libretro-common/libco/genode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/genode.cpp -------------------------------------------------------------------------------- /libretro-common/libco/libco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/libco.c -------------------------------------------------------------------------------- /libretro-common/libco/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/ppc.c -------------------------------------------------------------------------------- /libretro-common/libco/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/ps2.c -------------------------------------------------------------------------------- /libretro-common/libco/ps3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/ps3.S -------------------------------------------------------------------------------- /libretro-common/libco/psp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/psp1.c -------------------------------------------------------------------------------- /libretro-common/libco/psp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/psp2.c -------------------------------------------------------------------------------- /libretro-common/libco/scefiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/scefiber.c -------------------------------------------------------------------------------- /libretro-common/libco/sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/sjlj.c -------------------------------------------------------------------------------- /libretro-common/libco/ucontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/ucontext.c -------------------------------------------------------------------------------- /libretro-common/libco/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/libco/x86.c -------------------------------------------------------------------------------- /libretro-common/lists/dir_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/lists/dir_list.c -------------------------------------------------------------------------------- /libretro-common/lists/file_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/lists/file_list.c -------------------------------------------------------------------------------- /libretro-common/lists/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/lists/linked_list.c -------------------------------------------------------------------------------- /libretro-common/lists/nested_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/lists/nested_list.c -------------------------------------------------------------------------------- /libretro-common/lists/string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/lists/string_list.c -------------------------------------------------------------------------------- /libretro-common/lists/vector_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/lists/vector_list.c -------------------------------------------------------------------------------- /libretro-common/memmap/memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/memmap/memalign.c -------------------------------------------------------------------------------- /libretro-common/memmap/memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/memmap/memmap.c -------------------------------------------------------------------------------- /libretro-common/net/net_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/net/net_compat.c -------------------------------------------------------------------------------- /libretro-common/net/net_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/net/net_http.c -------------------------------------------------------------------------------- /libretro-common/net/net_http_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/net/net_http_parse.c -------------------------------------------------------------------------------- /libretro-common/net/net_ifinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/net/net_ifinfo.c -------------------------------------------------------------------------------- /libretro-common/net/net_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/net/net_socket.c -------------------------------------------------------------------------------- /libretro-common/queues/fifo_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/queues/fifo_queue.c -------------------------------------------------------------------------------- /libretro-common/queues/task_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/queues/task_queue.c -------------------------------------------------------------------------------- /libretro-common/rthreads/gx_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/rthreads/gx_pthread.h -------------------------------------------------------------------------------- /libretro-common/rthreads/rthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/rthreads/rthreads.c -------------------------------------------------------------------------------- /libretro-common/rthreads/tpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/rthreads/tpool.c -------------------------------------------------------------------------------- /libretro-common/samples/core_options/example_translation/translation scripts/intl/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /libretro-common/samples/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/samples/net/Makefile -------------------------------------------------------------------------------- /libretro-common/samples/net/http_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/samples/net/http_test -------------------------------------------------------------------------------- /libretro-common/samples/utils/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/samples/utils/crc32.c -------------------------------------------------------------------------------- /libretro-common/streams/chd_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/streams/chd_stream.c -------------------------------------------------------------------------------- /libretro-common/streams/file_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/streams/file_stream.c -------------------------------------------------------------------------------- /libretro-common/streams/rzip_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/streams/rzip_stream.c -------------------------------------------------------------------------------- /libretro-common/string/stdstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/string/stdstring.c -------------------------------------------------------------------------------- /libretro-common/test/hash/test_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/test/hash/test_hash.c -------------------------------------------------------------------------------- /libretro-common/time/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/time/rtime.c -------------------------------------------------------------------------------- /libretro-common/utils/djb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/utils/djb2.c -------------------------------------------------------------------------------- /libretro-common/utils/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/utils/md5.c -------------------------------------------------------------------------------- /libretro-common/utils/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro-common/utils/sha1.c -------------------------------------------------------------------------------- /libretro/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/jni/Android.mk -------------------------------------------------------------------------------- /libretro/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/jni/Application.mk -------------------------------------------------------------------------------- /libretro/libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/libretro.c -------------------------------------------------------------------------------- /libretro/libretro_core_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/libretro_core_options.h -------------------------------------------------------------------------------- /libretro/libretro_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/libretro_memory.h -------------------------------------------------------------------------------- /libretro/libretro_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/libretro_perf.h -------------------------------------------------------------------------------- /libretro/libretro_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/libretro_private.h -------------------------------------------------------------------------------- /libretro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/libretro/link.T -------------------------------------------------------------------------------- /mupen64plus-core/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/.gitattributes -------------------------------------------------------------------------------- /mupen64plus-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/.gitignore -------------------------------------------------------------------------------- /mupen64plus-core/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/.gitrepo -------------------------------------------------------------------------------- /mupen64plus-core/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/.travis.yml -------------------------------------------------------------------------------- /mupen64plus-core/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/CREDITS -------------------------------------------------------------------------------- /mupen64plus-core/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/INSTALL -------------------------------------------------------------------------------- /mupen64plus-core/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/LICENSES -------------------------------------------------------------------------------- /mupen64plus-core/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/README -------------------------------------------------------------------------------- /mupen64plus-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/README.md -------------------------------------------------------------------------------- /mupen64plus-core/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/RELEASE -------------------------------------------------------------------------------- /mupen64plus-core/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/appveyor.yml -------------------------------------------------------------------------------- /mupen64plus-core/data/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/data/font.ttf -------------------------------------------------------------------------------- /mupen64plus-core/data/mupen64plus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/data/mupen64plus.ini -------------------------------------------------------------------------------- /mupen64plus-core/data/mupencheat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/data/mupencheat.txt -------------------------------------------------------------------------------- /mupen64plus-core/doc/font-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/doc/font-license -------------------------------------------------------------------------------- /mupen64plus-core/doc/gpl-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/doc/gpl-license -------------------------------------------------------------------------------- /mupen64plus-core/doc/lgpl-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/doc/lgpl-license -------------------------------------------------------------------------------- /mupen64plus-core/src/api/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/callbacks.c -------------------------------------------------------------------------------- /mupen64plus-core/src/api/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/callbacks.h -------------------------------------------------------------------------------- /mupen64plus-core/src/api/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/common.c -------------------------------------------------------------------------------- /mupen64plus-core/src/api/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/config.c -------------------------------------------------------------------------------- /mupen64plus-core/src/api/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/config.h -------------------------------------------------------------------------------- /mupen64plus-core/src/api/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/debugger.c -------------------------------------------------------------------------------- /mupen64plus-core/src/api/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/debugger.h -------------------------------------------------------------------------------- /mupen64plus-core/src/api/frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/frontend.c -------------------------------------------------------------------------------- /mupen64plus-core/src/api/m64p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/m64p_types.h -------------------------------------------------------------------------------- /mupen64plus-core/src/api/vidext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/vidext.c -------------------------------------------------------------------------------- /mupen64plus-core/src/api/vidext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/api/vidext.h -------------------------------------------------------------------------------- /mupen64plus-core/src/device/dd/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/dd/disk.c -------------------------------------------------------------------------------- /mupen64plus-core/src/device/dd/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/dd/disk.h -------------------------------------------------------------------------------- /mupen64plus-core/src/device/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/device.c -------------------------------------------------------------------------------- /mupen64plus-core/src/device/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/device.h -------------------------------------------------------------------------------- /mupen64plus-core/src/device/pif/cic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/pif/cic.c -------------------------------------------------------------------------------- /mupen64plus-core/src/device/pif/cic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/pif/cic.h -------------------------------------------------------------------------------- /mupen64plus-core/src/device/pif/pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/pif/pif.c -------------------------------------------------------------------------------- /mupen64plus-core/src/device/pif/pif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/device/pif/pif.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/cheat.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/cheat.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/eventloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/eventloop.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/eventloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/eventloop.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/lirc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/lirc.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/lirc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/lirc.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/list.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/main.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/main.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/netplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/netplay.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/netplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/netplay.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/profile.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/profile.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/rom.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/rom.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/util.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/util.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/version.h -------------------------------------------------------------------------------- /mupen64plus-core/src/main/workqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/workqueue.c -------------------------------------------------------------------------------- /mupen64plus-core/src/main/workqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/main/workqueue.h -------------------------------------------------------------------------------- /mupen64plus-core/src/osal/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/osal/files.h -------------------------------------------------------------------------------- /mupen64plus-core/src/osal/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/osal/preproc.h -------------------------------------------------------------------------------- /mupen64plus-core/src/osd/oglft_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/osd/oglft_c.cpp -------------------------------------------------------------------------------- /mupen64plus-core/src/osd/oglft_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/osd/oglft_c.h -------------------------------------------------------------------------------- /mupen64plus-core/src/osd/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/osd/osd.c -------------------------------------------------------------------------------- /mupen64plus-core/src/osd/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/osd/osd.h -------------------------------------------------------------------------------- /mupen64plus-core/src/plugin/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/plugin/plugin.c -------------------------------------------------------------------------------- /mupen64plus-core/src/plugin/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/src/plugin/plugin.h -------------------------------------------------------------------------------- /mupen64plus-core/tools/joymodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/tools/joymodel.c -------------------------------------------------------------------------------- /mupen64plus-core/tools/joymodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/tools/joymodel.png -------------------------------------------------------------------------------- /mupen64plus-core/tools/profiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/tools/profiling.txt -------------------------------------------------------------------------------- /mupen64plus-core/tools/r4300prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-core/tools/r4300prof.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/COPYING -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/README.md -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/config.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/module.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/module.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/my_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/my_types.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/rsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/rsp.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/rsp.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/rsp_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/rsp_dump.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/rsp_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/rsp_dump.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/su.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/su.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/add.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/add.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/divide.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/divide.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/logical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/logical.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/logical.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/multiply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/multiply.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/multiply.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/pack.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/select.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/select.h -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/vu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/vu.c -------------------------------------------------------------------------------- /mupen64plus-rsp-cxd4/vu/vu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-cxd4/vu/vu.h -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/.gitattributes -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/.gitignore -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/.gitrepo -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/.travis.yml -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/INSTALL -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/LICENSES -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/RELEASE -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/appveyor.yml -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/alist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/alist.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/alist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/alist.h -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/alist_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/alist_audio.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/alist_nead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/alist_nead.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/arithmetics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/arithmetics.h -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/audio.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/audio.h -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/cicx105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/cicx105.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/common.h -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/hle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/hle.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/hle.h -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/hvqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/hvqm.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/jpeg.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/memory.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/memory.h -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/mp3.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/musyx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/musyx.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/plugin.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/re2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/re2.c -------------------------------------------------------------------------------- /mupen64plus-rsp-hle/src/ucodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-hle/src/ucodes.h -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/.gitignore -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/.gitrepo -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/CREDITS.txt -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/LICENSE -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/LICENSE.MIT -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/TODO: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/add.ok: -------------------------------------------------------------------------------- 1 | 5 + 4 = 9 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/align.ok: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/allocai.ok: -------------------------------------------------------------------------------- 1 | received 7777 2 | succeeded 3 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/allocar.ok: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | 3 4 5 3 | 5 6 7 4 | 7 8 9 5 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_add.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_and.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_com.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_div.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_lsh.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_mul.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_neg.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_or.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_rem.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_rsb.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_rsh.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_sub.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alu_xor.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alux_add.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/alux_sub.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/bit.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/bp.ok: -------------------------------------------------------------------------------- 1 | nfibs(32) = 2178309 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/branch.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/bswap.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/carry.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/clobber.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/cvt.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/fib.ok: -------------------------------------------------------------------------------- 1 | nfibs(32) = 2178309 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/float.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/fop_abs.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/fop_sqrt.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/hton.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/jmpr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ldsti.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ldstr-c.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ldstr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ldstxi-c.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ldstxi.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ldstxr-c.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ldstxr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/live.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/movzr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/put.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/qalu_div.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/qalu_mul.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/range.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ranger.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/ret.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/riprel.ok: -------------------------------------------------------------------------------- 1 | c s i l 2 | C S I 3 | 1.0 2.0 4 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/skip.ok: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/stack.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/tramp.ok: -------------------------------------------------------------------------------- 1 | xfibs(32) = 7049155 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/check/va_list.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/doc/.cvsignore: -------------------------------------------------------------------------------- 1 | *.info* 2 | stamp-* 3 | version.texi 4 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/gnulib-lib/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.am 2 | /dummy.c 3 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/lightning/m4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/llvm_jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/llvm_jit.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/llvm_jit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/llvm_jit.hpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/main.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/parallel.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/rsp/cp0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/rsp/cp0.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/rsp/cp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/rsp/cp2.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/rsp/ls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/rsp/ls.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/rsp_1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/rsp_1.1.h -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/rsp_jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/rsp_jit.cpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/rsp_jit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/rsp_jit.hpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/rsp_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/rsp_op.hpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-rsp-paraLLEl/state.hpp -------------------------------------------------------------------------------- /mupen64plus-rsp-paraLLEl/win32/mman/sys/.gitignore: -------------------------------------------------------------------------------- 1 | x64 2 | mman.VC.db -------------------------------------------------------------------------------- /mupen64plus-video-angrylion/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-angrylion/common.h -------------------------------------------------------------------------------- /mupen64plus-video-angrylion/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-angrylion/msg.h -------------------------------------------------------------------------------- /mupen64plus-video-angrylion/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-angrylion/plugin.c -------------------------------------------------------------------------------- /mupen64plus-video-angrylion/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-angrylion/plugin.h -------------------------------------------------------------------------------- /mupen64plus-video-angrylion/rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-angrylion/rdp.h -------------------------------------------------------------------------------- /mupen64plus-video-angrylion/vdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-angrylion/vdac.h -------------------------------------------------------------------------------- /mupen64plus-video-paraLLEl/Gfx #1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-paraLLEl/Gfx #1.3.h -------------------------------------------------------------------------------- /mupen64plus-video-paraLLEl/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-paraLLEl/parallel.h -------------------------------------------------------------------------------- /mupen64plus-video-paraLLEl/rdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-paraLLEl/rdp.cpp -------------------------------------------------------------------------------- /mupen64plus-video-paraLLEl/rdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-paraLLEl/rdp.hpp -------------------------------------------------------------------------------- /mupen64plus-video-paraLLEl/z64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/mupen64plus-video-paraLLEl/z64.h -------------------------------------------------------------------------------- /switch/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/switch/mman.h -------------------------------------------------------------------------------- /xxHash/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/xxHash/xxh3.h -------------------------------------------------------------------------------- /xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/mupen64plus-libretro-nx/HEAD/xxHash/xxhash.h --------------------------------------------------------------------------------