├── .clang-format ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-bug_report.yml │ ├── 2-feature_request.yml │ ├── 3-blank_template.md │ └── config.yml ├── format-check.sh ├── labeler.yml └── workflows │ ├── c-cpp.yml │ ├── codeql-analysis.yml │ └── labeler.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── COPYING.txt ├── README.md ├── _building └── vs-cmd-prompt.png ├── _readme └── screenshots │ ├── A Rose in the Twilight.png │ ├── Alone With You.png │ ├── Fruit Ninja.png │ ├── Jetpack Joyride.png │ ├── P4G.png │ └── VA-11 HALL-A.png ├── appimage ├── apprun.sh ├── build.sh ├── build_updater.sh └── vita3k.desktop ├── data ├── fonts │ ├── LICENSE_E │ ├── LICENSE_J │ ├── LICENSE_SC │ ├── SourceHanSansSC-Bold-Min.ttf │ └── mplus-1mn-bold.ttf └── image │ └── icon.png ├── docs └── Doxyfile ├── external ├── CMakeLists.txt ├── CppCommon │ ├── LICENSE │ ├── README.md │ ├── include │ │ ├── cpu.h │ │ ├── environment.h │ │ └── resource.h │ └── source │ │ ├── cpu.cpp │ │ └── environment.cpp ├── GPUOpen │ ├── ffx_a.h │ └── ffx_fsr1.h ├── cli11 │ └── CLI11.hpp ├── ddspp │ ├── LICENSE │ ├── README.md │ └── ddspp.h ├── glad │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── gl.h │ └── src │ │ └── gl.c └── miniz │ ├── LICENSE │ ├── miniz.c │ └── miniz.h ├── format.bat ├── format.sh ├── gen-linux.sh ├── gen-windows.bat ├── lang ├── system │ ├── da.xml │ ├── de.xml │ ├── en-gb.xml │ ├── en.xml │ ├── es.xml │ ├── fi.xml │ ├── fr.xml │ ├── it.xml │ ├── ja.xml │ ├── ko.xml │ ├── nl.xml │ ├── no.xml │ ├── pl.xml │ ├── pt-br.xml │ ├── pt.xml │ ├── ru.xml │ ├── sv.xml │ ├── tr.xml │ ├── zh-s.xml │ └── zh-t.xml └── user │ ├── id.xml │ ├── ms.xml │ └── ua.xml ├── tools ├── dir_doc.cpp ├── gen-modules │ ├── CMakeLists.txt │ └── gen-modules.cpp ├── native-tool │ ├── Makefile │ ├── sce_sys │ │ ├── icon0.png │ │ └── livearea │ │ │ └── contents │ │ │ ├── bg.png │ │ │ ├── startup.png │ │ │ └── template.xml │ └── src │ │ ├── main.cpp │ │ ├── shaders.h │ │ └── shaders │ │ ├── clear_f.gxp │ │ ├── clear_v.gxp │ │ ├── color_f.gxp │ │ ├── color_v.gxp │ │ ├── texture_f.gxp │ │ ├── texture_tint_f.gxp │ │ └── texture_v.gxp └── usse-decoder-gen │ ├── autogen.py │ └── grammar.yaml └── vita3k ├── CMakeLists.txt ├── Vita3K.ico ├── Vita3K.png ├── Vita3K.rc ├── Windows.manifest ├── app ├── CMakeLists.txt ├── include │ └── app │ │ ├── discord.h │ │ └── functions.h └── src │ ├── app.cpp │ ├── app_init.cpp │ └── discord.cpp ├── audio ├── CMakeLists.txt ├── include │ └── audio │ │ ├── impl │ │ ├── cubeb_audio.h │ │ └── sdl_audio.h │ │ └── state.h └── src │ ├── audio.cpp │ └── impl │ ├── cubeb_audio.cpp │ └── sdl_audio.cpp ├── codec ├── CMakeLists.txt ├── include │ └── codec │ │ ├── state.h │ │ └── types.h └── src │ ├── aac.cpp │ ├── atrac9.cpp │ ├── decoder.cpp │ ├── h264.cpp │ ├── mjpeg.cpp │ ├── mp3.cpp │ ├── pcm.cpp │ └── player.cpp ├── compat ├── CMakeLists.txt ├── include │ └── compat │ │ ├── functions.h │ │ └── state.h └── src │ └── compat.cpp ├── config ├── CMakeLists.txt ├── include │ └── config │ │ ├── config.h │ │ ├── functions.h │ │ ├── state.h │ │ └── version.h └── src │ ├── config.cpp │ └── version.cpp.in ├── cpu ├── CMakeLists.txt ├── include │ └── cpu │ │ ├── common.h │ │ ├── disasm │ │ ├── functions.h │ │ └── state.h │ │ ├── functions.h │ │ ├── impl │ │ ├── dynarmic_cpu.h │ │ └── interface.h │ │ └── state.h └── src │ ├── cpu.cpp │ ├── disasm.cpp │ └── dynarmic_cpu.cpp ├── ctrl ├── CMakeLists.txt ├── include │ └── ctrl │ │ ├── ctrl.h │ │ ├── functions.h │ │ └── state.h └── src │ └── ctrl.cpp ├── dialog ├── CMakeLists.txt └── include │ └── dialog │ ├── state.h │ └── types.h ├── dir_doc.cpp ├── display ├── CMakeLists.txt ├── include │ └── display │ │ ├── functions.h │ │ └── state.h └── src │ └── display.cpp ├── emuenv ├── CMakeLists.txt ├── include │ └── emuenv │ │ ├── app_util.h │ │ ├── state.h │ │ └── window.h └── src │ └── emuenv.cpp ├── features ├── CMakeLists.txt └── include │ └── features │ └── state.h ├── gdbstub ├── CMakeLists.txt ├── include │ └── gdbstub │ │ ├── functions.h │ │ └── state.h └── src │ └── gdb.cpp ├── glutil ├── CMakeLists.txt ├── include │ └── glutil │ │ ├── gl.h │ │ ├── object.h │ │ ├── object_array.h │ │ └── shader.h └── src │ ├── object.cpp │ └── shader.cpp ├── gui ├── CMakeLists.txt ├── include │ └── gui │ │ ├── functions.h │ │ ├── imgui_impl_sdl.h │ │ ├── imgui_impl_sdl_gl3.h │ │ ├── imgui_impl_sdl_state.h │ │ ├── imgui_impl_sdl_vulkan.h │ │ └── state.h └── src │ ├── about_dialog.cpp │ ├── allocations_dialog.cpp │ ├── app_context_menu.cpp │ ├── archive_install_dialog.cpp │ ├── common_dialog.cpp │ ├── compile_shaders.cpp │ ├── condvars_dialog.cpp │ ├── content_manager.cpp │ ├── controllers_dialog.cpp │ ├── controls_dialog.cpp │ ├── disassembly_dialog.cpp │ ├── eventflags_dialog.cpp │ ├── firmware_install_dialog.cpp │ ├── gui.cpp │ ├── home_screen.cpp │ ├── ime.cpp │ ├── imgui_impl_sdl.cpp │ ├── imgui_impl_sdl_gl3.cpp │ ├── imgui_impl_sdl_vulkan.cpp │ ├── information_bar.cpp │ ├── initial_setup.cpp │ ├── license_install_dialog.cpp │ ├── live_area.cpp │ ├── main_menubar.cpp │ ├── manual.cpp │ ├── mutexes_dialog.cpp │ ├── perf_overlay.cpp │ ├── pkg_install_dialog.cpp │ ├── private.h │ ├── reinstall.cpp │ ├── semaphores_dialog.cpp │ ├── settings.cpp │ ├── settings_dialog.cpp │ ├── themes.cpp │ ├── threads_dialog.cpp │ ├── trophy_collection.cpp │ ├── trophy_unlocked.cpp │ ├── user_management.cpp │ ├── vita3k_update.cpp │ └── welcome_dialog.cpp ├── gxm ├── CMakeLists.txt ├── include │ └── gxm │ │ ├── functions.h │ │ ├── state.h │ │ └── types.h └── src │ ├── attributes.cpp │ ├── color.cpp │ ├── gxp.cpp │ ├── stream.cpp │ ├── textures.cpp │ └── transfer.cpp ├── host ├── CMakeLists.txt └── dialog │ ├── CMakeLists.txt │ ├── include │ └── host │ │ └── dialog │ │ └── filesystem.h │ └── src │ └── filesystem.cpp ├── http ├── CMakeLists.txt └── include │ └── http │ └── state.h ├── ime ├── CMakeLists.txt └── include │ └── ime │ ├── functions.h │ ├── state.h │ └── types.h ├── interface.cpp ├── interface.h ├── io ├── CMakeLists.txt ├── include │ └── io │ │ ├── VitaIoDevice.h │ │ ├── device.h │ │ ├── file.h │ │ ├── filesystem.h │ │ ├── functions.h │ │ ├── io.h │ │ ├── state.h │ │ ├── types.h │ │ ├── util.h │ │ └── vfs.h └── src │ ├── device.cpp │ ├── file.cpp │ ├── filesystem.cpp │ ├── io.cpp │ └── state_functions.cpp ├── kernel ├── CMakeLists.txt ├── include │ └── kernel │ │ ├── callback.h │ │ ├── cpu_protocol.h │ │ ├── debugger.h │ │ ├── load_self.h │ │ ├── object_store.h │ │ ├── relocation.h │ │ ├── state.h │ │ ├── sync_primitives.h │ │ ├── thread │ │ ├── thread_data_queue.h │ │ └── thread_state.h │ │ └── types.h └── src │ ├── callback.cpp │ ├── cpu_protocol.cpp │ ├── debugger.cpp │ ├── kernel.cpp │ ├── load_self.cpp │ ├── relocation.cpp │ ├── sync_primitives.cpp │ └── thread.cpp ├── lang ├── CMakeLists.txt ├── include │ └── lang │ │ ├── functions.h │ │ └── state.h └── src │ └── lang.cpp ├── main.cpp ├── mem ├── CMakeLists.txt ├── include │ └── mem │ │ ├── allocator.h │ │ ├── atomic.h │ │ ├── block.h │ │ ├── functions.h │ │ ├── mempool.h │ │ ├── ptr.h │ │ ├── state.h │ │ └── util.h ├── src │ ├── allocator.cpp │ └── mem.cpp └── tests │ └── allocator_tests.cpp ├── module ├── CMakeLists.txt ├── include │ └── module │ │ ├── args_layout.h │ │ ├── bridge.h │ │ ├── bridge_types.h │ │ ├── lay_out_args.h │ │ ├── load_module.h │ │ ├── module.h │ │ ├── read_arg.h │ │ ├── vargs.h │ │ └── write_return_value.h ├── src │ ├── load_module.cpp │ ├── read_arg.cpp │ └── write_return_value.cpp └── tests │ └── arg_layout_tests.cpp ├── modules ├── CMakeLists.txt ├── SceAVConfig │ └── SceAVConfig.cpp ├── SceAppMgr │ ├── SceAppMgr.cpp │ ├── SceAppMgr.h │ └── SceSharedFb.cpp ├── SceAppUtil │ ├── SceAppUtil.cpp │ ├── SceAppUtilAddcontForce.cpp │ ├── SceAppUtilBook.cpp │ ├── SceAppUtilCache.cpp │ └── SceAppUtilExt.cpp ├── SceAtrac │ └── SceAtrac.cpp ├── SceAudio │ └── SceAudio.cpp ├── SceAudioIn │ └── SceAudioIn.cpp ├── SceAudiodec │ ├── SceAudiodecUser.cpp │ └── SceAudiodecUser.h ├── SceAudioenc │ └── SceAudioencUser.cpp ├── SceAvPlayer │ └── SceAvPlayer.cpp ├── SceAvcodec │ └── SceAvcodec.cpp ├── SceAvcodecUser │ └── SceVideoencUser.cpp ├── SceBbmc │ └── SceBbmc.cpp ├── SceBgAppUtil │ └── SceBgAppUtil.cpp ├── SceBt │ └── SceBt.cpp ├── SceCamera │ └── SceCamera.cpp ├── SceClipboard │ └── SceClipboard.cpp ├── SceCodecEngine │ └── SceCodecEngineUser.cpp ├── SceCodecEnginePerf │ └── SceCodecEnginePerf.cpp ├── SceCodecEngineWrapper │ └── SceCodecEngineWrapper.cpp ├── SceCommonDialog │ ├── SceCommonDialog.cpp │ └── SceNpWebApiCommonDialog.cpp ├── SceCompat │ └── SceCompat.cpp ├── SceCoredump │ ├── SceCoredump.cpp │ └── SceCoredumpNounlink.cpp ├── SceCtrl │ └── SceCtrl.cpp ├── SceDTrace │ └── SceDTrace.cpp ├── SceDeci4p │ └── SceDeci4pUserp.cpp ├── SceDeci4pUserp │ └── SceDeci4pUserp.cpp ├── SceDisplay │ ├── SceDisplay.cpp │ └── SceDisplay.h ├── SceDriverUser │ ├── SceAppMgrUser.cpp │ ├── SceAppMgrUser.h │ ├── SceDisplayUser.cpp │ ├── SceDrmBridgeUser.cpp │ ├── SceErrorUser.cpp │ ├── SceFios2User.cpp │ ├── SceMotion.cpp │ └── SceRtcUser.cpp ├── SceError │ ├── SceError.cpp │ └── SceError.h ├── SceFace │ └── SceFace.cpp ├── SceFiber │ └── SceFiber.cpp ├── SceFios2 │ └── SceFios2.cpp ├── SceFios2Kernel │ ├── SceFios2Kernel.cpp │ ├── SceFios2Kernel02.cpp │ └── SceFios2KernelForDriver.cpp ├── SceGameUpdate │ └── SceGameUpdate.cpp ├── SceGps │ └── SceGps.cpp ├── SceGpuEs4 │ └── SceGpuEs4ForUser.cpp ├── SceGxm │ ├── SceGxm.cpp │ ├── SceGxm.h │ ├── SceGxmInternal.cpp │ ├── SceGxmInternalForGles.cpp │ ├── SceGxmInternalForReplay.cpp │ └── SceGxmInternalForVsh.cpp ├── SceHandwriting │ └── SceHandwriting.cpp ├── SceHid │ └── SceHid.cpp ├── SceHttp │ └── SceHttp.cpp ├── SceIme │ └── SceIme.cpp ├── SceIncomingDialog │ └── SceIncomingDialog.cpp ├── SceIofilemgr │ ├── SceIofilemgr.cpp │ └── SceIofilemgr.h ├── SceIpmi │ └── SceIpmi.cpp ├── SceJpeg │ └── SceJpegUser.cpp ├── SceJpegArm │ └── SceJpegArm.cpp ├── SceJpegEnc │ └── SceJpegEncUser.cpp ├── SceJpegEncArm │ └── SceJpegEncArm.cpp ├── SceKernelDmacMgr │ └── SceDmacmgr.cpp ├── SceKernelModulemgr │ ├── SceBacktrace.cpp │ ├── SceModulemgr.cpp │ └── SceModulemgr.h ├── SceKernelThreadMgr │ ├── SceThreadmgr.cpp │ ├── SceThreadmgr.h │ ├── SceThreadmgrCoredumpTime.cpp │ ├── SceThreadmgrForDriver.cpp │ └── SceThreadmgrForKernel.cpp ├── SceLibDbg │ └── SceDbg.cpp ├── SceLibJson │ └── SceLibJson.cpp ├── SceLibKernel │ ├── SceKernelForMono.cpp │ ├── SceKernelForVM.cpp │ ├── SceLibGcc.cpp │ ├── SceLibKernel.cpp │ ├── SceLibKernel.h │ ├── SceLibRng.cpp │ ├── SceLibSsp.cpp │ └── SceRtabi.cpp ├── SceLibMono │ └── SceLibMono.cpp ├── SceLibMonoBridge │ └── SceLibMonoBridge.cpp ├── SceLibMp4Recorder │ └── SceLibMp4Recorder.cpp ├── SceLibMtp │ └── SceLibMtp.cpp ├── SceLibXml │ └── SceLibXml.cpp ├── SceLibc │ ├── SceLibc.cpp │ ├── SceLibm.cpp │ └── SceLibstdcxx.cpp ├── SceLibft2 │ └── SceFt2.cpp ├── SceLiveArea │ └── SceLiveAreaUtil.cpp ├── SceLocation │ └── SceLibLocation.cpp ├── SceLocationExtension │ └── SceLibLocationExtension.cpp ├── SceLsdb │ └── SceLsdb.cpp ├── SceMotionDev │ └── SceMotionDev.cpp ├── SceMp4 │ └── SceMp4.cpp ├── SceMtpIfDriver │ └── SceMtpIf.cpp ├── SceMusicExport │ └── SceMusicExport.cpp ├── SceNearDialogUtil │ └── SceNearDialogUtil.cpp ├── SceNearUtil │ └── SceNearUtil.cpp ├── SceNet │ ├── SceNet.cpp │ └── SceNet.h ├── SceNetAdhocMatching │ └── SceNetAdhocMatching.cpp ├── SceNetCtl │ └── SceNetCtl.cpp ├── SceNetInternal │ └── SceNetInternal.cpp ├── SceNetPs │ └── SceNetPsForSyscalls.cpp ├── SceNgs │ └── SceNgsInternal.cpp ├── SceNgsUser │ └── SceNgs.cpp ├── SceNotificationUtil │ ├── SceNotificationUtil.cpp │ ├── SceNotificationUtilBgApp.cpp │ └── SceNotificationUtilProgress.cpp ├── SceNpActivity │ └── SceNpActivity.cpp ├── SceNpBasic │ └── SceNpBasic.cpp ├── SceNpCommerce2 │ └── SceNpCommerce2.cpp ├── SceNpCommon │ └── SceNpCommon.cpp ├── SceNpDrm │ ├── SceNpDrm.cpp │ ├── SceNpDrmPackage.cpp │ └── ScePsmDrm.cpp ├── SceNpManager │ └── SceNpManager.cpp ├── SceNpMatching2 │ └── SceNpMatching2.cpp ├── SceNpMessage │ └── SceNpMessage.cpp ├── SceNpParty │ └── SceNpPartyGameUtil.cpp ├── SceNpScore │ └── SceNpScore.cpp ├── SceNpSignaling │ └── SceNpSignaling.cpp ├── SceNpSnsFacebook │ └── SceNpSnsFacebook.cpp ├── SceNpTrophy │ └── SceNpTrophy.cpp ├── SceNpTus │ └── SceNpTus.cpp ├── SceNpUtility │ └── SceNpUtility.cpp ├── SceNpWebApi │ └── SceNpWebApi.cpp ├── ScePaf │ ├── ScePafMisc.cpp │ ├── ScePafResource.cpp │ ├── ScePafStdc.cpp │ └── ScePafWidget.cpp ├── ScePamgr │ └── ScePamgr.cpp ├── ScePerf │ └── ScePerf.cpp ├── ScePgf │ └── ScePgf.cpp ├── ScePhotoExport │ └── ScePhotoExport.cpp ├── ScePower │ └── ScePower.cpp ├── SceProcessmgr │ ├── SceProcessmgr.cpp │ ├── SceProcessmgr.h │ └── SceProcessmgrForDriver.cpp ├── ScePromoterUtil │ └── ScePromoterUtil.cpp ├── ScePspnetAdhoc │ └── ScePspnetAdhoc.cpp ├── ScePvf │ └── ScePvf.cpp ├── SceRazorCapture │ └── SceRazorCapture.cpp ├── SceRazorHud │ └── SceRazorHud.cpp ├── SceRegistryMgr │ ├── SceRegMgr.cpp │ ├── SceRegMgrForGame.cpp │ ├── SceRegMgrForSDK.cpp │ └── SceRegMgrService.cpp ├── SceRtc │ ├── SceRtc.cpp │ ├── SceRtc.h │ └── SceRtcForDriver.cpp ├── SceRudp │ └── SceLibRudp.cpp ├── SceSas │ └── SceSas.cpp ├── SceSblACMgr │ └── SceSblACMgr.cpp ├── SceSblGcAuthMgr │ └── SceSblGcAuthMgr.cpp ├── SceSblPostSsMgr │ ├── SceSblLicMgr.cpp │ ├── SceSblPmMgr.cpp │ ├── SceSblRtcMgr.cpp │ └── SceSblUtMgr.cpp ├── SceSblSsMgr │ ├── SceSblAimgr.cpp │ ├── SceSblDmac5Mgr.cpp │ ├── SceSblQafMgr.cpp │ └── SceSblRng.cpp ├── SceSblUpdateMgr │ └── SceSblSsUpdateMgr.cpp ├── SceScreenShot │ └── SceScreenShot.cpp ├── SceShaccCg │ └── SceShaccCg.cpp ├── SceShellSvc │ ├── SceShellSvc.cpp │ ├── SceShellUtil.cpp │ └── SceShellUtilLaunchApp.cpp ├── SceShutterSound │ └── SceShutterSound.cpp ├── SceSmart │ └── SceSmart.cpp ├── SceSqlite │ └── SceSqlite.cpp ├── SceSsl │ ├── SceSsl.cpp │ └── SceSslInternal.cpp ├── SceStdio │ └── SceStdio.cpp ├── SceSulpha │ └── SceSulpha.cpp ├── SceSysmem │ ├── SceCpu.cpp │ ├── SceCpuForDriver.cpp │ ├── SceDebugForDriver.cpp │ ├── SceDebugLed.cpp │ ├── SceDipsw.cpp │ ├── SceDipswForDriver.cpp │ ├── SceProcEventForDriver.cpp │ ├── SceSysclibForDriver.cpp │ ├── SceSysmem.cpp │ ├── SceSysmem.h │ └── SceSysmemForDriver.cpp ├── SceSysmodule │ └── SceSysmodule.cpp ├── SceSystemGesture │ └── SceSystemGesture.cpp ├── SceTeleportClient │ └── SceTeleportClient.cpp ├── SceTeleportServer │ └── SceTeleportServer.cpp ├── SceTouch │ └── SceTouch.cpp ├── SceTriggerUtil │ └── SceTriggerUtil.cpp ├── SceUdcd │ └── SceUdcd.cpp ├── SceUlobjDbg │ └── SceUlobjDbg.cpp ├── SceUlobjMgr │ └── SceUlobjMgr.cpp ├── SceUlt │ └── SceUlt.cpp ├── SceUsbPspcm │ └── SceUsbPspcm.cpp ├── SceUsbSerial │ └── SceUsbSerial.cpp ├── SceUsbServ │ └── SceUsbServ.cpp ├── SceUsbd │ └── SceUsbdForUser.cpp ├── SceUsbstorVStorDriver │ └── SceUsbstorVStor.cpp ├── SceVideoExport │ └── SceVideoExport.cpp ├── SceVideodec │ └── SceVideodecUser.cpp ├── SceVoice │ └── SceVoice.cpp ├── SceVoiceQoS │ └── SceVoiceQoS.cpp ├── SceVshBridge │ ├── SceDrmBridge.cpp │ └── SceVshBridge.cpp ├── SceWlanBt │ └── SceWlan.cpp ├── include │ └── modules │ │ ├── library_init_list.inc │ │ └── module_parent.h └── module_parent.cpp ├── motion ├── CMakeLists.txt ├── include │ └── motion │ │ ├── event_handler.h │ │ ├── functions.h │ │ ├── motion.h │ │ ├── motion_input.h │ │ └── state.h └── src │ ├── motion.cpp │ └── motion_input.cpp ├── net ├── CMakeLists.txt ├── include │ └── net │ │ ├── epoll.h │ │ ├── functions.h │ │ ├── socket.h │ │ ├── state.h │ │ └── types.h └── src │ ├── epoll.cpp │ ├── p2psocket.cpp │ └── posixsocket.cpp ├── ngs ├── CMakeLists.txt ├── include │ └── ngs │ │ ├── common.h │ │ ├── modules │ │ ├── atrac9.h │ │ ├── compressor.h │ │ ├── delay.h │ │ ├── distortion.h │ │ ├── envelope.h │ │ ├── equalizer.h │ │ ├── filter.h │ │ ├── generator.h │ │ ├── mixer.h │ │ ├── output.h │ │ ├── pauser.h │ │ ├── pitchshift.h │ │ ├── player.h │ │ └── reverb.h │ │ ├── scheduler.h │ │ ├── state.h │ │ ├── system.h │ │ └── types.h └── src │ ├── definitions.cpp │ ├── modules │ ├── atrac9.cpp │ ├── compressor.cpp │ ├── delay.cpp │ ├── distortion.cpp │ ├── envelope.cpp │ ├── equalizer.cpp │ ├── filter.cpp │ ├── generator.cpp │ ├── mixer.cpp │ ├── output.cpp │ ├── pauser.cpp │ ├── pitchshift.cpp │ ├── player.cpp │ └── reverb.cpp │ ├── ngs.cpp │ ├── route.cpp │ └── scheduler.cpp ├── nids ├── CMakeLists.txt ├── include │ └── nids │ │ ├── functions.h │ │ ├── nids.inc │ │ └── types.h └── src │ └── nids.cpp ├── np ├── CMakeLists.txt ├── include │ └── np │ │ ├── common.h │ │ ├── functions.h │ │ ├── state.h │ │ └── trophy │ │ ├── context.h │ │ └── trp_parser.h └── src │ ├── init.cpp │ └── trophy │ ├── context.cpp │ └── trp_parser.cpp ├── packages ├── CMakeLists.txt ├── include │ └── packages │ │ ├── exfat.h │ │ ├── functions.h │ │ ├── license.h │ │ ├── pkg.h │ │ ├── sce_types.h │ │ └── sfo.h └── src │ ├── exfat.cpp │ ├── license.cpp │ ├── pkg.cpp │ ├── pup.cpp │ ├── sce_utils.cpp │ └── sfo.cpp ├── patch ├── CMakeLists.txt ├── include │ └── patch │ │ └── patch.h └── src │ └── patch.cpp ├── performance.cpp ├── regmgr ├── CMakeLists.txt ├── include │ └── regmgr │ │ ├── functions.h │ │ ├── state.h │ │ └── types.h └── src │ └── regmgr.cpp ├── renderer ├── CMakeLists.txt ├── include │ └── renderer │ │ ├── commands.h │ │ ├── driver_functions.h │ │ ├── functions.h │ │ ├── gl │ │ ├── fence.h │ │ ├── functions.h │ │ ├── ring_buffer.h │ │ ├── screen_render.h │ │ ├── state.h │ │ ├── surface_cache.h │ │ └── types.h │ │ ├── gxm_types.h │ │ ├── profile.h │ │ ├── pvrt-dec.h │ │ ├── shaders.h │ │ ├── state.h │ │ ├── texture_cache.h │ │ ├── types.h │ │ └── vulkan │ │ ├── functions.h │ │ ├── gxm_to_vulkan.h │ │ ├── pipeline_cache.h │ │ ├── screen_filters.h │ │ ├── screen_renderer.h │ │ ├── state.h │ │ ├── surface_cache.h │ │ └── types.h └── src │ ├── batch.cpp │ ├── creation.cpp │ ├── gl │ ├── attribute_formats.cpp │ ├── color_formats.cpp │ ├── compile_program.cpp │ ├── draw.cpp │ ├── fence.cpp │ ├── renderer.cpp │ ├── ring_buffer.cpp │ ├── screen_render.cpp │ ├── surface_cache.cpp │ ├── sync_state.cpp │ ├── texture.cpp │ ├── texture_formats.cpp │ └── uniforms.cpp │ ├── renderer.cpp │ ├── scene.cpp │ ├── shaders.cpp │ ├── state_set.cpp │ ├── sync.cpp │ ├── texture │ ├── cache.cpp │ ├── format.cpp │ ├── palette.cpp │ ├── pvrt-dec.cpp │ ├── replacement.cpp │ └── yuv.cpp │ ├── transfer.cpp │ └── vulkan │ ├── allocator.cpp │ ├── context.cpp │ ├── creation.cpp │ ├── gxm_to_vulkan.cpp │ ├── pipeline_cache.cpp │ ├── renderer.cpp │ ├── scene.cpp │ ├── screen_filters.cpp │ ├── screen_renderer.cpp │ ├── surface_cache.cpp │ ├── sync_state.cpp │ └── texture.cpp ├── resource.h ├── rtc ├── CMakeLists.txt ├── include │ └── rtc │ │ └── rtc.h └── src │ └── rtc.cpp ├── script ├── update-linux.sh ├── update-macos.sh └── update-windows.bat ├── shader ├── CMakeLists.txt ├── include │ └── shader │ │ ├── decoder_detail.h │ │ ├── gxp_parser.h │ │ ├── matcher.h │ │ ├── profile.h │ │ ├── spirv_recompiler.h │ │ ├── types_imm.h │ │ ├── uniform_block.h │ │ ├── usse_constant_table.h │ │ ├── usse_decoder_helpers.h │ │ ├── usse_disasm.h │ │ ├── usse_opcodes.inc │ │ ├── usse_program_analyzer.h │ │ ├── usse_translator.h │ │ ├── usse_translator_entry.h │ │ ├── usse_translator_types.h │ │ ├── usse_types.h │ │ └── usse_utilities.h └── src │ ├── gxp_parser.cpp │ ├── spirv_recompiler.cpp │ ├── translator │ ├── alu.cpp │ ├── branch_cond.cpp │ ├── data.cpp │ ├── ialu.cpp │ ├── illegal.cpp │ ├── special.cpp │ ├── texture.cpp │ └── utils.cpp │ ├── usse_decode_helpers.cpp │ ├── usse_disasm.cpp │ ├── usse_program_analyzer.cpp │ ├── usse_translator_entry.cpp │ └── usse_utilities.cpp ├── shaders-builtin ├── opengl │ ├── render_main.frag │ ├── render_main.vert │ ├── render_main_bicubic.frag │ └── render_main_fxaa.frag └── vulkan │ ├── fsr_filter_easu.comp │ ├── fsr_filter_easu.comp.spv │ ├── fsr_filter_rcas.comp │ ├── fsr_filter_rcas.comp.spv │ ├── render_main.frag │ ├── render_main.frag.spv │ ├── render_main.vert │ ├── render_main.vert.spv │ ├── render_main_bicubic.frag │ ├── render_main_bicubic.frag.spv │ ├── render_main_fxaa.frag │ └── render_main_fxaa.frag.spv ├── threads ├── CMakeLists.txt └── include │ └── threads │ └── queue.h ├── touch ├── CMakeLists.txt ├── include │ └── touch │ │ ├── functions.h │ │ ├── state.h │ │ └── touch.h └── src │ └── touch.cpp ├── util ├── CMakeLists.txt ├── include │ └── util │ │ ├── align.h │ │ ├── arm.h │ │ ├── bit_cast.h │ │ ├── byte_ring_buffer.h │ │ ├── bytes.h │ │ ├── containers.h │ │ ├── elf.h │ │ ├── exec.h │ │ ├── exit_code.h │ │ ├── find.h │ │ ├── float_to_half.h │ │ ├── fs.h │ │ ├── function_info.h │ │ ├── hash.h │ │ ├── instrset_detect.h │ │ ├── keywords.h │ │ ├── lock_and_find.h │ │ ├── log.h │ │ ├── net_utils.h │ │ ├── overloaded.h │ │ ├── pool.h │ │ ├── preprocessor.h │ │ ├── quaternion.h │ │ ├── safe_time.h │ │ ├── string_utils.h │ │ ├── system.h │ │ ├── time.h │ │ ├── tracy.h │ │ ├── tracy_module_utils.h │ │ ├── types.h │ │ ├── vector_math.h │ │ ├── vector_utils.h │ │ └── warning.h └── src │ ├── arm.cpp │ ├── byte.cpp │ ├── float_to_half.cpp │ ├── fs_utils.cpp │ ├── hash.cpp │ ├── instrset_detect.cpp │ ├── logging.cpp │ ├── net_utils.cpp │ ├── string_utils.cpp │ ├── tracy.cpp │ └── vc_runtime_checker.cpp └── vkutil ├── CMakeLists.txt ├── include └── vkutil │ ├── objects.h │ └── vkutil.h └── src ├── objects.cpp └── vkutil.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: Vita3K 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/ISSUE_TEMPLATE/1-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/ISSUE_TEMPLATE/2-feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-blank_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/ISSUE_TEMPLATE/3-blank_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/format-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/format-check.sh -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/README.md -------------------------------------------------------------------------------- /_building/vs-cmd-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/_building/vs-cmd-prompt.png -------------------------------------------------------------------------------- /_readme/screenshots/A Rose in the Twilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/_readme/screenshots/A Rose in the Twilight.png -------------------------------------------------------------------------------- /_readme/screenshots/Alone With You.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/_readme/screenshots/Alone With You.png -------------------------------------------------------------------------------- /_readme/screenshots/Fruit Ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/_readme/screenshots/Fruit Ninja.png -------------------------------------------------------------------------------- /_readme/screenshots/Jetpack Joyride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/_readme/screenshots/Jetpack Joyride.png -------------------------------------------------------------------------------- /_readme/screenshots/P4G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/_readme/screenshots/P4G.png -------------------------------------------------------------------------------- /_readme/screenshots/VA-11 HALL-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/_readme/screenshots/VA-11 HALL-A.png -------------------------------------------------------------------------------- /appimage/apprun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/appimage/apprun.sh -------------------------------------------------------------------------------- /appimage/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/appimage/build.sh -------------------------------------------------------------------------------- /appimage/build_updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/appimage/build_updater.sh -------------------------------------------------------------------------------- /appimage/vita3k.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/appimage/vita3k.desktop -------------------------------------------------------------------------------- /data/fonts/LICENSE_E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/data/fonts/LICENSE_E -------------------------------------------------------------------------------- /data/fonts/LICENSE_J: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/data/fonts/LICENSE_J -------------------------------------------------------------------------------- /data/fonts/LICENSE_SC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/data/fonts/LICENSE_SC -------------------------------------------------------------------------------- /data/fonts/SourceHanSansSC-Bold-Min.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/data/fonts/SourceHanSansSC-Bold-Min.ttf -------------------------------------------------------------------------------- /data/fonts/mplus-1mn-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/data/fonts/mplus-1mn-bold.ttf -------------------------------------------------------------------------------- /data/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/data/image/icon.png -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/CppCommon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CppCommon/LICENSE -------------------------------------------------------------------------------- /external/CppCommon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CppCommon/README.md -------------------------------------------------------------------------------- /external/CppCommon/include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CppCommon/include/cpu.h -------------------------------------------------------------------------------- /external/CppCommon/include/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CppCommon/include/environment.h -------------------------------------------------------------------------------- /external/CppCommon/include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CppCommon/include/resource.h -------------------------------------------------------------------------------- /external/CppCommon/source/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CppCommon/source/cpu.cpp -------------------------------------------------------------------------------- /external/CppCommon/source/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/CppCommon/source/environment.cpp -------------------------------------------------------------------------------- /external/GPUOpen/ffx_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/GPUOpen/ffx_a.h -------------------------------------------------------------------------------- /external/GPUOpen/ffx_fsr1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/GPUOpen/ffx_fsr1.h -------------------------------------------------------------------------------- /external/cli11/CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/cli11/CLI11.hpp -------------------------------------------------------------------------------- /external/ddspp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/ddspp/LICENSE -------------------------------------------------------------------------------- /external/ddspp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/ddspp/README.md -------------------------------------------------------------------------------- /external/ddspp/ddspp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/ddspp/ddspp.h -------------------------------------------------------------------------------- /external/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /external/glad/include/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/glad/include/glad/gl.h -------------------------------------------------------------------------------- /external/glad/src/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/glad/src/gl.c -------------------------------------------------------------------------------- /external/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/miniz/LICENSE -------------------------------------------------------------------------------- /external/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/miniz/miniz.c -------------------------------------------------------------------------------- /external/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/external/miniz/miniz.h -------------------------------------------------------------------------------- /format.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/format.bat -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/format.sh -------------------------------------------------------------------------------- /gen-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/gen-linux.sh -------------------------------------------------------------------------------- /gen-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/gen-windows.bat -------------------------------------------------------------------------------- /lang/system/da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/da.xml -------------------------------------------------------------------------------- /lang/system/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/de.xml -------------------------------------------------------------------------------- /lang/system/en-gb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/en-gb.xml -------------------------------------------------------------------------------- /lang/system/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/en.xml -------------------------------------------------------------------------------- /lang/system/es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/es.xml -------------------------------------------------------------------------------- /lang/system/fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/fi.xml -------------------------------------------------------------------------------- /lang/system/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/fr.xml -------------------------------------------------------------------------------- /lang/system/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/it.xml -------------------------------------------------------------------------------- /lang/system/ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/ja.xml -------------------------------------------------------------------------------- /lang/system/ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/ko.xml -------------------------------------------------------------------------------- /lang/system/nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/nl.xml -------------------------------------------------------------------------------- /lang/system/no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/no.xml -------------------------------------------------------------------------------- /lang/system/pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/pl.xml -------------------------------------------------------------------------------- /lang/system/pt-br.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/pt-br.xml -------------------------------------------------------------------------------- /lang/system/pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/pt.xml -------------------------------------------------------------------------------- /lang/system/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/ru.xml -------------------------------------------------------------------------------- /lang/system/sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/sv.xml -------------------------------------------------------------------------------- /lang/system/tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/tr.xml -------------------------------------------------------------------------------- /lang/system/zh-s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/zh-s.xml -------------------------------------------------------------------------------- /lang/system/zh-t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/system/zh-t.xml -------------------------------------------------------------------------------- /lang/user/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/user/id.xml -------------------------------------------------------------------------------- /lang/user/ms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/user/ms.xml -------------------------------------------------------------------------------- /lang/user/ua.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/lang/user/ua.xml -------------------------------------------------------------------------------- /tools/dir_doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/dir_doc.cpp -------------------------------------------------------------------------------- /tools/gen-modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/gen-modules/CMakeLists.txt -------------------------------------------------------------------------------- /tools/gen-modules/gen-modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/gen-modules/gen-modules.cpp -------------------------------------------------------------------------------- /tools/native-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/Makefile -------------------------------------------------------------------------------- /tools/native-tool/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/sce_sys/icon0.png -------------------------------------------------------------------------------- /tools/native-tool/sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /tools/native-tool/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /tools/native-tool/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /tools/native-tool/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/main.cpp -------------------------------------------------------------------------------- /tools/native-tool/src/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders.h -------------------------------------------------------------------------------- /tools/native-tool/src/shaders/clear_f.gxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders/clear_f.gxp -------------------------------------------------------------------------------- /tools/native-tool/src/shaders/clear_v.gxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders/clear_v.gxp -------------------------------------------------------------------------------- /tools/native-tool/src/shaders/color_f.gxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders/color_f.gxp -------------------------------------------------------------------------------- /tools/native-tool/src/shaders/color_v.gxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders/color_v.gxp -------------------------------------------------------------------------------- /tools/native-tool/src/shaders/texture_f.gxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders/texture_f.gxp -------------------------------------------------------------------------------- /tools/native-tool/src/shaders/texture_tint_f.gxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders/texture_tint_f.gxp -------------------------------------------------------------------------------- /tools/native-tool/src/shaders/texture_v.gxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/native-tool/src/shaders/texture_v.gxp -------------------------------------------------------------------------------- /tools/usse-decoder-gen/autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/usse-decoder-gen/autogen.py -------------------------------------------------------------------------------- /tools/usse-decoder-gen/grammar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/tools/usse-decoder-gen/grammar.yaml -------------------------------------------------------------------------------- /vita3k/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/Vita3K.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/Vita3K.ico -------------------------------------------------------------------------------- /vita3k/Vita3K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/Vita3K.png -------------------------------------------------------------------------------- /vita3k/Vita3K.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/Vita3K.rc -------------------------------------------------------------------------------- /vita3k/Windows.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/Windows.manifest -------------------------------------------------------------------------------- /vita3k/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/app/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/app/include/app/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/app/include/app/discord.h -------------------------------------------------------------------------------- /vita3k/app/include/app/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/app/include/app/functions.h -------------------------------------------------------------------------------- /vita3k/app/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/app/src/app.cpp -------------------------------------------------------------------------------- /vita3k/app/src/app_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/app/src/app_init.cpp -------------------------------------------------------------------------------- /vita3k/app/src/discord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/app/src/discord.cpp -------------------------------------------------------------------------------- /vita3k/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/audio/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/audio/include/audio/impl/cubeb_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/audio/include/audio/impl/cubeb_audio.h -------------------------------------------------------------------------------- /vita3k/audio/include/audio/impl/sdl_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/audio/include/audio/impl/sdl_audio.h -------------------------------------------------------------------------------- /vita3k/audio/include/audio/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/audio/include/audio/state.h -------------------------------------------------------------------------------- /vita3k/audio/src/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/audio/src/audio.cpp -------------------------------------------------------------------------------- /vita3k/audio/src/impl/cubeb_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/audio/src/impl/cubeb_audio.cpp -------------------------------------------------------------------------------- /vita3k/audio/src/impl/sdl_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/audio/src/impl/sdl_audio.cpp -------------------------------------------------------------------------------- /vita3k/codec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/codec/include/codec/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/include/codec/state.h -------------------------------------------------------------------------------- /vita3k/codec/include/codec/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/include/codec/types.h -------------------------------------------------------------------------------- /vita3k/codec/src/aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/aac.cpp -------------------------------------------------------------------------------- /vita3k/codec/src/atrac9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/atrac9.cpp -------------------------------------------------------------------------------- /vita3k/codec/src/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/decoder.cpp -------------------------------------------------------------------------------- /vita3k/codec/src/h264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/h264.cpp -------------------------------------------------------------------------------- /vita3k/codec/src/mjpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/mjpeg.cpp -------------------------------------------------------------------------------- /vita3k/codec/src/mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/mp3.cpp -------------------------------------------------------------------------------- /vita3k/codec/src/pcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/pcm.cpp -------------------------------------------------------------------------------- /vita3k/codec/src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/codec/src/player.cpp -------------------------------------------------------------------------------- /vita3k/compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/compat/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/compat/include/compat/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/compat/include/compat/functions.h -------------------------------------------------------------------------------- /vita3k/compat/include/compat/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/compat/include/compat/state.h -------------------------------------------------------------------------------- /vita3k/compat/src/compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/compat/src/compat.cpp -------------------------------------------------------------------------------- /vita3k/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/config/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/config/include/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/config/include/config/config.h -------------------------------------------------------------------------------- /vita3k/config/include/config/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/config/include/config/functions.h -------------------------------------------------------------------------------- /vita3k/config/include/config/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/config/include/config/state.h -------------------------------------------------------------------------------- /vita3k/config/include/config/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/config/include/config/version.h -------------------------------------------------------------------------------- /vita3k/config/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/config/src/config.cpp -------------------------------------------------------------------------------- /vita3k/config/src/version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/config/src/version.cpp.in -------------------------------------------------------------------------------- /vita3k/cpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/cpu/include/cpu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/include/cpu/common.h -------------------------------------------------------------------------------- /vita3k/cpu/include/cpu/disasm/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/include/cpu/disasm/functions.h -------------------------------------------------------------------------------- /vita3k/cpu/include/cpu/disasm/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/include/cpu/disasm/state.h -------------------------------------------------------------------------------- /vita3k/cpu/include/cpu/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/include/cpu/functions.h -------------------------------------------------------------------------------- /vita3k/cpu/include/cpu/impl/dynarmic_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/include/cpu/impl/dynarmic_cpu.h -------------------------------------------------------------------------------- /vita3k/cpu/include/cpu/impl/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/include/cpu/impl/interface.h -------------------------------------------------------------------------------- /vita3k/cpu/include/cpu/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/include/cpu/state.h -------------------------------------------------------------------------------- /vita3k/cpu/src/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/src/cpu.cpp -------------------------------------------------------------------------------- /vita3k/cpu/src/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/src/disasm.cpp -------------------------------------------------------------------------------- /vita3k/cpu/src/dynarmic_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/cpu/src/dynarmic_cpu.cpp -------------------------------------------------------------------------------- /vita3k/ctrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ctrl/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/ctrl/include/ctrl/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ctrl/include/ctrl/ctrl.h -------------------------------------------------------------------------------- /vita3k/ctrl/include/ctrl/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ctrl/include/ctrl/functions.h -------------------------------------------------------------------------------- /vita3k/ctrl/include/ctrl/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ctrl/include/ctrl/state.h -------------------------------------------------------------------------------- /vita3k/ctrl/src/ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ctrl/src/ctrl.cpp -------------------------------------------------------------------------------- /vita3k/dialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/dialog/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/dialog/include/dialog/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/dialog/include/dialog/state.h -------------------------------------------------------------------------------- /vita3k/dialog/include/dialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/dialog/include/dialog/types.h -------------------------------------------------------------------------------- /vita3k/dir_doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/dir_doc.cpp -------------------------------------------------------------------------------- /vita3k/display/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/display/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/display/include/display/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/display/include/display/functions.h -------------------------------------------------------------------------------- /vita3k/display/include/display/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/display/include/display/state.h -------------------------------------------------------------------------------- /vita3k/display/src/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/display/src/display.cpp -------------------------------------------------------------------------------- /vita3k/emuenv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/emuenv/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/emuenv/include/emuenv/app_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/emuenv/include/emuenv/app_util.h -------------------------------------------------------------------------------- /vita3k/emuenv/include/emuenv/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/emuenv/include/emuenv/state.h -------------------------------------------------------------------------------- /vita3k/emuenv/include/emuenv/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/emuenv/include/emuenv/window.h -------------------------------------------------------------------------------- /vita3k/emuenv/src/emuenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/emuenv/src/emuenv.cpp -------------------------------------------------------------------------------- /vita3k/features/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/features/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/features/include/features/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/features/include/features/state.h -------------------------------------------------------------------------------- /vita3k/gdbstub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gdbstub/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/gdbstub/include/gdbstub/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gdbstub/include/gdbstub/functions.h -------------------------------------------------------------------------------- /vita3k/gdbstub/include/gdbstub/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gdbstub/include/gdbstub/state.h -------------------------------------------------------------------------------- /vita3k/gdbstub/src/gdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gdbstub/src/gdb.cpp -------------------------------------------------------------------------------- /vita3k/glutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/glutil/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/glutil/include/glutil/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/glutil/include/glutil/gl.h -------------------------------------------------------------------------------- /vita3k/glutil/include/glutil/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/glutil/include/glutil/object.h -------------------------------------------------------------------------------- /vita3k/glutil/include/glutil/object_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/glutil/include/glutil/object_array.h -------------------------------------------------------------------------------- /vita3k/glutil/include/glutil/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/glutil/include/glutil/shader.h -------------------------------------------------------------------------------- /vita3k/glutil/src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/glutil/src/object.cpp -------------------------------------------------------------------------------- /vita3k/glutil/src/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/glutil/src/shader.cpp -------------------------------------------------------------------------------- /vita3k/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/gui/include/gui/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/include/gui/functions.h -------------------------------------------------------------------------------- /vita3k/gui/include/gui/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/include/gui/imgui_impl_sdl.h -------------------------------------------------------------------------------- /vita3k/gui/include/gui/imgui_impl_sdl_gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/include/gui/imgui_impl_sdl_gl3.h -------------------------------------------------------------------------------- /vita3k/gui/include/gui/imgui_impl_sdl_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/include/gui/imgui_impl_sdl_state.h -------------------------------------------------------------------------------- /vita3k/gui/include/gui/imgui_impl_sdl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/include/gui/imgui_impl_sdl_vulkan.h -------------------------------------------------------------------------------- /vita3k/gui/include/gui/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/include/gui/state.h -------------------------------------------------------------------------------- /vita3k/gui/src/about_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/about_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/allocations_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/allocations_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/app_context_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/app_context_menu.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/archive_install_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/archive_install_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/common_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/common_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/compile_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/compile_shaders.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/condvars_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/condvars_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/content_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/content_manager.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/controllers_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/controllers_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/controls_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/controls_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/disassembly_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/disassembly_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/eventflags_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/eventflags_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/firmware_install_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/firmware_install_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/gui.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/home_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/home_screen.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/ime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/ime.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/imgui_impl_sdl_gl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/imgui_impl_sdl_gl3.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/imgui_impl_sdl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/imgui_impl_sdl_vulkan.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/information_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/information_bar.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/initial_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/initial_setup.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/license_install_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/license_install_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/live_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/live_area.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/main_menubar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/main_menubar.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/manual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/manual.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/mutexes_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/mutexes_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/perf_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/perf_overlay.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/pkg_install_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/pkg_install_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/private.h -------------------------------------------------------------------------------- /vita3k/gui/src/reinstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/reinstall.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/semaphores_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/semaphores_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/settings.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/settings_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/settings_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/themes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/themes.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/threads_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/threads_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/trophy_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/trophy_collection.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/trophy_unlocked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/trophy_unlocked.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/user_management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/user_management.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/vita3k_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/vita3k_update.cpp -------------------------------------------------------------------------------- /vita3k/gui/src/welcome_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gui/src/welcome_dialog.cpp -------------------------------------------------------------------------------- /vita3k/gxm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/gxm/include/gxm/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/include/gxm/functions.h -------------------------------------------------------------------------------- /vita3k/gxm/include/gxm/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/include/gxm/state.h -------------------------------------------------------------------------------- /vita3k/gxm/include/gxm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/include/gxm/types.h -------------------------------------------------------------------------------- /vita3k/gxm/src/attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/src/attributes.cpp -------------------------------------------------------------------------------- /vita3k/gxm/src/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/src/color.cpp -------------------------------------------------------------------------------- /vita3k/gxm/src/gxp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/src/gxp.cpp -------------------------------------------------------------------------------- /vita3k/gxm/src/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/src/stream.cpp -------------------------------------------------------------------------------- /vita3k/gxm/src/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/src/textures.cpp -------------------------------------------------------------------------------- /vita3k/gxm/src/transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/gxm/src/transfer.cpp -------------------------------------------------------------------------------- /vita3k/host/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(dialog) 2 | -------------------------------------------------------------------------------- /vita3k/host/dialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/host/dialog/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/host/dialog/include/host/dialog/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/host/dialog/include/host/dialog/filesystem.h -------------------------------------------------------------------------------- /vita3k/host/dialog/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/host/dialog/src/filesystem.cpp -------------------------------------------------------------------------------- /vita3k/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/http/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/http/include/http/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/http/include/http/state.h -------------------------------------------------------------------------------- /vita3k/ime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ime/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/ime/include/ime/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ime/include/ime/functions.h -------------------------------------------------------------------------------- /vita3k/ime/include/ime/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ime/include/ime/state.h -------------------------------------------------------------------------------- /vita3k/ime/include/ime/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ime/include/ime/types.h -------------------------------------------------------------------------------- /vita3k/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/interface.cpp -------------------------------------------------------------------------------- /vita3k/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/interface.h -------------------------------------------------------------------------------- /vita3k/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/io/include/io/VitaIoDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/VitaIoDevice.h -------------------------------------------------------------------------------- /vita3k/io/include/io/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/device.h -------------------------------------------------------------------------------- /vita3k/io/include/io/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/file.h -------------------------------------------------------------------------------- /vita3k/io/include/io/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/filesystem.h -------------------------------------------------------------------------------- /vita3k/io/include/io/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/functions.h -------------------------------------------------------------------------------- /vita3k/io/include/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/io.h -------------------------------------------------------------------------------- /vita3k/io/include/io/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/state.h -------------------------------------------------------------------------------- /vita3k/io/include/io/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/types.h -------------------------------------------------------------------------------- /vita3k/io/include/io/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/util.h -------------------------------------------------------------------------------- /vita3k/io/include/io/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/include/io/vfs.h -------------------------------------------------------------------------------- /vita3k/io/src/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/src/device.cpp -------------------------------------------------------------------------------- /vita3k/io/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/src/file.cpp -------------------------------------------------------------------------------- /vita3k/io/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/src/filesystem.cpp -------------------------------------------------------------------------------- /vita3k/io/src/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/src/io.cpp -------------------------------------------------------------------------------- /vita3k/io/src/state_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/io/src/state_functions.cpp -------------------------------------------------------------------------------- /vita3k/kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/callback.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/cpu_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/cpu_protocol.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/debugger.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/load_self.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/load_self.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/object_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/object_store.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/relocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/relocation.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/state.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/sync_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/sync_primitives.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/thread/thread_data_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/thread/thread_data_queue.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/thread/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/thread/thread_state.h -------------------------------------------------------------------------------- /vita3k/kernel/include/kernel/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/include/kernel/types.h -------------------------------------------------------------------------------- /vita3k/kernel/src/callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/callback.cpp -------------------------------------------------------------------------------- /vita3k/kernel/src/cpu_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/cpu_protocol.cpp -------------------------------------------------------------------------------- /vita3k/kernel/src/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/debugger.cpp -------------------------------------------------------------------------------- /vita3k/kernel/src/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/kernel.cpp -------------------------------------------------------------------------------- /vita3k/kernel/src/load_self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/load_self.cpp -------------------------------------------------------------------------------- /vita3k/kernel/src/relocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/relocation.cpp -------------------------------------------------------------------------------- /vita3k/kernel/src/sync_primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/sync_primitives.cpp -------------------------------------------------------------------------------- /vita3k/kernel/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/kernel/src/thread.cpp -------------------------------------------------------------------------------- /vita3k/lang/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/lang/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/lang/include/lang/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/lang/include/lang/functions.h -------------------------------------------------------------------------------- /vita3k/lang/include/lang/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/lang/include/lang/state.h -------------------------------------------------------------------------------- /vita3k/lang/src/lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/lang/src/lang.cpp -------------------------------------------------------------------------------- /vita3k/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/main.cpp -------------------------------------------------------------------------------- /vita3k/mem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/mem/include/mem/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/allocator.h -------------------------------------------------------------------------------- /vita3k/mem/include/mem/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/atomic.h -------------------------------------------------------------------------------- /vita3k/mem/include/mem/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/block.h -------------------------------------------------------------------------------- /vita3k/mem/include/mem/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/functions.h -------------------------------------------------------------------------------- /vita3k/mem/include/mem/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/mempool.h -------------------------------------------------------------------------------- /vita3k/mem/include/mem/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/ptr.h -------------------------------------------------------------------------------- /vita3k/mem/include/mem/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/state.h -------------------------------------------------------------------------------- /vita3k/mem/include/mem/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/include/mem/util.h -------------------------------------------------------------------------------- /vita3k/mem/src/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/src/allocator.cpp -------------------------------------------------------------------------------- /vita3k/mem/src/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/src/mem.cpp -------------------------------------------------------------------------------- /vita3k/mem/tests/allocator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/mem/tests/allocator_tests.cpp -------------------------------------------------------------------------------- /vita3k/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/module/include/module/args_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/args_layout.h -------------------------------------------------------------------------------- /vita3k/module/include/module/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/bridge.h -------------------------------------------------------------------------------- /vita3k/module/include/module/bridge_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/bridge_types.h -------------------------------------------------------------------------------- /vita3k/module/include/module/lay_out_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/lay_out_args.h -------------------------------------------------------------------------------- /vita3k/module/include/module/load_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/load_module.h -------------------------------------------------------------------------------- /vita3k/module/include/module/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/module.h -------------------------------------------------------------------------------- /vita3k/module/include/module/read_arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/read_arg.h -------------------------------------------------------------------------------- /vita3k/module/include/module/vargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/vargs.h -------------------------------------------------------------------------------- /vita3k/module/include/module/write_return_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/include/module/write_return_value.h -------------------------------------------------------------------------------- /vita3k/module/src/load_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/src/load_module.cpp -------------------------------------------------------------------------------- /vita3k/module/src/read_arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/src/read_arg.cpp -------------------------------------------------------------------------------- /vita3k/module/src/write_return_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/src/write_return_value.cpp -------------------------------------------------------------------------------- /vita3k/module/tests/arg_layout_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/module/tests/arg_layout_tests.cpp -------------------------------------------------------------------------------- /vita3k/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/modules/SceAVConfig/SceAVConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAVConfig/SceAVConfig.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAppMgr/SceAppMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppMgr/SceAppMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAppMgr/SceAppMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppMgr/SceAppMgr.h -------------------------------------------------------------------------------- /vita3k/modules/SceAppMgr/SceSharedFb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppMgr/SceSharedFb.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAppUtil/SceAppUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppUtil/SceAppUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAppUtil/SceAppUtilAddcontForce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppUtil/SceAppUtilAddcontForce.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAppUtil/SceAppUtilBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppUtil/SceAppUtilBook.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAppUtil/SceAppUtilCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppUtil/SceAppUtilCache.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAppUtil/SceAppUtilExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAppUtil/SceAppUtilExt.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAtrac/SceAtrac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAtrac/SceAtrac.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAudio/SceAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAudio/SceAudio.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAudioIn/SceAudioIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAudioIn/SceAudioIn.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAudiodec/SceAudiodecUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAudiodec/SceAudiodecUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAudiodec/SceAudiodecUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAudiodec/SceAudiodecUser.h -------------------------------------------------------------------------------- /vita3k/modules/SceAudioenc/SceAudioencUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAudioenc/SceAudioencUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAvPlayer/SceAvPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAvPlayer/SceAvPlayer.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAvcodec/SceAvcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAvcodec/SceAvcodec.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceAvcodecUser/SceVideoencUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceAvcodecUser/SceVideoencUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceBbmc/SceBbmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceBbmc/SceBbmc.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceBgAppUtil/SceBgAppUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceBgAppUtil/SceBgAppUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceBt/SceBt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceBt/SceBt.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCamera/SceCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCamera/SceCamera.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceClipboard/SceClipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceClipboard/SceClipboard.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCodecEngine/SceCodecEngineUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCodecEngine/SceCodecEngineUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCodecEnginePerf/SceCodecEnginePerf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCodecEnginePerf/SceCodecEnginePerf.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCodecEngineWrapper/SceCodecEngineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCodecEngineWrapper/SceCodecEngineWrapper.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCommonDialog/SceCommonDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCommonDialog/SceCommonDialog.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCommonDialog/SceNpWebApiCommonDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCommonDialog/SceNpWebApiCommonDialog.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCompat/SceCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCompat/SceCompat.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCoredump/SceCoredump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCoredump/SceCoredump.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCoredump/SceCoredumpNounlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCoredump/SceCoredumpNounlink.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceCtrl/SceCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceCtrl/SceCtrl.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDTrace/SceDTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDTrace/SceDTrace.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDeci4p/SceDeci4pUserp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDeci4p/SceDeci4pUserp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDeci4pUserp/SceDeci4pUserp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDeci4pUserp/SceDeci4pUserp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDisplay/SceDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDisplay/SceDisplay.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDisplay/SceDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDisplay/SceDisplay.h -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceAppMgrUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceAppMgrUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceAppMgrUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceAppMgrUser.h -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceDisplayUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceDisplayUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceDrmBridgeUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceDrmBridgeUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceErrorUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceErrorUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceFios2User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceFios2User.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceMotion.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceDriverUser/SceRtcUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceDriverUser/SceRtcUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceError/SceError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceError/SceError.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceError/SceError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceError/SceError.h -------------------------------------------------------------------------------- /vita3k/modules/SceFace/SceFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceFace/SceFace.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceFiber/SceFiber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceFiber/SceFiber.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceFios2/SceFios2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceFios2/SceFios2.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceFios2Kernel/SceFios2Kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceFios2Kernel/SceFios2Kernel.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceFios2Kernel/SceFios2Kernel02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceFios2Kernel/SceFios2Kernel02.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceFios2Kernel/SceFios2KernelForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceFios2Kernel/SceFios2KernelForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGameUpdate/SceGameUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGameUpdate/SceGameUpdate.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGps/SceGps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGps/SceGps.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGpuEs4/SceGpuEs4ForUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGpuEs4/SceGpuEs4ForUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGxm/SceGxm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGxm/SceGxm.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGxm/SceGxm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGxm/SceGxm.h -------------------------------------------------------------------------------- /vita3k/modules/SceGxm/SceGxmInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGxm/SceGxmInternal.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGxm/SceGxmInternalForGles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGxm/SceGxmInternalForGles.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGxm/SceGxmInternalForReplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGxm/SceGxmInternalForReplay.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceGxm/SceGxmInternalForVsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceGxm/SceGxmInternalForVsh.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceHandwriting/SceHandwriting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceHandwriting/SceHandwriting.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceHid/SceHid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceHid/SceHid.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceHttp/SceHttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceHttp/SceHttp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceIme/SceIme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceIme/SceIme.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceIncomingDialog/SceIncomingDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceIncomingDialog/SceIncomingDialog.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceIofilemgr/SceIofilemgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceIofilemgr/SceIofilemgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceIofilemgr/SceIofilemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceIofilemgr/SceIofilemgr.h -------------------------------------------------------------------------------- /vita3k/modules/SceIpmi/SceIpmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceIpmi/SceIpmi.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceJpeg/SceJpegUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceJpeg/SceJpegUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceJpegArm/SceJpegArm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceJpegArm/SceJpegArm.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceJpegEnc/SceJpegEncUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceJpegEnc/SceJpegEncUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceJpegEncArm/SceJpegEncArm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceJpegEncArm/SceJpegEncArm.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceKernelDmacMgr/SceDmacmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelDmacMgr/SceDmacmgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceKernelModulemgr/SceBacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelModulemgr/SceBacktrace.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceKernelModulemgr/SceModulemgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelModulemgr/SceModulemgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceKernelModulemgr/SceModulemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelModulemgr/SceModulemgr.h -------------------------------------------------------------------------------- /vita3k/modules/SceKernelThreadMgr/SceThreadmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelThreadMgr/SceThreadmgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceKernelThreadMgr/SceThreadmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelThreadMgr/SceThreadmgr.h -------------------------------------------------------------------------------- /vita3k/modules/SceKernelThreadMgr/SceThreadmgrCoredumpTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelThreadMgr/SceThreadmgrCoredumpTime.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceKernelThreadMgr/SceThreadmgrForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelThreadMgr/SceThreadmgrForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceKernelThreadMgr/SceThreadmgrForKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceKernelThreadMgr/SceThreadmgrForKernel.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibDbg/SceDbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibDbg/SceDbg.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibJson/SceLibJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibJson/SceLibJson.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceKernelForMono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceKernelForMono.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceKernelForVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceKernelForVM.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceLibGcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceLibGcc.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceLibKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceLibKernel.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceLibKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceLibKernel.h -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceLibRng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceLibRng.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceLibSsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceLibSsp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibKernel/SceRtabi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibKernel/SceRtabi.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibMono/SceLibMono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibMono/SceLibMono.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibMonoBridge/SceLibMonoBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibMonoBridge/SceLibMonoBridge.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibMp4Recorder/SceLibMp4Recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibMp4Recorder/SceLibMp4Recorder.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibMtp/SceLibMtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibMtp/SceLibMtp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibXml/SceLibXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibXml/SceLibXml.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibc/SceLibc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibc/SceLibc.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibc/SceLibm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibc/SceLibm.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibc/SceLibstdcxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibc/SceLibstdcxx.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLibft2/SceFt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLibft2/SceFt2.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLiveArea/SceLiveAreaUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLiveArea/SceLiveAreaUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLocation/SceLibLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLocation/SceLibLocation.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLocationExtension/SceLibLocationExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLocationExtension/SceLibLocationExtension.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceLsdb/SceLsdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceLsdb/SceLsdb.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceMotionDev/SceMotionDev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceMotionDev/SceMotionDev.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceMp4/SceMp4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceMp4/SceMp4.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceMtpIfDriver/SceMtpIf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceMtpIfDriver/SceMtpIf.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceMusicExport/SceMusicExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceMusicExport/SceMusicExport.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNearDialogUtil/SceNearDialogUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNearDialogUtil/SceNearDialogUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNearUtil/SceNearUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNearUtil/SceNearUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNet/SceNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNet/SceNet.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNet/SceNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNet/SceNet.h -------------------------------------------------------------------------------- /vita3k/modules/SceNetAdhocMatching/SceNetAdhocMatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNetAdhocMatching/SceNetAdhocMatching.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNetCtl/SceNetCtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNetCtl/SceNetCtl.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNetInternal/SceNetInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNetInternal/SceNetInternal.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNetPs/SceNetPsForSyscalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNetPs/SceNetPsForSyscalls.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNgs/SceNgsInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNgs/SceNgsInternal.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNgsUser/SceNgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNgsUser/SceNgs.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNotificationUtil/SceNotificationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNotificationUtil/SceNotificationUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNotificationUtil/SceNotificationUtilBgApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNotificationUtil/SceNotificationUtilBgApp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNotificationUtil/SceNotificationUtilProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNotificationUtil/SceNotificationUtilProgress.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpActivity/SceNpActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpActivity/SceNpActivity.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpBasic/SceNpBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpBasic/SceNpBasic.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpCommerce2/SceNpCommerce2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpCommerce2/SceNpCommerce2.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpCommon/SceNpCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpCommon/SceNpCommon.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpDrm/SceNpDrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpDrm/SceNpDrm.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpDrm/SceNpDrmPackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpDrm/SceNpDrmPackage.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpDrm/ScePsmDrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpDrm/ScePsmDrm.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpManager/SceNpManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpManager/SceNpManager.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpMatching2/SceNpMatching2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpMatching2/SceNpMatching2.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpMessage/SceNpMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpMessage/SceNpMessage.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpParty/SceNpPartyGameUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpParty/SceNpPartyGameUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpScore/SceNpScore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpScore/SceNpScore.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpSignaling/SceNpSignaling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpSignaling/SceNpSignaling.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpSnsFacebook/SceNpSnsFacebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpSnsFacebook/SceNpSnsFacebook.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpTrophy/SceNpTrophy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpTrophy/SceNpTrophy.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpTus/SceNpTus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpTus/SceNpTus.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpUtility/SceNpUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpUtility/SceNpUtility.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceNpWebApi/SceNpWebApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceNpWebApi/SceNpWebApi.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePaf/ScePafMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePaf/ScePafMisc.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePaf/ScePafResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePaf/ScePafResource.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePaf/ScePafStdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePaf/ScePafStdc.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePaf/ScePafWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePaf/ScePafWidget.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePamgr/ScePamgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePamgr/ScePamgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePerf/ScePerf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePerf/ScePerf.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePgf/ScePgf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePgf/ScePgf.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePhotoExport/ScePhotoExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePhotoExport/ScePhotoExport.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePower/ScePower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePower/ScePower.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceProcessmgr/SceProcessmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceProcessmgr/SceProcessmgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceProcessmgr/SceProcessmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceProcessmgr/SceProcessmgr.h -------------------------------------------------------------------------------- /vita3k/modules/SceProcessmgr/SceProcessmgrForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceProcessmgr/SceProcessmgrForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePromoterUtil/ScePromoterUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePromoterUtil/ScePromoterUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePspnetAdhoc/ScePspnetAdhoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePspnetAdhoc/ScePspnetAdhoc.cpp -------------------------------------------------------------------------------- /vita3k/modules/ScePvf/ScePvf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/ScePvf/ScePvf.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRazorCapture/SceRazorCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRazorCapture/SceRazorCapture.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRazorHud/SceRazorHud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRazorHud/SceRazorHud.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRegistryMgr/SceRegMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRegistryMgr/SceRegMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRegistryMgr/SceRegMgrForGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRegistryMgr/SceRegMgrForGame.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRegistryMgr/SceRegMgrForSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRegistryMgr/SceRegMgrForSDK.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRegistryMgr/SceRegMgrService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRegistryMgr/SceRegMgrService.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRtc/SceRtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRtc/SceRtc.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRtc/SceRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRtc/SceRtc.h -------------------------------------------------------------------------------- /vita3k/modules/SceRtc/SceRtcForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRtc/SceRtcForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceRudp/SceLibRudp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceRudp/SceLibRudp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSas/SceSas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSas/SceSas.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblACMgr/SceSblACMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblACMgr/SceSblACMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblGcAuthMgr/SceSblGcAuthMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblGcAuthMgr/SceSblGcAuthMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblPostSsMgr/SceSblLicMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblPostSsMgr/SceSblLicMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblPostSsMgr/SceSblPmMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblPostSsMgr/SceSblPmMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblPostSsMgr/SceSblRtcMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblPostSsMgr/SceSblRtcMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblPostSsMgr/SceSblUtMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblPostSsMgr/SceSblUtMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblSsMgr/SceSblAimgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblSsMgr/SceSblAimgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblSsMgr/SceSblDmac5Mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblSsMgr/SceSblDmac5Mgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblSsMgr/SceSblQafMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblSsMgr/SceSblQafMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblSsMgr/SceSblRng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblSsMgr/SceSblRng.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSblUpdateMgr/SceSblSsUpdateMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSblUpdateMgr/SceSblSsUpdateMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceScreenShot/SceScreenShot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceScreenShot/SceScreenShot.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceShaccCg/SceShaccCg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceShaccCg/SceShaccCg.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceShellSvc/SceShellSvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceShellSvc/SceShellSvc.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceShellSvc/SceShellUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceShellSvc/SceShellUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceShellSvc/SceShellUtilLaunchApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceShellSvc/SceShellUtilLaunchApp.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceShutterSound/SceShutterSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceShutterSound/SceShutterSound.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSmart/SceSmart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSmart/SceSmart.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSqlite/SceSqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSqlite/SceSqlite.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSsl/SceSsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSsl/SceSsl.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSsl/SceSslInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSsl/SceSslInternal.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceStdio/SceStdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceStdio/SceStdio.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSulpha/SceSulpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSulpha/SceSulpha.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceCpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceCpu.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceCpuForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceCpuForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceDebugForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceDebugForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceDebugLed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceDebugLed.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceDipsw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceDipsw.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceDipswForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceDipswForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceProcEventForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceProcEventForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceSysclibForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceSysclibForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceSysmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceSysmem.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceSysmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceSysmem.h -------------------------------------------------------------------------------- /vita3k/modules/SceSysmem/SceSysmemForDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmem/SceSysmemForDriver.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSysmodule/SceSysmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSysmodule/SceSysmodule.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceSystemGesture/SceSystemGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceSystemGesture/SceSystemGesture.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceTeleportClient/SceTeleportClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceTeleportClient/SceTeleportClient.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceTeleportServer/SceTeleportServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceTeleportServer/SceTeleportServer.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceTouch/SceTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceTouch/SceTouch.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceTriggerUtil/SceTriggerUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceTriggerUtil/SceTriggerUtil.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUdcd/SceUdcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUdcd/SceUdcd.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUlobjDbg/SceUlobjDbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUlobjDbg/SceUlobjDbg.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUlobjMgr/SceUlobjMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUlobjMgr/SceUlobjMgr.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUlt/SceUlt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUlt/SceUlt.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUsbPspcm/SceUsbPspcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUsbPspcm/SceUsbPspcm.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUsbSerial/SceUsbSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUsbSerial/SceUsbSerial.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUsbServ/SceUsbServ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUsbServ/SceUsbServ.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUsbd/SceUsbdForUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUsbd/SceUsbdForUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceUsbstorVStorDriver/SceUsbstorVStor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceUsbstorVStorDriver/SceUsbstorVStor.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceVideoExport/SceVideoExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceVideoExport/SceVideoExport.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceVideodec/SceVideodecUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceVideodec/SceVideodecUser.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceVoice/SceVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceVoice/SceVoice.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceVoiceQoS/SceVoiceQoS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceVoiceQoS/SceVoiceQoS.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceVshBridge/SceDrmBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceVshBridge/SceDrmBridge.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceVshBridge/SceVshBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceVshBridge/SceVshBridge.cpp -------------------------------------------------------------------------------- /vita3k/modules/SceWlanBt/SceWlan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/SceWlanBt/SceWlan.cpp -------------------------------------------------------------------------------- /vita3k/modules/include/modules/library_init_list.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/include/modules/library_init_list.inc -------------------------------------------------------------------------------- /vita3k/modules/include/modules/module_parent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/include/modules/module_parent.h -------------------------------------------------------------------------------- /vita3k/modules/module_parent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/modules/module_parent.cpp -------------------------------------------------------------------------------- /vita3k/motion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/motion/include/motion/event_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/include/motion/event_handler.h -------------------------------------------------------------------------------- /vita3k/motion/include/motion/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/include/motion/functions.h -------------------------------------------------------------------------------- /vita3k/motion/include/motion/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/include/motion/motion.h -------------------------------------------------------------------------------- /vita3k/motion/include/motion/motion_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/include/motion/motion_input.h -------------------------------------------------------------------------------- /vita3k/motion/include/motion/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/include/motion/state.h -------------------------------------------------------------------------------- /vita3k/motion/src/motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/src/motion.cpp -------------------------------------------------------------------------------- /vita3k/motion/src/motion_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/motion/src/motion_input.cpp -------------------------------------------------------------------------------- /vita3k/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/net/include/net/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/include/net/epoll.h -------------------------------------------------------------------------------- /vita3k/net/include/net/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/include/net/functions.h -------------------------------------------------------------------------------- /vita3k/net/include/net/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/include/net/socket.h -------------------------------------------------------------------------------- /vita3k/net/include/net/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/include/net/state.h -------------------------------------------------------------------------------- /vita3k/net/include/net/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/include/net/types.h -------------------------------------------------------------------------------- /vita3k/net/src/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/src/epoll.cpp -------------------------------------------------------------------------------- /vita3k/net/src/p2psocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/src/p2psocket.cpp -------------------------------------------------------------------------------- /vita3k/net/src/posixsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/net/src/posixsocket.cpp -------------------------------------------------------------------------------- /vita3k/ngs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/common.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/atrac9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/atrac9.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/compressor.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/delay.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/distortion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/distortion.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/envelope.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/equalizer.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/filter.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/generator.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/mixer.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/output.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/pauser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/pauser.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/pitchshift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/pitchshift.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/player.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/modules/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/modules/reverb.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/scheduler.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/state.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/system.h -------------------------------------------------------------------------------- /vita3k/ngs/include/ngs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/include/ngs/types.h -------------------------------------------------------------------------------- /vita3k/ngs/src/definitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/definitions.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/atrac9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/atrac9.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/compressor.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/delay.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/distortion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/distortion.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/envelope.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/equalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/equalizer.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/filter.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/generator.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/mixer.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/output.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/pauser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/pauser.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/pitchshift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/pitchshift.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/player.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/modules/reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/modules/reverb.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/ngs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/ngs.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/route.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/route.cpp -------------------------------------------------------------------------------- /vita3k/ngs/src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/ngs/src/scheduler.cpp -------------------------------------------------------------------------------- /vita3k/nids/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/nids/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/nids/include/nids/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/nids/include/nids/functions.h -------------------------------------------------------------------------------- /vita3k/nids/include/nids/nids.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/nids/include/nids/nids.inc -------------------------------------------------------------------------------- /vita3k/nids/include/nids/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/nids/include/nids/types.h -------------------------------------------------------------------------------- /vita3k/nids/src/nids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/nids/src/nids.cpp -------------------------------------------------------------------------------- /vita3k/np/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/np/include/np/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/include/np/common.h -------------------------------------------------------------------------------- /vita3k/np/include/np/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/include/np/functions.h -------------------------------------------------------------------------------- /vita3k/np/include/np/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/include/np/state.h -------------------------------------------------------------------------------- /vita3k/np/include/np/trophy/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/include/np/trophy/context.h -------------------------------------------------------------------------------- /vita3k/np/include/np/trophy/trp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/include/np/trophy/trp_parser.h -------------------------------------------------------------------------------- /vita3k/np/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/src/init.cpp -------------------------------------------------------------------------------- /vita3k/np/src/trophy/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/src/trophy/context.cpp -------------------------------------------------------------------------------- /vita3k/np/src/trophy/trp_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/np/src/trophy/trp_parser.cpp -------------------------------------------------------------------------------- /vita3k/packages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/packages/include/packages/exfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/include/packages/exfat.h -------------------------------------------------------------------------------- /vita3k/packages/include/packages/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/include/packages/functions.h -------------------------------------------------------------------------------- /vita3k/packages/include/packages/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/include/packages/license.h -------------------------------------------------------------------------------- /vita3k/packages/include/packages/pkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/include/packages/pkg.h -------------------------------------------------------------------------------- /vita3k/packages/include/packages/sce_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/include/packages/sce_types.h -------------------------------------------------------------------------------- /vita3k/packages/include/packages/sfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/include/packages/sfo.h -------------------------------------------------------------------------------- /vita3k/packages/src/exfat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/src/exfat.cpp -------------------------------------------------------------------------------- /vita3k/packages/src/license.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/src/license.cpp -------------------------------------------------------------------------------- /vita3k/packages/src/pkg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/src/pkg.cpp -------------------------------------------------------------------------------- /vita3k/packages/src/pup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/src/pup.cpp -------------------------------------------------------------------------------- /vita3k/packages/src/sce_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/src/sce_utils.cpp -------------------------------------------------------------------------------- /vita3k/packages/src/sfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/packages/src/sfo.cpp -------------------------------------------------------------------------------- /vita3k/patch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/patch/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/patch/include/patch/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/patch/include/patch/patch.h -------------------------------------------------------------------------------- /vita3k/patch/src/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/patch/src/patch.cpp -------------------------------------------------------------------------------- /vita3k/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/performance.cpp -------------------------------------------------------------------------------- /vita3k/regmgr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/regmgr/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/regmgr/include/regmgr/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/regmgr/include/regmgr/functions.h -------------------------------------------------------------------------------- /vita3k/regmgr/include/regmgr/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/regmgr/include/regmgr/state.h -------------------------------------------------------------------------------- /vita3k/regmgr/include/regmgr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/regmgr/include/regmgr/types.h -------------------------------------------------------------------------------- /vita3k/regmgr/src/regmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/regmgr/src/regmgr.cpp -------------------------------------------------------------------------------- /vita3k/renderer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/commands.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/driver_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/driver_functions.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/functions.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gl/fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gl/fence.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gl/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gl/functions.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gl/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gl/ring_buffer.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gl/screen_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gl/screen_render.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gl/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gl/state.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gl/surface_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gl/surface_cache.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gl/types.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/gxm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/gxm_types.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/profile.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/pvrt-dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/pvrt-dec.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/shaders.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/state.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/texture_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/texture_cache.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/types.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/functions.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/gxm_to_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/gxm_to_vulkan.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/pipeline_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/pipeline_cache.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/screen_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/screen_filters.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/screen_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/screen_renderer.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/state.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/surface_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/surface_cache.h -------------------------------------------------------------------------------- /vita3k/renderer/include/renderer/vulkan/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/include/renderer/vulkan/types.h -------------------------------------------------------------------------------- /vita3k/renderer/src/batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/batch.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/creation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/creation.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/attribute_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/attribute_formats.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/color_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/color_formats.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/compile_program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/compile_program.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/draw.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/fence.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/renderer.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/ring_buffer.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/screen_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/screen_render.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/surface_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/surface_cache.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/sync_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/sync_state.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/texture.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/texture_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/texture_formats.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/gl/uniforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/gl/uniforms.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/renderer.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/scene.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/shaders.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/state_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/state_set.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/sync.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/texture/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/texture/cache.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/texture/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/texture/format.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/texture/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/texture/palette.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/texture/pvrt-dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/texture/pvrt-dec.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/texture/replacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/texture/replacement.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/texture/yuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/texture/yuv.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/transfer.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/allocator.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/context.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/creation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/creation.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/gxm_to_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/gxm_to_vulkan.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/pipeline_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/pipeline_cache.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/renderer.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/scene.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/screen_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/screen_filters.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/screen_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/screen_renderer.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/surface_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/surface_cache.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/sync_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/sync_state.cpp -------------------------------------------------------------------------------- /vita3k/renderer/src/vulkan/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/renderer/src/vulkan/texture.cpp -------------------------------------------------------------------------------- /vita3k/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/resource.h -------------------------------------------------------------------------------- /vita3k/rtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/rtc/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/rtc/include/rtc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/rtc/include/rtc/rtc.h -------------------------------------------------------------------------------- /vita3k/rtc/src/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/rtc/src/rtc.cpp -------------------------------------------------------------------------------- /vita3k/script/update-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/script/update-linux.sh -------------------------------------------------------------------------------- /vita3k/script/update-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/script/update-macos.sh -------------------------------------------------------------------------------- /vita3k/script/update-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/script/update-windows.bat -------------------------------------------------------------------------------- /vita3k/shader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/shader/include/shader/decoder_detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/decoder_detail.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/gxp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/gxp_parser.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/matcher.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/profile.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/spirv_recompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/spirv_recompiler.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/types_imm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/types_imm.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/uniform_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/uniform_block.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_constant_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_constant_table.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_decoder_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_decoder_helpers.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_disasm.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_opcodes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_opcodes.inc -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_program_analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_program_analyzer.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_translator.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_translator_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_translator_entry.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_translator_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_translator_types.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_types.h -------------------------------------------------------------------------------- /vita3k/shader/include/shader/usse_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/include/shader/usse_utilities.h -------------------------------------------------------------------------------- /vita3k/shader/src/gxp_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/gxp_parser.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/spirv_recompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/spirv_recompiler.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/alu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/alu.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/branch_cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/branch_cond.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/data.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/ialu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/ialu.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/illegal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/illegal.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/special.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/special.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/texture.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/translator/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/translator/utils.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/usse_decode_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/usse_decode_helpers.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/usse_disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/usse_disasm.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/usse_program_analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/usse_program_analyzer.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/usse_translator_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/usse_translator_entry.cpp -------------------------------------------------------------------------------- /vita3k/shader/src/usse_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shader/src/usse_utilities.cpp -------------------------------------------------------------------------------- /vita3k/shaders-builtin/opengl/render_main.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/opengl/render_main.frag -------------------------------------------------------------------------------- /vita3k/shaders-builtin/opengl/render_main.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/opengl/render_main.vert -------------------------------------------------------------------------------- /vita3k/shaders-builtin/opengl/render_main_bicubic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/opengl/render_main_bicubic.frag -------------------------------------------------------------------------------- /vita3k/shaders-builtin/opengl/render_main_fxaa.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/opengl/render_main_fxaa.frag -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/fsr_filter_easu.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/fsr_filter_easu.comp -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/fsr_filter_easu.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/fsr_filter_easu.comp.spv -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/fsr_filter_rcas.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/fsr_filter_rcas.comp -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/fsr_filter_rcas.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/fsr_filter_rcas.comp.spv -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main.frag -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main.frag.spv -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main.vert -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main.vert.spv -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main_bicubic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main_bicubic.frag -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main_bicubic.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main_bicubic.frag.spv -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main_fxaa.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main_fxaa.frag -------------------------------------------------------------------------------- /vita3k/shaders-builtin/vulkan/render_main_fxaa.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/shaders-builtin/vulkan/render_main_fxaa.frag.spv -------------------------------------------------------------------------------- /vita3k/threads/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/threads/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/threads/include/threads/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/threads/include/threads/queue.h -------------------------------------------------------------------------------- /vita3k/touch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/touch/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/touch/include/touch/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/touch/include/touch/functions.h -------------------------------------------------------------------------------- /vita3k/touch/include/touch/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/touch/include/touch/state.h -------------------------------------------------------------------------------- /vita3k/touch/include/touch/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/touch/include/touch/touch.h -------------------------------------------------------------------------------- /vita3k/touch/src/touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/touch/src/touch.cpp -------------------------------------------------------------------------------- /vita3k/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/util/include/util/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/align.h -------------------------------------------------------------------------------- /vita3k/util/include/util/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/arm.h -------------------------------------------------------------------------------- /vita3k/util/include/util/bit_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/bit_cast.h -------------------------------------------------------------------------------- /vita3k/util/include/util/byte_ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/byte_ring_buffer.h -------------------------------------------------------------------------------- /vita3k/util/include/util/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/bytes.h -------------------------------------------------------------------------------- /vita3k/util/include/util/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/containers.h -------------------------------------------------------------------------------- /vita3k/util/include/util/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/elf.h -------------------------------------------------------------------------------- /vita3k/util/include/util/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/exec.h -------------------------------------------------------------------------------- /vita3k/util/include/util/exit_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/exit_code.h -------------------------------------------------------------------------------- /vita3k/util/include/util/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/find.h -------------------------------------------------------------------------------- /vita3k/util/include/util/float_to_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/float_to_half.h -------------------------------------------------------------------------------- /vita3k/util/include/util/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/fs.h -------------------------------------------------------------------------------- /vita3k/util/include/util/function_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/function_info.h -------------------------------------------------------------------------------- /vita3k/util/include/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/hash.h -------------------------------------------------------------------------------- /vita3k/util/include/util/instrset_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/instrset_detect.h -------------------------------------------------------------------------------- /vita3k/util/include/util/keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/keywords.h -------------------------------------------------------------------------------- /vita3k/util/include/util/lock_and_find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/lock_and_find.h -------------------------------------------------------------------------------- /vita3k/util/include/util/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/log.h -------------------------------------------------------------------------------- /vita3k/util/include/util/net_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/net_utils.h -------------------------------------------------------------------------------- /vita3k/util/include/util/overloaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/overloaded.h -------------------------------------------------------------------------------- /vita3k/util/include/util/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/pool.h -------------------------------------------------------------------------------- /vita3k/util/include/util/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/preprocessor.h -------------------------------------------------------------------------------- /vita3k/util/include/util/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/quaternion.h -------------------------------------------------------------------------------- /vita3k/util/include/util/safe_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/safe_time.h -------------------------------------------------------------------------------- /vita3k/util/include/util/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/string_utils.h -------------------------------------------------------------------------------- /vita3k/util/include/util/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/system.h -------------------------------------------------------------------------------- /vita3k/util/include/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/time.h -------------------------------------------------------------------------------- /vita3k/util/include/util/tracy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/tracy.h -------------------------------------------------------------------------------- /vita3k/util/include/util/tracy_module_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/tracy_module_utils.h -------------------------------------------------------------------------------- /vita3k/util/include/util/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/types.h -------------------------------------------------------------------------------- /vita3k/util/include/util/vector_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/vector_math.h -------------------------------------------------------------------------------- /vita3k/util/include/util/vector_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/vector_utils.h -------------------------------------------------------------------------------- /vita3k/util/include/util/warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/include/util/warning.h -------------------------------------------------------------------------------- /vita3k/util/src/arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/arm.cpp -------------------------------------------------------------------------------- /vita3k/util/src/byte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/byte.cpp -------------------------------------------------------------------------------- /vita3k/util/src/float_to_half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/float_to_half.cpp -------------------------------------------------------------------------------- /vita3k/util/src/fs_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/fs_utils.cpp -------------------------------------------------------------------------------- /vita3k/util/src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/hash.cpp -------------------------------------------------------------------------------- /vita3k/util/src/instrset_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/instrset_detect.cpp -------------------------------------------------------------------------------- /vita3k/util/src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/logging.cpp -------------------------------------------------------------------------------- /vita3k/util/src/net_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/net_utils.cpp -------------------------------------------------------------------------------- /vita3k/util/src/string_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/string_utils.cpp -------------------------------------------------------------------------------- /vita3k/util/src/tracy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/tracy.cpp -------------------------------------------------------------------------------- /vita3k/util/src/vc_runtime_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/util/src/vc_runtime_checker.cpp -------------------------------------------------------------------------------- /vita3k/vkutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/vkutil/CMakeLists.txt -------------------------------------------------------------------------------- /vita3k/vkutil/include/vkutil/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/vkutil/include/vkutil/objects.h -------------------------------------------------------------------------------- /vita3k/vkutil/include/vkutil/vkutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/vkutil/include/vkutil/vkutil.h -------------------------------------------------------------------------------- /vita3k/vkutil/src/objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/vkutil/src/objects.cpp -------------------------------------------------------------------------------- /vita3k/vkutil/src/vkutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macdu/Vita3K/HEAD/vita3k/vkutil/src/vkutil.cpp --------------------------------------------------------------------------------