├── .ci ├── scripts │ ├── android │ │ ├── build.sh │ │ ├── eabuild.sh │ │ ├── mainlinebuild.sh │ │ └── upload.sh │ ├── clang │ │ ├── docker.sh │ │ ├── exec.sh │ │ └── upload.sh │ ├── common │ │ ├── post-upload.sh │ │ └── pre-upload.sh │ ├── format │ │ ├── docker.sh │ │ ├── exec.sh │ │ └── script.sh │ ├── linux │ │ ├── docker.sh │ │ ├── exec.sh │ │ └── upload.sh │ ├── merge │ │ ├── apply-patches-by-label-private.py │ │ ├── apply-patches-by-label.py │ │ ├── check-label-presence.py │ │ └── yuzubot-git-config.sh │ ├── transifex │ │ └── docker.sh │ └── windows │ │ ├── docker.sh │ │ ├── exec.sh │ │ ├── install-vulkan-sdk.ps1 │ │ ├── scan_dll.py │ │ ├── upload.ps1 │ │ └── upload.sh ├── templates │ ├── build-mock.yml │ ├── build-msvc.yml │ ├── build-single.yml │ ├── build-standard.yml │ ├── build-testing.yml │ ├── format-check.yml │ ├── merge-private.yml │ ├── merge.yml │ ├── mergebot-private.yml │ ├── mergebot.yml │ ├── release-download.yml │ ├── release-github.yml │ ├── release-private-tag.yml │ ├── release-universal.yml │ ├── retrieve-artifact-source.yml │ ├── retrieve-master-source.yml │ └── sync-source.yml ├── yuzu-mainline-step1.yml ├── yuzu-mainline-step2.yml ├── yuzu-patreon-step1.yml ├── yuzu-patreon-step2.yml ├── yuzu-repo-sync.yml └── yuzu-verify.yml ├── .codespellrc ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── blank_issue_template.yml │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── android-build.yml │ ├── android-ea-play-release.yml │ ├── android-mainline-play-release.yml │ ├── android-merge.js │ ├── android-publish.yml │ ├── ci.yml │ ├── codespell.yml │ └── verify.yml ├── .gitignore ├── .gitmodules ├── .reuse └── dep5 ├── CMakeLists.txt ├── CMakeModules ├── CopyYuzuFFmpegDeps.cmake ├── CopyYuzuQt5Deps.cmake ├── CopyYuzuSDLDeps.cmake ├── DownloadExternals.cmake ├── FindDiscordRPC.cmake ├── FindFFmpeg.cmake ├── FindLLVM.cmake ├── FindOpus.cmake ├── FindRenderDoc.cmake ├── FindSimpleIni.cmake ├── Findenet.cmake ├── Findgamemode.cmake ├── Findhttplib.cmake ├── Findlibusb.cmake ├── Findlz4.cmake ├── Findstb.cmake ├── Findzstd.cmake ├── GenerateSCMRev.cmake ├── MSVCCache.cmake ├── MinGWClangCross.cmake ├── MinGWCross.cmake └── WindowsCopyFiles.cmake ├── CONTRIBUTING.md ├── Doxyfile ├── LICENSE.txt ├── LICENSES ├── Apache-2.0.txt ├── BSD-2-Clause.txt ├── BSD-3-Clause.txt ├── BSL-1.0.txt ├── CC-BY-4.0.txt ├── CC-BY-SA-3.0.txt ├── CC0-1.0.txt ├── GPL-2.0-or-later.txt ├── GPL-3.0-or-later.txt ├── LGPL-3.0-or-later.txt ├── LLVM-exception.txt ├── MIT.txt ├── MPL-2.0.txt ├── Unlicense.txt ├── WTFPL.txt └── Zlib.txt ├── README.md ├── dist ├── 72-yuzu-input.rules ├── compatibility_list │ └── compatibility_list.qrc ├── english_plurals │ ├── README.md │ └── en.ts ├── icons │ ├── controller │ │ ├── applet_dual_joycon.png │ │ ├── applet_dual_joycon_dark.png │ │ ├── applet_dual_joycon_dark_disabled.png │ │ ├── applet_dual_joycon_disabled.png │ │ ├── applet_dual_joycon_midnight.png │ │ ├── applet_dual_joycon_midnight_disabled.png │ │ ├── applet_handheld.png │ │ ├── applet_handheld_dark.png │ │ ├── applet_handheld_dark_disabled.png │ │ ├── applet_handheld_disabled.png │ │ ├── applet_handheld_midnight.png │ │ ├── applet_handheld_midnight_disabled.png │ │ ├── applet_pro_controller.png │ │ ├── applet_pro_controller_dark.png │ │ ├── applet_pro_controller_dark_disabled.png │ │ ├── applet_pro_controller_disabled.png │ │ ├── applet_pro_controller_midnight.png │ │ ├── applet_pro_controller_midnight_disabled.png │ │ ├── applet_single_joycon_left.png │ │ ├── applet_single_joycon_left_dark.png │ │ ├── applet_single_joycon_left_dark_disabled.png │ │ ├── applet_single_joycon_left_disabled.png │ │ ├── applet_single_joycon_left_midnight.png │ │ ├── applet_single_joycon_left_midnight_disabled.png │ │ ├── applet_single_joycon_right.png │ │ ├── applet_single_joycon_right_dark.png │ │ ├── applet_single_joycon_right_dark_disabled.png │ │ ├── applet_single_joycon_right_disabled.png │ │ ├── applet_single_joycon_right_midnight.png │ │ ├── applet_single_joycon_right_midnight_disabled.png │ │ └── controller.qrc │ └── overlay │ │ ├── arrow_left.png │ │ ├── arrow_left_dark.png │ │ ├── arrow_right.png │ │ ├── arrow_right_dark.png │ │ ├── button_A.png │ │ ├── button_A_dark.png │ │ ├── button_B.png │ │ ├── button_B_dark.png │ │ ├── button_L.png │ │ ├── button_L_dark.png │ │ ├── button_R.png │ │ ├── button_R_dark.png │ │ ├── button_X.png │ │ ├── button_X_dark.png │ │ ├── button_Y.png │ │ ├── button_Y_dark.png │ │ ├── button_minus.png │ │ ├── button_minus_dark.png │ │ ├── button_plus.png │ │ ├── button_plus_dark.png │ │ ├── button_press_stick.png │ │ ├── button_press_stick_dark.png │ │ ├── controller_dual_joycon.png │ │ ├── controller_dual_joycon_dark.png │ │ ├── controller_handheld.png │ │ ├── controller_handheld_dark.png │ │ ├── controller_pro.png │ │ ├── controller_pro_dark.png │ │ ├── controller_single_joycon_left.png │ │ ├── controller_single_joycon_left_a.png │ │ ├── controller_single_joycon_left_a_dark.png │ │ ├── controller_single_joycon_left_b.png │ │ ├── controller_single_joycon_left_b_dark.png │ │ ├── controller_single_joycon_left_dark.png │ │ ├── controller_single_joycon_left_x.png │ │ ├── controller_single_joycon_left_x_dark.png │ │ ├── controller_single_joycon_left_y.png │ │ ├── controller_single_joycon_left_y_dark.png │ │ ├── controller_single_joycon_right.png │ │ ├── controller_single_joycon_right_dark.png │ │ ├── osk_button_B.png │ │ ├── osk_button_B_dark.png │ │ ├── osk_button_B_dark_disabled.png │ │ ├── osk_button_B_disabled.png │ │ ├── osk_button_Y.png │ │ ├── osk_button_Y_dark.png │ │ ├── osk_button_Y_dark_disabled.png │ │ ├── osk_button_Y_disabled.png │ │ ├── osk_button_backspace.png │ │ ├── osk_button_backspace_dark.png │ │ ├── osk_button_plus.png │ │ ├── osk_button_plus_dark.png │ │ ├── osk_button_plus_dark_disabled.png │ │ ├── osk_button_plus_disabled.png │ │ ├── osk_button_shift.png │ │ ├── osk_button_shift_dark.png │ │ ├── osk_button_shift_lock_off.png │ │ ├── osk_button_shift_lock_on.png │ │ ├── osk_button_shift_on.png │ │ ├── osk_button_shift_on_dark.png │ │ └── overlay.qrc ├── languages │ ├── .gitignore │ ├── .tx │ │ └── config │ ├── README.md │ ├── ar.ts │ ├── ca.ts │ ├── cs.ts │ ├── da.ts │ ├── de.ts │ ├── el.ts │ ├── es.ts │ ├── fi.ts │ ├── fr.ts │ ├── hu.ts │ ├── id.ts │ ├── it.ts │ ├── ja_JP.ts │ ├── ko_KR.ts │ ├── nb.ts │ ├── nl.ts │ ├── pl.ts │ ├── pt_BR.ts │ ├── pt_PT.ts │ ├── ru_RU.ts │ ├── sv.ts │ ├── tr_TR.ts │ ├── uk.ts │ ├── vi.ts │ ├── vi_VN.ts │ ├── zh_CN.ts │ └── zh_TW.ts ├── org.yuzu_emu.yuzu.desktop ├── org.yuzu_emu.yuzu.metainfo.xml ├── org.yuzu_emu.yuzu.xml ├── qt_themes │ ├── colorful │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── checked.png │ │ │ │ ├── connected.png │ │ │ │ ├── connected_notification.png │ │ │ │ ├── disconnected.png │ │ │ │ ├── failed.png │ │ │ │ ├── info.png │ │ │ │ ├── lock.png │ │ │ │ ├── sync.png │ │ │ │ └── view-refresh.png │ │ │ ├── 256x256 │ │ │ │ └── plus_folder.png │ │ │ ├── 48x48 │ │ │ │ ├── bad_folder.png │ │ │ │ ├── chip.png │ │ │ │ ├── folder.png │ │ │ │ ├── list-add.png │ │ │ │ ├── no_avatar.png │ │ │ │ ├── sd_card.png │ │ │ │ └── star.png │ │ │ └── index.theme │ │ └── style.qrc │ ├── colorful_dark │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── lock.png │ │ │ │ └── view-refresh.png │ │ │ └── index.theme │ │ └── style.qrc │ ├── colorful_midnight_blue │ │ ├── icons │ │ │ └── index.theme │ │ └── style.qrc │ ├── default │ │ ├── default.qrc │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── connected.png │ │ │ │ ├── connected_notification.png │ │ │ │ ├── disconnected.png │ │ │ │ └── lock.png │ │ │ ├── 256x256 │ │ │ │ ├── plus_folder.png │ │ │ │ └── yuzu.png │ │ │ ├── 48x48 │ │ │ │ ├── bad_folder.png │ │ │ │ ├── chip.png │ │ │ │ ├── folder.png │ │ │ │ ├── list-add.png │ │ │ │ ├── sd_card.png │ │ │ │ └── star.png │ │ │ └── index.theme │ │ └── style.qss │ ├── default_dark │ │ ├── icons │ │ │ └── index.theme │ │ ├── style.qrc │ │ └── style.qss │ ├── qdarkstyle │ │ ├── LICENSE.md │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── connected.png │ │ │ │ ├── connected_notification.png │ │ │ │ ├── disconnected.png │ │ │ │ ├── lock.png │ │ │ │ └── view-refresh.png │ │ │ ├── 256x256 │ │ │ │ └── plus_folder.png │ │ │ ├── 48x48 │ │ │ │ ├── bad_folder.png │ │ │ │ ├── chip.png │ │ │ │ ├── folder.png │ │ │ │ ├── list-add.png │ │ │ │ ├── no_avatar.png │ │ │ │ ├── sd_card.png │ │ │ │ └── star.png │ │ │ └── index.theme │ │ ├── rc │ │ │ ├── Hmovetoolbar.png │ │ │ ├── Hsepartoolbar.png │ │ │ ├── Vmovetoolbar.png │ │ │ ├── Vsepartoolbar.png │ │ │ ├── branch_closed-on.png │ │ │ ├── branch_closed.png │ │ │ ├── branch_open-on.png │ │ │ ├── branch_open.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disabled.png │ │ │ ├── checkbox_checked_focus.png │ │ │ ├── checkbox_indeterminate.png │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ ├── checkbox_indeterminate_focus.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ ├── checkbox_unchecked_focus.png │ │ │ ├── close-hover.png │ │ │ ├── close-pressed.png │ │ │ ├── close.png │ │ │ ├── down_arrow.png │ │ │ ├── down_arrow_disabled.png │ │ │ ├── left_arrow.png │ │ │ ├── left_arrow_disabled.png │ │ │ ├── radio_checked.png │ │ │ ├── radio_checked_disabled.png │ │ │ ├── radio_checked_focus.png │ │ │ ├── radio_unchecked.png │ │ │ ├── radio_unchecked_disabled.png │ │ │ ├── radio_unchecked_focus.png │ │ │ ├── right_arrow.png │ │ │ ├── right_arrow_disabled.png │ │ │ ├── sizegrip.png │ │ │ ├── stylesheet-branch-end.png │ │ │ ├── stylesheet-branch-more.png │ │ │ ├── stylesheet-vline.png │ │ │ ├── transparent.png │ │ │ ├── undock.png │ │ │ ├── up_arrow.png │ │ │ └── up_arrow_disabled.png │ │ ├── style.qrc │ │ └── style.qss │ └── qdarkstyle_midnight_blue │ │ ├── LICENSE.rst │ │ ├── icons │ │ └── index.theme │ │ ├── rc │ │ ├── Hmovetoolbar.png │ │ ├── Hsepartoolbar.png │ │ ├── Vmovetoolbar.png │ │ ├── Vsepartoolbar.png │ │ ├── arrow_down.png │ │ ├── arrow_down@2x.png │ │ ├── arrow_down_disabled.png │ │ ├── arrow_down_disabled@2x.png │ │ ├── arrow_down_focus.png │ │ ├── arrow_down_focus@2x.png │ │ ├── arrow_down_pressed.png │ │ ├── arrow_down_pressed@2x.png │ │ ├── arrow_left.png │ │ ├── arrow_left@2x.png │ │ ├── arrow_left_disabled.png │ │ ├── arrow_left_disabled@2x.png │ │ ├── arrow_left_focus.png │ │ ├── arrow_left_focus@2x.png │ │ ├── arrow_left_pressed.png │ │ ├── arrow_left_pressed@2x.png │ │ ├── arrow_right.png │ │ ├── arrow_right@2x.png │ │ ├── arrow_right_disabled.png │ │ ├── arrow_right_disabled@2x.png │ │ ├── arrow_right_focus.png │ │ ├── arrow_right_focus@2x.png │ │ ├── arrow_right_pressed.png │ │ ├── arrow_right_pressed@2x.png │ │ ├── arrow_up.png │ │ ├── arrow_up@2x.png │ │ ├── arrow_up_disabled.png │ │ ├── arrow_up_disabled@2x.png │ │ ├── arrow_up_focus.png │ │ ├── arrow_up_focus@2x.png │ │ ├── arrow_up_pressed.png │ │ ├── arrow_up_pressed@2x.png │ │ ├── base_icon.png │ │ ├── base_icon@2x.png │ │ ├── base_icon_disabled.png │ │ ├── base_icon_disabled@2x.png │ │ ├── base_icon_focus.png │ │ ├── base_icon_focus@2x.png │ │ ├── base_icon_pressed.png │ │ ├── base_icon_pressed@2x.png │ │ ├── branch_closed-on.png │ │ ├── branch_closed.png │ │ ├── branch_closed@2x.png │ │ ├── branch_closed_disabled.png │ │ ├── branch_closed_disabled@2x.png │ │ ├── branch_closed_focus.png │ │ ├── branch_closed_focus@2x.png │ │ ├── branch_closed_pressed.png │ │ ├── branch_closed_pressed@2x.png │ │ ├── branch_end.png │ │ ├── branch_end@2x.png │ │ ├── branch_end_disabled.png │ │ ├── branch_end_disabled@2x.png │ │ ├── branch_end_focus.png │ │ ├── branch_end_focus@2x.png │ │ ├── branch_end_pressed.png │ │ ├── branch_end_pressed@2x.png │ │ ├── branch_line.png │ │ ├── branch_line@2x.png │ │ ├── branch_line_disabled.png │ │ ├── branch_line_disabled@2x.png │ │ ├── branch_line_focus.png │ │ ├── branch_line_focus@2x.png │ │ ├── branch_line_pressed.png │ │ ├── branch_line_pressed@2x.png │ │ ├── branch_more.png │ │ ├── branch_more@2x.png │ │ ├── branch_more_disabled.png │ │ ├── branch_more_disabled@2x.png │ │ ├── branch_more_focus.png │ │ ├── branch_more_focus@2x.png │ │ ├── branch_more_pressed.png │ │ ├── branch_more_pressed@2x.png │ │ ├── branch_open-on.png │ │ ├── branch_open.png │ │ ├── branch_open@2x.png │ │ ├── branch_open_disabled.png │ │ ├── branch_open_disabled@2x.png │ │ ├── branch_open_focus.png │ │ ├── branch_open_focus@2x.png │ │ ├── branch_open_pressed.png │ │ ├── branch_open_pressed@2x.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked@2x.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_disabled@2x.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_checked_focus@2x.png │ │ ├── checkbox_checked_pressed.png │ │ ├── checkbox_checked_pressed@2x.png │ │ ├── checkbox_indeterminate.png │ │ ├── checkbox_indeterminate@2x.png │ │ ├── checkbox_indeterminate_disabled.png │ │ ├── checkbox_indeterminate_disabled@2x.png │ │ ├── checkbox_indeterminate_focus.png │ │ ├── checkbox_indeterminate_focus@2x.png │ │ ├── checkbox_indeterminate_pressed.png │ │ ├── checkbox_indeterminate_pressed@2x.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked@2x.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_disabled@2x.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── checkbox_unchecked_focus@2x.png │ │ ├── checkbox_unchecked_pressed.png │ │ ├── checkbox_unchecked_pressed@2x.png │ │ ├── close-hover.png │ │ ├── close-pressed.png │ │ ├── close.png │ │ ├── down_arrow.png │ │ ├── down_arrow_disabled.png │ │ ├── left_arrow.png │ │ ├── left_arrow_disabled.png │ │ ├── line_horizontal.png │ │ ├── line_horizontal@2x.png │ │ ├── line_horizontal_disabled.png │ │ ├── line_horizontal_disabled@2x.png │ │ ├── line_horizontal_focus.png │ │ ├── line_horizontal_focus@2x.png │ │ ├── line_horizontal_pressed.png │ │ ├── line_horizontal_pressed@2x.png │ │ ├── line_vertical.png │ │ ├── line_vertical@2x.png │ │ ├── line_vertical_disabled.png │ │ ├── line_vertical_disabled@2x.png │ │ ├── line_vertical_focus.png │ │ ├── line_vertical_focus@2x.png │ │ ├── line_vertical_pressed.png │ │ ├── line_vertical_pressed@2x.png │ │ ├── radio_checked.png │ │ ├── radio_checked@2x.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_disabled@2x.png │ │ ├── radio_checked_focus.png │ │ ├── radio_checked_focus@2x.png │ │ ├── radio_checked_pressed.png │ │ ├── radio_checked_pressed@2x.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked@2x.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_disabled@2x.png │ │ ├── radio_unchecked_focus.png │ │ ├── radio_unchecked_focus@2x.png │ │ ├── radio_unchecked_pressed.png │ │ ├── radio_unchecked_pressed@2x.png │ │ ├── right_arrow.png │ │ ├── right_arrow_disabled.png │ │ ├── sizegrip.png │ │ ├── stylesheet-branch-end.png │ │ ├── stylesheet-branch-more.png │ │ ├── stylesheet-vline.png │ │ ├── toolbar_move_horizontal.png │ │ ├── toolbar_move_horizontal@2x.png │ │ ├── toolbar_move_horizontal_disabled.png │ │ ├── toolbar_move_horizontal_disabled@2x.png │ │ ├── toolbar_move_horizontal_focus.png │ │ ├── toolbar_move_horizontal_focus@2x.png │ │ ├── toolbar_move_horizontal_pressed.png │ │ ├── toolbar_move_horizontal_pressed@2x.png │ │ ├── toolbar_move_vertical.png │ │ ├── toolbar_move_vertical@2x.png │ │ ├── toolbar_move_vertical_disabled.png │ │ ├── toolbar_move_vertical_disabled@2x.png │ │ ├── toolbar_move_vertical_focus.png │ │ ├── toolbar_move_vertical_focus@2x.png │ │ ├── toolbar_move_vertical_pressed.png │ │ ├── toolbar_move_vertical_pressed@2x.png │ │ ├── toolbar_separator_horizontal.png │ │ ├── toolbar_separator_horizontal@2x.png │ │ ├── toolbar_separator_horizontal_disabled.png │ │ ├── toolbar_separator_horizontal_disabled@2x.png │ │ ├── toolbar_separator_horizontal_focus.png │ │ ├── toolbar_separator_horizontal_focus@2x.png │ │ ├── toolbar_separator_horizontal_pressed.png │ │ ├── toolbar_separator_horizontal_pressed@2x.png │ │ ├── toolbar_separator_vertical.png │ │ ├── toolbar_separator_vertical@2x.png │ │ ├── toolbar_separator_vertical_disabled.png │ │ ├── toolbar_separator_vertical_disabled@2x.png │ │ ├── toolbar_separator_vertical_focus.png │ │ ├── toolbar_separator_vertical_focus@2x.png │ │ ├── toolbar_separator_vertical_pressed.png │ │ ├── toolbar_separator_vertical_pressed@2x.png │ │ ├── transparent.png │ │ ├── transparent@2x.png │ │ ├── transparent_disabled.png │ │ ├── transparent_disabled@2x.png │ │ ├── transparent_focus.png │ │ ├── transparent_focus@2x.png │ │ ├── transparent_pressed.png │ │ ├── transparent_pressed@2x.png │ │ ├── undock.png │ │ ├── up_arrow.png │ │ ├── up_arrow_disabled.png │ │ ├── window_close.png │ │ ├── window_close@2x.png │ │ ├── window_close_disabled.png │ │ ├── window_close_disabled@2x.png │ │ ├── window_close_focus.png │ │ ├── window_close_focus@2x.png │ │ ├── window_close_pressed.png │ │ ├── window_close_pressed@2x.png │ │ ├── window_grip.png │ │ ├── window_grip@2x.png │ │ ├── window_grip_disabled.png │ │ ├── window_grip_disabled@2x.png │ │ ├── window_grip_focus.png │ │ ├── window_grip_focus@2x.png │ │ ├── window_grip_pressed.png │ │ ├── window_grip_pressed@2x.png │ │ ├── window_minimize.png │ │ ├── window_minimize@2x.png │ │ ├── window_minimize_disabled.png │ │ ├── window_minimize_disabled@2x.png │ │ ├── window_minimize_focus.png │ │ ├── window_minimize_focus@2x.png │ │ ├── window_minimize_pressed.png │ │ ├── window_minimize_pressed@2x.png │ │ ├── window_undock.png │ │ ├── window_undock@2x.png │ │ ├── window_undock_disabled.png │ │ ├── window_undock_disabled@2x.png │ │ ├── window_undock_focus.png │ │ ├── window_undock_focus@2x.png │ │ ├── window_undock_pressed.png │ │ └── window_undock_pressed@2x.png │ │ ├── style.qrc │ │ └── style.qss ├── yuzu.bmp ├── yuzu.icns ├── yuzu.ico ├── yuzu.manifest └── yuzu.svg ├── externals ├── CMakeLists.txt ├── FidelityFX-FSR │ ├── ffx-fsr │ │ ├── ffx_a.h │ │ └── ffx_fsr1.h │ └── license.txt ├── bc_decoder │ ├── bc_decoder.cpp │ └── bc_decoder.h ├── cmake-modules │ ├── GetGitRevisionDescription.cmake │ └── GetGitRevisionDescription.cmake.in ├── demangle │ ├── ItaniumDemangle.cpp │ └── llvm │ │ └── Demangle │ │ ├── Demangle.h │ │ ├── DemangleConfig.h │ │ ├── ItaniumDemangle.h │ │ ├── ItaniumNodes.def │ │ ├── StringView.h │ │ ├── StringViewExtras.h │ │ └── Utility.h ├── ffmpeg │ └── CMakeLists.txt ├── gamemode │ └── gamemode_client.h ├── getopt │ ├── CMakeLists.txt │ ├── getopt.c │ └── getopt.h ├── glad │ ├── CMakeLists.txt │ ├── Readme.md │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c ├── libusb │ ├── CMakeLists.txt │ └── config.h.in ├── microprofile │ ├── README.md │ ├── microprofile.h │ ├── microprofile_html.h │ └── microprofileui.h ├── nx_tzdb │ ├── CMakeLists.txt │ ├── ListFilesInDirectory.cmake │ ├── NxTzdbCreateHeader.cmake │ ├── include │ │ └── nx_tzdb.h │ └── tzdb_template.h.in ├── renderdoc │ └── renderdoc_app.h ├── sse2neon │ └── sse2neon.h ├── stb │ ├── stb_dxt.cpp │ ├── stb_dxt.h │ ├── stb_image.h │ ├── stb_image_resize.h │ └── stb_image_write.h └── tz │ └── tz │ ├── tz.cpp │ └── tz.h ├── hooks └── pre-commit ├── src ├── .clang-format ├── CMakeLists.txt ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle.kts │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── ea │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_yuzu.xml │ │ │ │ ├── ic_yuzu_full.xml │ │ │ │ └── ic_yuzu_title.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── org │ │ │ │ └── yuzu │ │ │ │ └── yuzu_emu │ │ │ │ ├── NativeLibrary.kt │ │ │ │ ├── YuzuApplication.kt │ │ │ │ ├── activities │ │ │ │ └── EmulationActivity.kt │ │ │ │ ├── adapters │ │ │ │ ├── AbstractDiffAdapter.kt │ │ │ │ ├── AbstractListAdapter.kt │ │ │ │ ├── AbstractSingleSelectionList.kt │ │ │ │ ├── AddonAdapter.kt │ │ │ │ ├── AppletAdapter.kt │ │ │ │ ├── CabinetLauncherDialogAdapter.kt │ │ │ │ ├── DriverAdapter.kt │ │ │ │ ├── FolderAdapter.kt │ │ │ │ ├── GameAdapter.kt │ │ │ │ ├── GamePropertiesAdapter.kt │ │ │ │ ├── HomeSettingAdapter.kt │ │ │ │ ├── InstallableAdapter.kt │ │ │ │ ├── LicenseAdapter.kt │ │ │ │ └── SetupAdapter.kt │ │ │ │ ├── applets │ │ │ │ └── keyboard │ │ │ │ │ ├── SoftwareKeyboard.kt │ │ │ │ │ └── ui │ │ │ │ │ └── KeyboardDialogFragment.kt │ │ │ │ ├── disk_shader_cache │ │ │ │ └── DiskShaderCacheProgress.kt │ │ │ │ ├── features │ │ │ │ ├── DocumentProvider.kt │ │ │ │ ├── input │ │ │ │ │ ├── NativeInput.kt │ │ │ │ │ ├── YuzuInputDevice.kt │ │ │ │ │ ├── YuzuVibrator.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── AnalogDirection.kt │ │ │ │ │ │ ├── ButtonName.kt │ │ │ │ │ │ ├── InputType.kt │ │ │ │ │ │ ├── NativeAnalog.kt │ │ │ │ │ │ ├── NativeButton.kt │ │ │ │ │ │ ├── NativeTrigger.kt │ │ │ │ │ │ ├── NpadStyleIndex.kt │ │ │ │ │ │ └── PlayerInput.kt │ │ │ │ └── settings │ │ │ │ │ ├── model │ │ │ │ │ ├── AbstractBooleanSetting.kt │ │ │ │ │ ├── AbstractByteSetting.kt │ │ │ │ │ ├── AbstractFloatSetting.kt │ │ │ │ │ ├── AbstractIntSetting.kt │ │ │ │ │ ├── AbstractLongSetting.kt │ │ │ │ │ ├── AbstractSetting.kt │ │ │ │ │ ├── AbstractShortSetting.kt │ │ │ │ │ ├── AbstractStringSetting.kt │ │ │ │ │ ├── BooleanSetting.kt │ │ │ │ │ ├── ByteSetting.kt │ │ │ │ │ ├── FloatSetting.kt │ │ │ │ │ ├── IntSetting.kt │ │ │ │ │ ├── LongSetting.kt │ │ │ │ │ ├── Settings.kt │ │ │ │ │ ├── ShortSetting.kt │ │ │ │ │ ├── StringSetting.kt │ │ │ │ │ └── view │ │ │ │ │ │ ├── AnalogInputSetting.kt │ │ │ │ │ │ ├── ButtonInputSetting.kt │ │ │ │ │ │ ├── DateTimeSetting.kt │ │ │ │ │ │ ├── HeaderSetting.kt │ │ │ │ │ │ ├── InputProfileSetting.kt │ │ │ │ │ │ ├── InputSetting.kt │ │ │ │ │ │ ├── IntSingleChoiceSetting.kt │ │ │ │ │ │ ├── ModifierInputSetting.kt │ │ │ │ │ │ ├── RunnableSetting.kt │ │ │ │ │ │ ├── SettingsItem.kt │ │ │ │ │ │ ├── SingleChoiceSetting.kt │ │ │ │ │ │ ├── SliderSetting.kt │ │ │ │ │ │ ├── StringInputSetting.kt │ │ │ │ │ │ ├── StringSingleChoiceSetting.kt │ │ │ │ │ │ ├── SubmenuSetting.kt │ │ │ │ │ │ └── SwitchSetting.kt │ │ │ │ │ ├── ui │ │ │ │ │ ├── InputDialogFragment.kt │ │ │ │ │ ├── InputProfileAdapter.kt │ │ │ │ │ ├── InputProfileDialogFragment.kt │ │ │ │ │ ├── NewInputProfileDialogFragment.kt │ │ │ │ │ ├── SettingsActivity.kt │ │ │ │ │ ├── SettingsAdapter.kt │ │ │ │ │ ├── SettingsDialogFragment.kt │ │ │ │ │ ├── SettingsFragment.kt │ │ │ │ │ ├── SettingsFragmentPresenter.kt │ │ │ │ │ ├── SettingsSearchFragment.kt │ │ │ │ │ ├── SettingsViewModel.kt │ │ │ │ │ └── viewholder │ │ │ │ │ │ ├── DateTimeViewHolder.kt │ │ │ │ │ │ ├── HeaderViewHolder.kt │ │ │ │ │ │ ├── InputProfileViewHolder.kt │ │ │ │ │ │ ├── InputViewHolder.kt │ │ │ │ │ │ ├── RunnableViewHolder.kt │ │ │ │ │ │ ├── SettingViewHolder.kt │ │ │ │ │ │ ├── SingleChoiceViewHolder.kt │ │ │ │ │ │ ├── SliderViewHolder.kt │ │ │ │ │ │ ├── StringInputViewHolder.kt │ │ │ │ │ │ ├── SubmenuViewHolder.kt │ │ │ │ │ │ └── SwitchSettingViewHolder.kt │ │ │ │ │ └── utils │ │ │ │ │ └── SettingsFile.kt │ │ │ │ ├── fragments │ │ │ │ ├── AboutFragment.kt │ │ │ │ ├── AddGameFolderDialogFragment.kt │ │ │ │ ├── AddonsFragment.kt │ │ │ │ ├── AppletLauncherFragment.kt │ │ │ │ ├── CabinetLauncherDialogFragment.kt │ │ │ │ ├── ContentTypeSelectionDialogFragment.kt │ │ │ │ ├── CoreErrorDialogFragment.kt │ │ │ │ ├── DriverManagerFragment.kt │ │ │ │ ├── DriversLoadingDialogFragment.kt │ │ │ │ ├── EarlyAccessFragment.kt │ │ │ │ ├── EmulationFragment.kt │ │ │ │ ├── GameFolderPropertiesDialogFragment.kt │ │ │ │ ├── GameFoldersFragment.kt │ │ │ │ ├── GameInfoFragment.kt │ │ │ │ ├── GamePropertiesFragment.kt │ │ │ │ ├── HomeSettingsFragment.kt │ │ │ │ ├── InstallableFragment.kt │ │ │ │ ├── LaunchGameDialogFragment.kt │ │ │ │ ├── LicenseBottomSheetDialogFragment.kt │ │ │ │ ├── LicensesFragment.kt │ │ │ │ ├── MessageDialogFragment.kt │ │ │ │ ├── PermissionDeniedDialogFragment.kt │ │ │ │ ├── ProgressDialogFragment.kt │ │ │ │ ├── ResetSettingsDialogFragment.kt │ │ │ │ ├── SearchFragment.kt │ │ │ │ ├── SetupFragment.kt │ │ │ │ └── SetupWarningDialogFragment.kt │ │ │ │ ├── layout │ │ │ │ └── AutofitGridLayoutManager.kt │ │ │ │ ├── model │ │ │ │ ├── AddonViewModel.kt │ │ │ │ ├── Applet.kt │ │ │ │ ├── Driver.kt │ │ │ │ ├── DriverViewModel.kt │ │ │ │ ├── EmulationViewModel.kt │ │ │ │ ├── Game.kt │ │ │ │ ├── GameDir.kt │ │ │ │ ├── GameProperties.kt │ │ │ │ ├── GameVerificationResult.kt │ │ │ │ ├── GamesViewModel.kt │ │ │ │ ├── HomeSetting.kt │ │ │ │ ├── HomeViewModel.kt │ │ │ │ ├── InstallResult.kt │ │ │ │ ├── Installable.kt │ │ │ │ ├── License.kt │ │ │ │ ├── MessageDialogViewModel.kt │ │ │ │ ├── MinimalDocumentFile.kt │ │ │ │ ├── Patch.kt │ │ │ │ ├── PatchType.kt │ │ │ │ ├── SelectableItem.kt │ │ │ │ ├── SetupPage.kt │ │ │ │ └── TaskViewModel.kt │ │ │ │ ├── overlay │ │ │ │ ├── InputOverlay.kt │ │ │ │ ├── InputOverlayDrawableButton.kt │ │ │ │ ├── InputOverlayDrawableDpad.kt │ │ │ │ ├── InputOverlayDrawableJoystick.kt │ │ │ │ └── model │ │ │ │ │ ├── OverlayControl.kt │ │ │ │ │ ├── OverlayControlData.kt │ │ │ │ │ ├── OverlayControlDefault.kt │ │ │ │ │ └── OverlayLayout.kt │ │ │ │ ├── ui │ │ │ │ ├── GamesFragment.kt │ │ │ │ └── main │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ThemeProvider.kt │ │ │ │ ├── utils │ │ │ │ ├── AddonUtil.kt │ │ │ │ ├── DirectoryInitialization.kt │ │ │ │ ├── DocumentsTree.kt │ │ │ │ ├── FileUtil.kt │ │ │ │ ├── GameHelper.kt │ │ │ │ ├── GameIconUtils.kt │ │ │ │ ├── GameMetadata.kt │ │ │ │ ├── GpuDriverHelper.kt │ │ │ │ ├── GpuDriverMetadata.kt │ │ │ │ ├── InputHandler.kt │ │ │ │ ├── InsetsHelper.kt │ │ │ │ ├── LifecycleUtils.kt │ │ │ │ ├── Log.kt │ │ │ │ ├── MemoryUtil.kt │ │ │ │ ├── NativeConfig.kt │ │ │ │ ├── NfcReader.kt │ │ │ │ ├── ParamPackage.kt │ │ │ │ ├── PreferenceUtil.kt │ │ │ │ ├── SerializableHelper.kt │ │ │ │ ├── ThemeHelper.kt │ │ │ │ └── ViewUtils.kt │ │ │ │ ├── viewholder │ │ │ │ └── AbstractViewHolder.kt │ │ │ │ └── views │ │ │ │ └── FixedRatioSurfaceView.kt │ │ │ ├── jni │ │ │ ├── CMakeLists.txt │ │ │ ├── android_config.cpp │ │ │ ├── android_config.h │ │ │ ├── android_settings.cpp │ │ │ ├── android_settings.h │ │ │ ├── emu_window │ │ │ │ ├── emu_window.cpp │ │ │ │ └── emu_window.h │ │ │ ├── game_metadata.cpp │ │ │ ├── native.cpp │ │ │ ├── native.h │ │ │ ├── native_config.cpp │ │ │ ├── native_input.cpp │ │ │ └── native_log.cpp │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_stat_notification_logo.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_stat_notification_logo.png │ │ │ └── tv_banner.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_stat_notification_logo.png │ │ │ ├── drawable │ │ │ ├── button_anim.xml │ │ │ ├── button_l3.xml │ │ │ ├── button_l3_depressed.xml │ │ │ ├── button_r3.xml │ │ │ ├── button_r3_depressed.xml │ │ │ ├── default_icon.jpg │ │ │ ├── dpad_standard.xml │ │ │ ├── dpad_standard_cardinal_depressed.xml │ │ │ ├── dpad_standard_diagonal_depressed.xml │ │ │ ├── facebutton_a.xml │ │ │ ├── facebutton_a_depressed.xml │ │ │ ├── facebutton_b.xml │ │ │ ├── facebutton_b_depressed.xml │ │ │ ├── facebutton_home.xml │ │ │ ├── facebutton_home_depressed.xml │ │ │ ├── facebutton_minus.xml │ │ │ ├── facebutton_minus_depressed.xml │ │ │ ├── facebutton_plus.xml │ │ │ ├── facebutton_plus_depressed.xml │ │ │ ├── facebutton_screenshot.xml │ │ │ ├── facebutton_screenshot_depressed.xml │ │ │ ├── facebutton_x.xml │ │ │ ├── facebutton_x_depressed.xml │ │ │ ├── facebutton_y.xml │ │ │ ├── facebutton_y_depressed.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_album.xml │ │ │ ├── ic_applet.xml │ │ │ ├── ic_arrow_forward.xml │ │ │ ├── ic_audio.xml │ │ │ ├── ic_back.xml │ │ │ ├── ic_build.xml │ │ │ ├── ic_cartridge.xml │ │ │ ├── ic_cartridge_outline.xml │ │ │ ├── ic_check.xml │ │ │ ├── ic_check_circle.xml │ │ │ ├── ic_clear.xml │ │ │ ├── ic_code.xml │ │ │ ├── ic_controller.xml │ │ │ ├── ic_controller_disconnected.xml │ │ │ ├── ic_delete.xml │ │ │ ├── ic_diamond.xml │ │ │ ├── ic_discord.xml │ │ │ ├── ic_edit.xml │ │ │ ├── ic_exit.xml │ │ │ ├── ic_export.xml │ │ │ ├── ic_firmware.xml │ │ │ ├── ic_folder_open.xml │ │ │ ├── ic_github.xml │ │ │ ├── ic_graphics.xml │ │ │ ├── ic_icon_bg.xml │ │ │ ├── ic_import.xml │ │ │ ├── ic_info_outline.xml │ │ │ ├── ic_install.xml │ │ │ ├── ic_key.xml │ │ │ ├── ic_launcher.xml │ │ │ ├── ic_lock.xml │ │ │ ├── ic_log.xml │ │ │ ├── ic_mii.xml │ │ │ ├── ic_more_vert.xml │ │ │ ├── ic_new_label.xml │ │ │ ├── ic_nfc.xml │ │ │ ├── ic_notification.xml │ │ │ ├── ic_options.xml │ │ │ ├── ic_overlay.xml │ │ │ ├── ic_palette.xml │ │ │ ├── ic_pause.xml │ │ │ ├── ic_pip_mute.xml │ │ │ ├── ic_pip_pause.xml │ │ │ ├── ic_pip_play.xml │ │ │ ├── ic_pip_unmute.xml │ │ │ ├── ic_play.xml │ │ │ ├── ic_refresh.xml │ │ │ ├── ic_restore.xml │ │ │ ├── ic_save.xml │ │ │ ├── ic_search.xml │ │ │ ├── ic_settings.xml │ │ │ ├── ic_settings_outline.xml │ │ │ ├── ic_share.xml │ │ │ ├── ic_shortcut.xml │ │ │ ├── ic_system_settings.xml │ │ │ ├── ic_system_update_alt.xml │ │ │ ├── ic_unlock.xml │ │ │ ├── ic_website.xml │ │ │ ├── ic_yuzu.xml │ │ │ ├── ic_yuzu_full.xml │ │ │ ├── ic_yuzu_title.xml │ │ │ ├── joystick.xml │ │ │ ├── joystick_depressed.xml │ │ │ ├── joystick_range.xml │ │ │ ├── l_shoulder.xml │ │ │ ├── l_shoulder_depressed.xml │ │ │ ├── premium_background.xml │ │ │ ├── r_shoulder.xml │ │ │ ├── r_shoulder_depressed.xml │ │ │ ├── selector_cartridge.xml │ │ │ ├── selector_settings.xml │ │ │ ├── shortcut.xml │ │ │ ├── stick_one_direction_anim.xml │ │ │ ├── stick_two_direction_anim.xml │ │ │ ├── zl_trigger.xml │ │ │ ├── zl_trigger_depressed.xml │ │ │ ├── zr_trigger.xml │ │ │ └── zr_trigger_depressed.xml │ │ │ ├── layout-ldrtl │ │ │ └── list_item_setting_input.xml │ │ │ ├── layout-w1000dp │ │ │ └── card_installable_icon.xml │ │ │ ├── layout-w600dp │ │ │ ├── activity_main.xml │ │ │ ├── fragment_about.xml │ │ │ ├── fragment_game_info.xml │ │ │ ├── fragment_game_properties.xml │ │ │ ├── fragment_setup.xml │ │ │ └── page_setup.xml │ │ │ ├── layout │ │ │ ├── activity_emulation.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_settings.xml │ │ │ ├── card_driver_option.xml │ │ │ ├── card_folder.xml │ │ │ ├── card_game.xml │ │ │ ├── card_home_option.xml │ │ │ ├── card_installable.xml │ │ │ ├── card_installable_icon.xml │ │ │ ├── card_simple_outlined.xml │ │ │ ├── dialog_add_folder.xml │ │ │ ├── dialog_edit_text.xml │ │ │ ├── dialog_folder_properties.xml │ │ │ ├── dialog_input_profiles.xml │ │ │ ├── dialog_license.xml │ │ │ ├── dialog_list.xml │ │ │ ├── dialog_list_item.xml │ │ │ ├── dialog_mapping.xml │ │ │ ├── dialog_overlay_adjust.xml │ │ │ ├── dialog_progress_bar.xml │ │ │ ├── dialog_slider.xml │ │ │ ├── fragment_about.xml │ │ │ ├── fragment_addons.xml │ │ │ ├── fragment_applet_launcher.xml │ │ │ ├── fragment_driver_manager.xml │ │ │ ├── fragment_early_access.xml │ │ │ ├── fragment_emulation.xml │ │ │ ├── fragment_folders.xml │ │ │ ├── fragment_game_info.xml │ │ │ ├── fragment_game_properties.xml │ │ │ ├── fragment_games.xml │ │ │ ├── fragment_home_settings.xml │ │ │ ├── fragment_installables.xml │ │ │ ├── fragment_licenses.xml │ │ │ ├── fragment_search.xml │ │ │ ├── fragment_settings.xml │ │ │ ├── fragment_settings_search.xml │ │ │ ├── fragment_setup.xml │ │ │ ├── header_in_game.xml │ │ │ ├── list_item_addon.xml │ │ │ ├── list_item_input_profile.xml │ │ │ ├── list_item_setting.xml │ │ │ ├── list_item_setting_input.xml │ │ │ ├── list_item_setting_switch.xml │ │ │ ├── list_item_settings_header.xml │ │ │ └── page_setup.xml │ │ │ ├── menu-w600dp │ │ │ └── menu_navigation.xml │ │ │ ├── menu │ │ │ ├── menu_driver_manager.xml │ │ │ ├── menu_in_game.xml │ │ │ ├── menu_input_options.xml │ │ │ ├── menu_navigation.xml │ │ │ ├── menu_overlay_options.xml │ │ │ └── menu_settings.xml │ │ │ ├── navigation │ │ │ ├── emulation_navigation.xml │ │ │ ├── home_navigation.xml │ │ │ └── settings_navigation.xml │ │ │ ├── resources.properties │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-ckb │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-he │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-id │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-night-v31 │ │ │ └── themes.xml │ │ │ ├── values-night │ │ │ ├── themes.xml │ │ │ └── yuzu_colors.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-v31 │ │ │ └── themes.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-w600dp │ │ │ ├── bools.xml │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values │ │ │ ├── arrays.xml │ │ │ ├── bools.xml │ │ │ ├── dimens.xml │ │ │ ├── integers.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ ├── themes.xml │ │ │ └── yuzu_colors.xml │ │ │ └── xml │ │ │ ├── data_extraction_rules.xml │ │ │ ├── data_extraction_rules_api_31.xml │ │ │ ├── game_mode_config.xml │ │ │ └── nfc_tech_filter.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── audio_core │ ├── CMakeLists.txt │ ├── adsp │ │ ├── adsp.cpp │ │ ├── adsp.h │ │ ├── apps │ │ │ ├── audio_renderer │ │ │ │ ├── audio_renderer.cpp │ │ │ │ ├── audio_renderer.h │ │ │ │ ├── command_buffer.h │ │ │ │ ├── command_list_processor.cpp │ │ │ │ └── command_list_processor.h │ │ │ └── opus │ │ │ │ ├── opus_decode_object.cpp │ │ │ │ ├── opus_decode_object.h │ │ │ │ ├── opus_decoder.cpp │ │ │ │ ├── opus_decoder.h │ │ │ │ ├── opus_multistream_decode_object.cpp │ │ │ │ ├── opus_multistream_decode_object.h │ │ │ │ └── shared_memory.h │ │ └── mailbox.h │ ├── audio_core.cpp │ ├── audio_core.h │ ├── audio_event.cpp │ ├── audio_event.h │ ├── audio_in_manager.cpp │ ├── audio_in_manager.h │ ├── audio_manager.cpp │ ├── audio_manager.h │ ├── audio_out_manager.cpp │ ├── audio_out_manager.h │ ├── audio_render_manager.cpp │ ├── audio_render_manager.h │ ├── common │ │ ├── audio_renderer_parameter.h │ │ ├── common.h │ │ ├── feature_support.h │ │ ├── wave_buffer.h │ │ └── workbuffer_allocator.h │ ├── device │ │ ├── audio_buffer.h │ │ ├── audio_buffers.h │ │ ├── device_session.cpp │ │ └── device_session.h │ ├── in │ │ ├── audio_in.cpp │ │ ├── audio_in.h │ │ ├── audio_in_system.cpp │ │ └── audio_in_system.h │ ├── opus │ │ ├── decoder.cpp │ │ ├── decoder.h │ │ ├── decoder_manager.cpp │ │ ├── decoder_manager.h │ │ ├── hardware_opus.cpp │ │ ├── hardware_opus.h │ │ └── parameters.h │ ├── out │ │ ├── audio_out.cpp │ │ ├── audio_out.h │ │ ├── audio_out_system.cpp │ │ └── audio_out_system.h │ ├── precompiled_headers.h │ ├── renderer │ │ ├── audio_device.cpp │ │ ├── audio_device.h │ │ ├── audio_renderer.cpp │ │ ├── audio_renderer.h │ │ ├── behavior │ │ │ ├── behavior_info.cpp │ │ │ ├── behavior_info.h │ │ │ ├── info_updater.cpp │ │ │ └── info_updater.h │ │ ├── command │ │ │ ├── command_buffer.cpp │ │ │ ├── command_buffer.h │ │ │ ├── command_generator.cpp │ │ │ ├── command_generator.h │ │ │ ├── command_list_header.h │ │ │ ├── command_processing_time_estimator.cpp │ │ │ ├── command_processing_time_estimator.h │ │ │ ├── commands.h │ │ │ ├── data_source │ │ │ │ ├── adpcm.cpp │ │ │ │ ├── adpcm.h │ │ │ │ ├── decode.cpp │ │ │ │ ├── decode.h │ │ │ │ ├── pcm_float.cpp │ │ │ │ ├── pcm_float.h │ │ │ │ ├── pcm_int16.cpp │ │ │ │ └── pcm_int16.h │ │ │ ├── effect │ │ │ │ ├── aux_.cpp │ │ │ │ ├── aux_.h │ │ │ │ ├── biquad_filter.cpp │ │ │ │ ├── biquad_filter.h │ │ │ │ ├── capture.cpp │ │ │ │ ├── capture.h │ │ │ │ ├── compressor.cpp │ │ │ │ ├── compressor.h │ │ │ │ ├── delay.cpp │ │ │ │ ├── delay.h │ │ │ │ ├── i3dl2_reverb.cpp │ │ │ │ ├── i3dl2_reverb.h │ │ │ │ ├── light_limiter.cpp │ │ │ │ ├── light_limiter.h │ │ │ │ ├── multi_tap_biquad_filter.cpp │ │ │ │ ├── multi_tap_biquad_filter.h │ │ │ │ ├── reverb.cpp │ │ │ │ └── reverb.h │ │ │ ├── icommand.h │ │ │ ├── mix │ │ │ │ ├── clear_mix.cpp │ │ │ │ ├── clear_mix.h │ │ │ │ ├── copy_mix.cpp │ │ │ │ ├── copy_mix.h │ │ │ │ ├── depop_for_mix_buffers.cpp │ │ │ │ ├── depop_for_mix_buffers.h │ │ │ │ ├── depop_prepare.cpp │ │ │ │ ├── depop_prepare.h │ │ │ │ ├── mix.cpp │ │ │ │ ├── mix.h │ │ │ │ ├── mix_ramp.cpp │ │ │ │ ├── mix_ramp.h │ │ │ │ ├── mix_ramp_grouped.cpp │ │ │ │ ├── mix_ramp_grouped.h │ │ │ │ ├── volume.cpp │ │ │ │ ├── volume.h │ │ │ │ ├── volume_ramp.cpp │ │ │ │ └── volume_ramp.h │ │ │ ├── performance │ │ │ │ ├── performance.cpp │ │ │ │ └── performance.h │ │ │ ├── resample │ │ │ │ ├── downmix_6ch_to_2ch.cpp │ │ │ │ ├── downmix_6ch_to_2ch.h │ │ │ │ ├── resample.cpp │ │ │ │ ├── resample.h │ │ │ │ ├── upsample.cpp │ │ │ │ └── upsample.h │ │ │ └── sink │ │ │ │ ├── circular_buffer.cpp │ │ │ │ ├── circular_buffer.h │ │ │ │ ├── device.cpp │ │ │ │ └── device.h │ │ ├── effect │ │ │ ├── aux_.cpp │ │ │ ├── aux_.h │ │ │ ├── biquad_filter.cpp │ │ │ ├── biquad_filter.h │ │ │ ├── buffer_mixer.cpp │ │ │ ├── buffer_mixer.h │ │ │ ├── capture.cpp │ │ │ ├── capture.h │ │ │ ├── compressor.cpp │ │ │ ├── compressor.h │ │ │ ├── delay.cpp │ │ │ ├── delay.h │ │ │ ├── effect_context.cpp │ │ │ ├── effect_context.h │ │ │ ├── effect_info_base.h │ │ │ ├── effect_reset.h │ │ │ ├── effect_result_state.h │ │ │ ├── i3dl2.cpp │ │ │ ├── i3dl2.h │ │ │ ├── light_limiter.cpp │ │ │ ├── light_limiter.h │ │ │ ├── reverb.cpp │ │ │ └── reverb.h │ │ ├── memory │ │ │ ├── address_info.h │ │ │ ├── memory_pool_info.cpp │ │ │ ├── memory_pool_info.h │ │ │ ├── pool_mapper.cpp │ │ │ └── pool_mapper.h │ │ ├── mix │ │ │ ├── mix_context.cpp │ │ │ ├── mix_context.h │ │ │ ├── mix_info.cpp │ │ │ └── mix_info.h │ │ ├── nodes │ │ │ ├── bit_array.h │ │ │ ├── edge_matrix.cpp │ │ │ ├── edge_matrix.h │ │ │ ├── node_states.cpp │ │ │ └── node_states.h │ │ ├── performance │ │ │ ├── detail_aspect.cpp │ │ │ ├── detail_aspect.h │ │ │ ├── entry_aspect.cpp │ │ │ ├── entry_aspect.h │ │ │ ├── performance_detail.h │ │ │ ├── performance_entry.h │ │ │ ├── performance_entry_addresses.h │ │ │ ├── performance_frame_header.h │ │ │ ├── performance_manager.cpp │ │ │ └── performance_manager.h │ │ ├── sink │ │ │ ├── circular_buffer_sink_info.cpp │ │ │ ├── circular_buffer_sink_info.h │ │ │ ├── device_sink_info.cpp │ │ │ ├── device_sink_info.h │ │ │ ├── sink_context.cpp │ │ │ ├── sink_context.h │ │ │ ├── sink_info_base.cpp │ │ │ └── sink_info_base.h │ │ ├── splitter │ │ │ ├── splitter_context.cpp │ │ │ ├── splitter_context.h │ │ │ ├── splitter_destinations_data.cpp │ │ │ ├── splitter_destinations_data.h │ │ │ ├── splitter_info.cpp │ │ │ └── splitter_info.h │ │ ├── system.cpp │ │ ├── system.h │ │ ├── system_manager.cpp │ │ ├── system_manager.h │ │ ├── upsampler │ │ │ ├── upsampler_info.cpp │ │ │ ├── upsampler_info.h │ │ │ ├── upsampler_manager.cpp │ │ │ ├── upsampler_manager.h │ │ │ └── upsampler_state.h │ │ └── voice │ │ │ ├── voice_channel_resource.h │ │ │ ├── voice_context.cpp │ │ │ ├── voice_context.h │ │ │ ├── voice_info.cpp │ │ │ ├── voice_info.h │ │ │ └── voice_state.h │ └── sink │ │ ├── cubeb_sink.cpp │ │ ├── cubeb_sink.h │ │ ├── null_sink.h │ │ ├── oboe_sink.cpp │ │ ├── oboe_sink.h │ │ ├── sdl2_sink.cpp │ │ ├── sdl2_sink.h │ │ ├── sink.h │ │ ├── sink_details.cpp │ │ ├── sink_details.h │ │ ├── sink_stream.cpp │ │ └── sink_stream.h ├── common │ ├── CMakeLists.txt │ ├── address_space.cpp │ ├── address_space.h │ ├── address_space.inc │ ├── algorithm.h │ ├── alignment.h │ ├── android │ │ ├── android_common.cpp │ │ ├── android_common.h │ │ ├── applets │ │ │ ├── software_keyboard.cpp │ │ │ └── software_keyboard.h │ │ ├── id_cache.cpp │ │ └── id_cache.h │ ├── announce_multiplayer_room.h │ ├── arm64 │ │ ├── native_clock.cpp │ │ └── native_clock.h │ ├── assert.cpp │ ├── assert.h │ ├── atomic_helpers.h │ ├── atomic_ops.h │ ├── bit_cast.h │ ├── bit_field.h │ ├── bit_set.h │ ├── bit_util.h │ ├── bounded_threadsafe_queue.h │ ├── cityhash.cpp │ ├── cityhash.h │ ├── common_funcs.h │ ├── common_precompiled_headers.h │ ├── common_types.h │ ├── concepts.h │ ├── container_hash.h │ ├── demangle.cpp │ ├── demangle.h │ ├── detached_tasks.cpp │ ├── detached_tasks.h │ ├── div_ceil.h │ ├── dynamic_library.cpp │ ├── dynamic_library.h │ ├── elf.h │ ├── error.cpp │ ├── error.h │ ├── expected.h │ ├── fiber.cpp │ ├── fiber.h │ ├── fixed_point.h │ ├── free_region_manager.h │ ├── fs │ │ ├── file.cpp │ │ ├── file.h │ │ ├── fs.cpp │ │ ├── fs.h │ │ ├── fs_android.cpp │ │ ├── fs_android.h │ │ ├── fs_paths.h │ │ ├── fs_types.h │ │ ├── fs_util.cpp │ │ ├── fs_util.h │ │ ├── path_util.cpp │ │ └── path_util.h │ ├── hash.h │ ├── heap_tracker.cpp │ ├── heap_tracker.h │ ├── hex_util.cpp │ ├── hex_util.h │ ├── host_memory.cpp │ ├── host_memory.h │ ├── input.h │ ├── intrusive_list.h │ ├── intrusive_red_black_tree.h │ ├── linux │ │ ├── gamemode.cpp │ │ └── gamemode.h │ ├── literals.h │ ├── logging │ │ ├── backend.cpp │ │ ├── backend.h │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── formatter.h │ │ ├── log.h │ │ ├── log_entry.h │ │ ├── text_formatter.cpp │ │ ├── text_formatter.h │ │ └── types.h │ ├── lru_cache.h │ ├── lz4_compression.cpp │ ├── lz4_compression.h │ ├── make_unique_for_overwrite.h │ ├── math_util.h │ ├── memory_detect.cpp │ ├── memory_detect.h │ ├── microprofile.cpp │ ├── microprofile.h │ ├── microprofileui.h │ ├── multi_level_page_table.cpp │ ├── multi_level_page_table.h │ ├── multi_level_page_table.inc │ ├── nvidia_flags.cpp │ ├── nvidia_flags.h │ ├── overflow.h │ ├── page_table.cpp │ ├── page_table.h │ ├── param_package.cpp │ ├── param_package.h │ ├── parent_of_member.h │ ├── point.h │ ├── polyfill_ranges.h │ ├── polyfill_thread.h │ ├── precompiled_headers.h │ ├── quaternion.h │ ├── range_map.h │ ├── range_mutex.h │ ├── range_sets.h │ ├── range_sets.inc │ ├── reader_writer_queue.h │ ├── ring_buffer.h │ ├── scm_rev.cpp.in │ ├── scm_rev.h │ ├── scope_exit.h │ ├── scratch_buffer.h │ ├── settings.cpp │ ├── settings.h │ ├── settings_common.cpp │ ├── settings_common.h │ ├── settings_enums.h │ ├── settings_input.cpp │ ├── settings_input.h │ ├── settings_setting.h │ ├── signal_chain.cpp │ ├── signal_chain.h │ ├── slot_vector.h │ ├── socket_types.h │ ├── spin_lock.cpp │ ├── spin_lock.h │ ├── stb.cpp │ ├── stb.h │ ├── steady_clock.cpp │ ├── steady_clock.h │ ├── stream.cpp │ ├── stream.h │ ├── string_util.cpp │ ├── string_util.h │ ├── swap.h │ ├── telemetry.cpp │ ├── telemetry.h │ ├── thread.cpp │ ├── thread.h │ ├── thread_queue_list.h │ ├── thread_worker.h │ ├── threadsafe_queue.h │ ├── time_zone.cpp │ ├── time_zone.h │ ├── tiny_mt.h │ ├── tree.h │ ├── typed_address.h │ ├── uint128.h │ ├── unique_function.h │ ├── uuid.cpp │ ├── uuid.h │ ├── vector_math.h │ ├── virtual_buffer.cpp │ ├── virtual_buffer.h │ ├── wall_clock.cpp │ ├── wall_clock.h │ ├── windows │ │ ├── timer_resolution.cpp │ │ └── timer_resolution.h │ ├── x64 │ │ ├── cpu_detect.cpp │ │ ├── cpu_detect.h │ │ ├── cpu_wait.cpp │ │ ├── cpu_wait.h │ │ ├── native_clock.cpp │ │ ├── native_clock.h │ │ ├── rdtsc.cpp │ │ ├── rdtsc.h │ │ ├── xbyak_abi.h │ │ └── xbyak_util.h │ ├── zstd_compression.cpp │ └── zstd_compression.h ├── core │ ├── CMakeLists.txt │ ├── arm │ │ ├── arm_interface.cpp │ │ ├── arm_interface.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── dynarmic │ │ │ ├── arm_dynarmic.cpp │ │ │ ├── arm_dynarmic.h │ │ │ ├── arm_dynarmic_32.cpp │ │ │ ├── arm_dynarmic_32.h │ │ │ ├── arm_dynarmic_64.cpp │ │ │ ├── arm_dynarmic_64.h │ │ │ ├── dynarmic_cp15.cpp │ │ │ ├── dynarmic_cp15.h │ │ │ ├── dynarmic_exclusive_monitor.cpp │ │ │ └── dynarmic_exclusive_monitor.h │ │ ├── exclusive_monitor.cpp │ │ ├── exclusive_monitor.h │ │ ├── nce │ │ │ ├── arm_nce.cpp │ │ │ ├── arm_nce.h │ │ │ ├── arm_nce.s │ │ │ ├── arm_nce_asm_definitions.h │ │ │ ├── guest_context.h │ │ │ ├── instructions.h │ │ │ ├── interpreter_visitor.cpp │ │ │ ├── interpreter_visitor.h │ │ │ ├── patcher.cpp │ │ │ ├── patcher.h │ │ │ └── visitor_base.h │ │ ├── symbols.cpp │ │ └── symbols.h │ ├── constants.cpp │ ├── constants.h │ ├── core.cpp │ ├── core.h │ ├── core_timing.cpp │ ├── core_timing.h │ ├── cpu_manager.cpp │ ├── cpu_manager.h │ ├── crypto │ │ ├── aes_util.cpp │ │ ├── aes_util.h │ │ ├── ctr_encryption_layer.cpp │ │ ├── ctr_encryption_layer.h │ │ ├── encryption_layer.cpp │ │ ├── encryption_layer.h │ │ ├── key_manager.cpp │ │ ├── key_manager.h │ │ ├── partition_data_manager.cpp │ │ ├── partition_data_manager.h │ │ ├── sha_util.cpp │ │ ├── sha_util.h │ │ ├── xts_encryption_layer.cpp │ │ └── xts_encryption_layer.h │ ├── debugger │ │ ├── debugger.cpp │ │ ├── debugger.h │ │ ├── debugger_interface.h │ │ ├── gdbstub.cpp │ │ ├── gdbstub.h │ │ ├── gdbstub_arch.cpp │ │ └── gdbstub_arch.h │ ├── device_memory.cpp │ ├── device_memory.h │ ├── device_memory_manager.h │ ├── device_memory_manager.inc │ ├── file_sys │ │ ├── bis_factory.cpp │ │ ├── bis_factory.h │ │ ├── card_image.cpp │ │ ├── card_image.h │ │ ├── common_funcs.h │ │ ├── content_archive.cpp │ │ ├── content_archive.h │ │ ├── control_metadata.cpp │ │ ├── control_metadata.h │ │ ├── errors.h │ │ ├── fs_directory.h │ │ ├── fs_file.h │ │ ├── fs_filesystem.h │ │ ├── fs_memory_management.h │ │ ├── fs_operate_range.h │ │ ├── fs_path.h │ │ ├── fs_path_utility.h │ │ ├── fs_save_data_types.h │ │ ├── fs_string_util.h │ │ ├── fsa │ │ │ ├── fs_i_directory.h │ │ │ ├── fs_i_file.h │ │ │ └── fs_i_filesystem.h │ │ ├── fsmitm_romfsbuild.cpp │ │ ├── fsmitm_romfsbuild.h │ │ ├── fssrv │ │ │ └── fssrv_sf_path.h │ │ ├── fssystem │ │ │ ├── fs_i_storage.h │ │ │ ├── fs_types.h │ │ │ ├── fssystem_aes_ctr_counter_extended_storage.cpp │ │ │ ├── fssystem_aes_ctr_counter_extended_storage.h │ │ │ ├── fssystem_aes_ctr_storage.cpp │ │ │ ├── fssystem_aes_ctr_storage.h │ │ │ ├── fssystem_aes_xts_storage.cpp │ │ │ ├── fssystem_aes_xts_storage.h │ │ │ ├── fssystem_alignment_matching_storage.h │ │ │ ├── fssystem_alignment_matching_storage_impl.cpp │ │ │ ├── fssystem_alignment_matching_storage_impl.h │ │ │ ├── fssystem_bucket_tree.cpp │ │ │ ├── fssystem_bucket_tree.h │ │ │ ├── fssystem_bucket_tree_template_impl.h │ │ │ ├── fssystem_bucket_tree_utils.h │ │ │ ├── fssystem_compressed_storage.h │ │ │ ├── fssystem_compression_common.h │ │ │ ├── fssystem_compression_configuration.cpp │ │ │ ├── fssystem_compression_configuration.h │ │ │ ├── fssystem_crypto_configuration.cpp │ │ │ ├── fssystem_crypto_configuration.h │ │ │ ├── fssystem_hierarchical_integrity_verification_storage.cpp │ │ │ ├── fssystem_hierarchical_integrity_verification_storage.h │ │ │ ├── fssystem_hierarchical_sha256_storage.cpp │ │ │ ├── fssystem_hierarchical_sha256_storage.h │ │ │ ├── fssystem_indirect_storage.cpp │ │ │ ├── fssystem_indirect_storage.h │ │ │ ├── fssystem_integrity_romfs_storage.cpp │ │ │ ├── fssystem_integrity_romfs_storage.h │ │ │ ├── fssystem_integrity_verification_storage.cpp │ │ │ ├── fssystem_integrity_verification_storage.h │ │ │ ├── fssystem_memory_resource_buffer_hold_storage.h │ │ │ ├── fssystem_nca_file_system_driver.cpp │ │ │ ├── fssystem_nca_file_system_driver.h │ │ │ ├── fssystem_nca_header.cpp │ │ │ ├── fssystem_nca_header.h │ │ │ ├── fssystem_nca_reader.cpp │ │ │ ├── fssystem_pooled_buffer.cpp │ │ │ ├── fssystem_pooled_buffer.h │ │ │ ├── fssystem_sparse_storage.cpp │ │ │ ├── fssystem_sparse_storage.h │ │ │ ├── fssystem_switch_storage.h │ │ │ ├── fssystem_utility.cpp │ │ │ └── fssystem_utility.h │ │ ├── ips_layer.cpp │ │ ├── ips_layer.h │ │ ├── kernel_executable.cpp │ │ ├── kernel_executable.h │ │ ├── nca_metadata.cpp │ │ ├── nca_metadata.h │ │ ├── partition_filesystem.cpp │ │ ├── partition_filesystem.h │ │ ├── patch_manager.cpp │ │ ├── patch_manager.h │ │ ├── program_metadata.cpp │ │ ├── program_metadata.h │ │ ├── registered_cache.cpp │ │ ├── registered_cache.h │ │ ├── romfs.cpp │ │ ├── romfs.h │ │ ├── romfs_factory.cpp │ │ ├── romfs_factory.h │ │ ├── savedata_factory.cpp │ │ ├── savedata_factory.h │ │ ├── sdmc_factory.cpp │ │ ├── sdmc_factory.h │ │ ├── submission_package.cpp │ │ ├── submission_package.h │ │ ├── system_archive │ │ │ ├── data │ │ │ │ ├── font_chinese_simplified.cpp │ │ │ │ ├── font_chinese_simplified.h │ │ │ │ ├── font_chinese_traditional.cpp │ │ │ │ ├── font_chinese_traditional.h │ │ │ │ ├── font_extended_chinese_simplified.cpp │ │ │ │ ├── font_extended_chinese_simplified.h │ │ │ │ ├── font_korean.cpp │ │ │ │ ├── font_korean.h │ │ │ │ ├── font_nintendo_extended.cpp │ │ │ │ ├── font_nintendo_extended.h │ │ │ │ ├── font_standard.cpp │ │ │ │ └── font_standard.h │ │ │ ├── mii_model.cpp │ │ │ ├── mii_model.h │ │ │ ├── ng_word.cpp │ │ │ ├── ng_word.h │ │ │ ├── shared_font.cpp │ │ │ ├── shared_font.h │ │ │ ├── system_archive.cpp │ │ │ ├── system_archive.h │ │ │ ├── system_version.cpp │ │ │ ├── system_version.h │ │ │ ├── time_zone_binary.cpp │ │ │ └── time_zone_binary.h │ │ ├── vfs │ │ │ ├── vfs.cpp │ │ │ ├── vfs.h │ │ │ ├── vfs_cached.cpp │ │ │ ├── vfs_cached.h │ │ │ ├── vfs_concat.cpp │ │ │ ├── vfs_concat.h │ │ │ ├── vfs_layered.cpp │ │ │ ├── vfs_layered.h │ │ │ ├── vfs_offset.cpp │ │ │ ├── vfs_offset.h │ │ │ ├── vfs_real.cpp │ │ │ ├── vfs_real.h │ │ │ ├── vfs_static.h │ │ │ ├── vfs_types.h │ │ │ ├── vfs_vector.cpp │ │ │ └── vfs_vector.h │ │ ├── xts_archive.cpp │ │ └── xts_archive.h │ ├── frontend │ │ ├── applets │ │ │ ├── applet.h │ │ │ ├── cabinet.cpp │ │ │ ├── cabinet.h │ │ │ ├── controller.cpp │ │ │ ├── controller.h │ │ │ ├── error.cpp │ │ │ ├── error.h │ │ │ ├── general.cpp │ │ │ ├── general.h │ │ │ ├── mii_edit.cpp │ │ │ ├── mii_edit.h │ │ │ ├── profile_select.cpp │ │ │ ├── profile_select.h │ │ │ ├── software_keyboard.cpp │ │ │ ├── software_keyboard.h │ │ │ ├── web_browser.cpp │ │ │ └── web_browser.h │ │ ├── emu_window.cpp │ │ ├── emu_window.h │ │ ├── framebuffer_layout.cpp │ │ ├── framebuffer_layout.h │ │ └── graphics_context.h │ ├── gpu_dirty_memory_manager.h │ ├── guest_memory.h │ ├── hardware_properties.h │ ├── hle │ │ ├── api_version.h │ │ ├── ipc.h │ │ ├── kernel │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── k_memory_region_device_types.inc │ │ │ ├── board │ │ │ │ └── nintendo │ │ │ │ │ └── nx │ │ │ │ │ ├── k_memory_layout.cpp │ │ │ │ │ ├── k_memory_layout.h │ │ │ │ │ ├── k_memory_region_device_types.inc │ │ │ │ │ ├── k_system_control.cpp │ │ │ │ │ ├── k_system_control.h │ │ │ │ │ └── secure_monitor.h │ │ │ ├── code_set.cpp │ │ │ ├── code_set.h │ │ │ ├── global_scheduler_context.cpp │ │ │ ├── global_scheduler_context.h │ │ │ ├── init │ │ │ │ ├── init_slab_setup.cpp │ │ │ │ └── init_slab_setup.h │ │ │ ├── initial_process.h │ │ │ ├── k_address_arbiter.cpp │ │ │ ├── k_address_arbiter.h │ │ │ ├── k_address_space_info.cpp │ │ │ ├── k_address_space_info.h │ │ │ ├── k_affinity_mask.h │ │ │ ├── k_auto_object.cpp │ │ │ ├── k_auto_object.h │ │ │ ├── k_auto_object_container.cpp │ │ │ ├── k_auto_object_container.h │ │ │ ├── k_capabilities.cpp │ │ │ ├── k_capabilities.h │ │ │ ├── k_class_token.cpp │ │ │ ├── k_class_token.h │ │ │ ├── k_client_port.cpp │ │ │ ├── k_client_port.h │ │ │ ├── k_client_session.cpp │ │ │ ├── k_client_session.h │ │ │ ├── k_code_memory.cpp │ │ │ ├── k_code_memory.h │ │ │ ├── k_condition_variable.cpp │ │ │ ├── k_condition_variable.h │ │ │ ├── k_debug.h │ │ │ ├── k_device_address_space.cpp │ │ │ ├── k_device_address_space.h │ │ │ ├── k_dynamic_page_manager.h │ │ │ ├── k_dynamic_resource_manager.h │ │ │ ├── k_dynamic_slab_heap.h │ │ │ ├── k_event.cpp │ │ │ ├── k_event.h │ │ │ ├── k_event_info.h │ │ │ ├── k_handle_table.cpp │ │ │ ├── k_handle_table.h │ │ │ ├── k_hardware_timer.cpp │ │ │ ├── k_hardware_timer.h │ │ │ ├── k_hardware_timer_base.h │ │ │ ├── k_interrupt_manager.cpp │ │ │ ├── k_interrupt_manager.h │ │ │ ├── k_light_client_session.cpp │ │ │ ├── k_light_client_session.h │ │ │ ├── k_light_condition_variable.cpp │ │ │ ├── k_light_condition_variable.h │ │ │ ├── k_light_lock.cpp │ │ │ ├── k_light_lock.h │ │ │ ├── k_light_server_session.cpp │ │ │ ├── k_light_server_session.h │ │ │ ├── k_light_session.cpp │ │ │ ├── k_light_session.h │ │ │ ├── k_memory_block.h │ │ │ ├── k_memory_block_manager.cpp │ │ │ ├── k_memory_block_manager.h │ │ │ ├── k_memory_layout.cpp │ │ │ ├── k_memory_layout.h │ │ │ ├── k_memory_manager.cpp │ │ │ ├── k_memory_manager.h │ │ │ ├── k_memory_region.h │ │ │ ├── k_memory_region_type.h │ │ │ ├── k_object_name.cpp │ │ │ ├── k_object_name.h │ │ │ ├── k_page_bitmap.h │ │ │ ├── k_page_buffer.cpp │ │ │ ├── k_page_buffer.h │ │ │ ├── k_page_group.cpp │ │ │ ├── k_page_group.h │ │ │ ├── k_page_heap.cpp │ │ │ ├── k_page_heap.h │ │ │ ├── k_page_table.h │ │ │ ├── k_page_table_base.cpp │ │ │ ├── k_page_table_base.h │ │ │ ├── k_page_table_manager.h │ │ │ ├── k_page_table_slab_heap.h │ │ │ ├── k_port.cpp │ │ │ ├── k_port.h │ │ │ ├── k_priority_queue.h │ │ │ ├── k_process.cpp │ │ │ ├── k_process.h │ │ │ ├── k_process_page_table.h │ │ │ ├── k_readable_event.cpp │ │ │ ├── k_readable_event.h │ │ │ ├── k_resource_limit.cpp │ │ │ ├── k_resource_limit.h │ │ │ ├── k_scheduler.cpp │ │ │ ├── k_scheduler.h │ │ │ ├── k_scheduler_lock.h │ │ │ ├── k_scoped_lock.h │ │ │ ├── k_scoped_resource_reservation.h │ │ │ ├── k_scoped_scheduler_lock_and_sleep.h │ │ │ ├── k_server_port.cpp │ │ │ ├── k_server_port.h │ │ │ ├── k_server_session.cpp │ │ │ ├── k_server_session.h │ │ │ ├── k_session.cpp │ │ │ ├── k_session.h │ │ │ ├── k_session_request.cpp │ │ │ ├── k_session_request.h │ │ │ ├── k_shared_memory.cpp │ │ │ ├── k_shared_memory.h │ │ │ ├── k_shared_memory_info.h │ │ │ ├── k_slab_heap.h │ │ │ ├── k_spin_lock.cpp │ │ │ ├── k_spin_lock.h │ │ │ ├── k_synchronization_object.cpp │ │ │ ├── k_synchronization_object.h │ │ │ ├── k_system_control.h │ │ │ ├── k_system_resource.cpp │ │ │ ├── k_system_resource.h │ │ │ ├── k_thread.cpp │ │ │ ├── k_thread.h │ │ │ ├── k_thread_local_page.cpp │ │ │ ├── k_thread_local_page.h │ │ │ ├── k_thread_queue.cpp │ │ │ ├── k_thread_queue.h │ │ │ ├── k_timer_task.h │ │ │ ├── k_trace.h │ │ │ ├── k_transfer_memory.cpp │ │ │ ├── k_transfer_memory.h │ │ │ ├── k_typed_address.h │ │ │ ├── k_worker_task.h │ │ │ ├── k_worker_task_manager.cpp │ │ │ ├── k_worker_task_manager.h │ │ │ ├── kernel.cpp │ │ │ ├── kernel.h │ │ │ ├── memory_types.h │ │ │ ├── message_buffer.h │ │ │ ├── physical_core.cpp │ │ │ ├── physical_core.h │ │ │ ├── physical_memory.h │ │ │ ├── slab_helpers.h │ │ │ ├── svc.cpp │ │ │ ├── svc.h │ │ │ ├── svc │ │ │ │ ├── svc_activity.cpp │ │ │ │ ├── svc_address_arbiter.cpp │ │ │ │ ├── svc_address_translation.cpp │ │ │ │ ├── svc_cache.cpp │ │ │ │ ├── svc_code_memory.cpp │ │ │ │ ├── svc_condition_variable.cpp │ │ │ │ ├── svc_debug.cpp │ │ │ │ ├── svc_debug_string.cpp │ │ │ │ ├── svc_device_address_space.cpp │ │ │ │ ├── svc_event.cpp │ │ │ │ ├── svc_exception.cpp │ │ │ │ ├── svc_info.cpp │ │ │ │ ├── svc_insecure_memory.cpp │ │ │ │ ├── svc_interrupt_event.cpp │ │ │ │ ├── svc_io_pool.cpp │ │ │ │ ├── svc_ipc.cpp │ │ │ │ ├── svc_kernel_debug.cpp │ │ │ │ ├── svc_light_ipc.cpp │ │ │ │ ├── svc_lock.cpp │ │ │ │ ├── svc_memory.cpp │ │ │ │ ├── svc_physical_memory.cpp │ │ │ │ ├── svc_port.cpp │ │ │ │ ├── svc_power_management.cpp │ │ │ │ ├── svc_process.cpp │ │ │ │ ├── svc_process_memory.cpp │ │ │ │ ├── svc_processor.cpp │ │ │ │ ├── svc_query_memory.cpp │ │ │ │ ├── svc_register.cpp │ │ │ │ ├── svc_resource_limit.cpp │ │ │ │ ├── svc_secure_monitor_call.cpp │ │ │ │ ├── svc_session.cpp │ │ │ │ ├── svc_shared_memory.cpp │ │ │ │ ├── svc_synchronization.cpp │ │ │ │ ├── svc_thread.cpp │ │ │ │ ├── svc_thread_profiler.cpp │ │ │ │ ├── svc_tick.cpp │ │ │ │ └── svc_transfer_memory.cpp │ │ │ ├── svc_common.h │ │ │ ├── svc_generator.py │ │ │ ├── svc_results.h │ │ │ ├── svc_types.h │ │ │ └── svc_version.h │ │ ├── result.h │ │ └── service │ │ │ ├── acc │ │ │ ├── acc.cpp │ │ │ ├── acc.h │ │ │ ├── acc_aa.cpp │ │ │ ├── acc_aa.h │ │ │ ├── acc_su.cpp │ │ │ ├── acc_su.h │ │ │ ├── acc_u0.cpp │ │ │ ├── acc_u0.h │ │ │ ├── acc_u1.cpp │ │ │ ├── acc_u1.h │ │ │ ├── async_context.cpp │ │ │ ├── async_context.h │ │ │ ├── errors.h │ │ │ ├── profile_manager.cpp │ │ │ └── profile_manager.h │ │ │ ├── am │ │ │ ├── am.cpp │ │ │ ├── am.h │ │ │ ├── am_results.h │ │ │ ├── am_types.h │ │ │ ├── applet.cpp │ │ │ ├── applet.h │ │ │ ├── applet_data_broker.cpp │ │ │ ├── applet_data_broker.h │ │ │ ├── applet_manager.cpp │ │ │ ├── applet_manager.h │ │ │ ├── button_poller.cpp │ │ │ ├── button_poller.h │ │ │ ├── display_layer_manager.cpp │ │ │ ├── display_layer_manager.h │ │ │ ├── event_observer.cpp │ │ │ ├── event_observer.h │ │ │ ├── frontend │ │ │ │ ├── applet_cabinet.cpp │ │ │ │ ├── applet_cabinet.h │ │ │ │ ├── applet_controller.cpp │ │ │ │ ├── applet_controller.h │ │ │ │ ├── applet_error.cpp │ │ │ │ ├── applet_error.h │ │ │ │ ├── applet_general.cpp │ │ │ │ ├── applet_general.h │ │ │ │ ├── applet_mii_edit.cpp │ │ │ │ ├── applet_mii_edit.h │ │ │ │ ├── applet_mii_edit_types.h │ │ │ │ ├── applet_profile_select.cpp │ │ │ │ ├── applet_profile_select.h │ │ │ │ ├── applet_software_keyboard.cpp │ │ │ │ ├── applet_software_keyboard.h │ │ │ │ ├── applet_software_keyboard_types.h │ │ │ │ ├── applet_web_browser.cpp │ │ │ │ ├── applet_web_browser.h │ │ │ │ ├── applet_web_browser_types.h │ │ │ │ ├── applets.cpp │ │ │ │ └── applets.h │ │ │ ├── hid_registration.cpp │ │ │ ├── hid_registration.h │ │ │ ├── library_applet_storage.cpp │ │ │ ├── library_applet_storage.h │ │ │ ├── lifecycle_manager.cpp │ │ │ ├── lifecycle_manager.h │ │ │ ├── process_creation.cpp │ │ │ ├── process_creation.h │ │ │ ├── process_holder.cpp │ │ │ ├── process_holder.h │ │ │ ├── service │ │ │ │ ├── all_system_applet_proxies_service.cpp │ │ │ │ ├── all_system_applet_proxies_service.h │ │ │ │ ├── applet_common_functions.cpp │ │ │ │ ├── applet_common_functions.h │ │ │ │ ├── application_accessor.cpp │ │ │ │ ├── application_accessor.h │ │ │ │ ├── application_creator.cpp │ │ │ │ ├── application_creator.h │ │ │ │ ├── application_functions.cpp │ │ │ │ ├── application_functions.h │ │ │ │ ├── application_proxy.cpp │ │ │ │ ├── application_proxy.h │ │ │ │ ├── application_proxy_service.cpp │ │ │ │ ├── application_proxy_service.h │ │ │ │ ├── audio_controller.cpp │ │ │ │ ├── audio_controller.h │ │ │ │ ├── common_state_getter.cpp │ │ │ │ ├── common_state_getter.h │ │ │ │ ├── cradle_firmware_updater.cpp │ │ │ │ ├── cradle_firmware_updater.h │ │ │ │ ├── debug_functions.cpp │ │ │ │ ├── debug_functions.h │ │ │ │ ├── display_controller.cpp │ │ │ │ ├── display_controller.h │ │ │ │ ├── global_state_controller.cpp │ │ │ │ ├── global_state_controller.h │ │ │ │ ├── home_menu_functions.cpp │ │ │ │ ├── home_menu_functions.h │ │ │ │ ├── library_applet_accessor.cpp │ │ │ │ ├── library_applet_accessor.h │ │ │ │ ├── library_applet_creator.cpp │ │ │ │ ├── library_applet_creator.h │ │ │ │ ├── library_applet_proxy.cpp │ │ │ │ ├── library_applet_proxy.h │ │ │ │ ├── library_applet_self_accessor.cpp │ │ │ │ ├── library_applet_self_accessor.h │ │ │ │ ├── lock_accessor.cpp │ │ │ │ ├── lock_accessor.h │ │ │ │ ├── process_winding_controller.cpp │ │ │ │ ├── process_winding_controller.h │ │ │ │ ├── self_controller.cpp │ │ │ │ ├── self_controller.h │ │ │ │ ├── storage.cpp │ │ │ │ ├── storage.h │ │ │ │ ├── storage_accessor.cpp │ │ │ │ ├── storage_accessor.h │ │ │ │ ├── system_applet_proxy.cpp │ │ │ │ ├── system_applet_proxy.h │ │ │ │ ├── window_controller.cpp │ │ │ │ └── window_controller.h │ │ │ ├── window_system.cpp │ │ │ └── window_system.h │ │ │ ├── aoc │ │ │ ├── addon_content_manager.cpp │ │ │ ├── addon_content_manager.h │ │ │ ├── purchase_event_manager.cpp │ │ │ └── purchase_event_manager.h │ │ │ ├── apm │ │ │ ├── apm.cpp │ │ │ ├── apm.h │ │ │ ├── apm_controller.cpp │ │ │ ├── apm_controller.h │ │ │ ├── apm_interface.cpp │ │ │ └── apm_interface.h │ │ │ ├── audio │ │ │ ├── audio.cpp │ │ │ ├── audio.h │ │ │ ├── audio_controller.cpp │ │ │ ├── audio_controller.h │ │ │ ├── audio_device.cpp │ │ │ ├── audio_device.h │ │ │ ├── audio_in.cpp │ │ │ ├── audio_in.h │ │ │ ├── audio_in_manager.cpp │ │ │ ├── audio_in_manager.h │ │ │ ├── audio_out.cpp │ │ │ ├── audio_out.h │ │ │ ├── audio_out_manager.cpp │ │ │ ├── audio_out_manager.h │ │ │ ├── audio_renderer.cpp │ │ │ ├── audio_renderer.h │ │ │ ├── audio_renderer_manager.cpp │ │ │ ├── audio_renderer_manager.h │ │ │ ├── errors.h │ │ │ ├── final_output_recorder_manager.cpp │ │ │ ├── final_output_recorder_manager.h │ │ │ ├── final_output_recorder_manager_for_applet.cpp │ │ │ ├── final_output_recorder_manager_for_applet.h │ │ │ ├── hardware_opus_decoder.cpp │ │ │ ├── hardware_opus_decoder.h │ │ │ ├── hardware_opus_decoder_manager.cpp │ │ │ └── hardware_opus_decoder_manager.h │ │ │ ├── bcat │ │ │ ├── backend │ │ │ │ ├── backend.cpp │ │ │ │ └── backend.h │ │ │ ├── bcat.cpp │ │ │ ├── bcat.h │ │ │ ├── bcat_result.h │ │ │ ├── bcat_service.cpp │ │ │ ├── bcat_service.h │ │ │ ├── bcat_types.h │ │ │ ├── bcat_util.h │ │ │ ├── delivery_cache_directory_service.cpp │ │ │ ├── delivery_cache_directory_service.h │ │ │ ├── delivery_cache_file_service.cpp │ │ │ ├── delivery_cache_file_service.h │ │ │ ├── delivery_cache_progress_service.cpp │ │ │ ├── delivery_cache_progress_service.h │ │ │ ├── delivery_cache_storage_service.cpp │ │ │ ├── delivery_cache_storage_service.h │ │ │ ├── news │ │ │ │ ├── newly_arrived_event_holder.cpp │ │ │ │ ├── newly_arrived_event_holder.h │ │ │ │ ├── news_data_service.cpp │ │ │ │ ├── news_data_service.h │ │ │ │ ├── news_database_service.cpp │ │ │ │ ├── news_database_service.h │ │ │ │ ├── news_service.cpp │ │ │ │ ├── news_service.h │ │ │ │ ├── overwrite_event_holder.cpp │ │ │ │ ├── overwrite_event_holder.h │ │ │ │ ├── service_creator.cpp │ │ │ │ └── service_creator.h │ │ │ ├── service_creator.cpp │ │ │ └── service_creator.h │ │ │ ├── bpc │ │ │ ├── bpc.cpp │ │ │ └── bpc.h │ │ │ ├── btdrv │ │ │ ├── btdrv.cpp │ │ │ └── btdrv.h │ │ │ ├── btm │ │ │ ├── btm.cpp │ │ │ ├── btm.h │ │ │ ├── btm_debug.cpp │ │ │ ├── btm_debug.h │ │ │ ├── btm_system.cpp │ │ │ ├── btm_system.h │ │ │ ├── btm_system_core.cpp │ │ │ ├── btm_system_core.h │ │ │ ├── btm_user.cpp │ │ │ ├── btm_user.h │ │ │ ├── btm_user_core.cpp │ │ │ └── btm_user_core.h │ │ │ ├── caps │ │ │ ├── caps.cpp │ │ │ ├── caps.h │ │ │ ├── caps_a.cpp │ │ │ ├── caps_a.h │ │ │ ├── caps_c.cpp │ │ │ ├── caps_c.h │ │ │ ├── caps_manager.cpp │ │ │ ├── caps_manager.h │ │ │ ├── caps_result.h │ │ │ ├── caps_sc.cpp │ │ │ ├── caps_sc.h │ │ │ ├── caps_ss.cpp │ │ │ ├── caps_ss.h │ │ │ ├── caps_su.cpp │ │ │ ├── caps_su.h │ │ │ ├── caps_types.h │ │ │ ├── caps_u.cpp │ │ │ └── caps_u.h │ │ │ ├── cmif_serialization.h │ │ │ ├── cmif_types.h │ │ │ ├── erpt │ │ │ ├── erpt.cpp │ │ │ └── erpt.h │ │ │ ├── es │ │ │ ├── es.cpp │ │ │ └── es.h │ │ │ ├── eupld │ │ │ ├── eupld.cpp │ │ │ └── eupld.h │ │ │ ├── fatal │ │ │ ├── fatal.cpp │ │ │ ├── fatal.h │ │ │ ├── fatal_p.cpp │ │ │ ├── fatal_p.h │ │ │ ├── fatal_u.cpp │ │ │ └── fatal_u.h │ │ │ ├── fgm │ │ │ ├── fgm.cpp │ │ │ └── fgm.h │ │ │ ├── filesystem │ │ │ ├── filesystem.cpp │ │ │ ├── filesystem.h │ │ │ ├── fsp │ │ │ │ ├── fs_i_directory.cpp │ │ │ │ ├── fs_i_directory.h │ │ │ │ ├── fs_i_file.cpp │ │ │ │ ├── fs_i_file.h │ │ │ │ ├── fs_i_filesystem.cpp │ │ │ │ ├── fs_i_filesystem.h │ │ │ │ ├── fs_i_multi_commit_manager.cpp │ │ │ │ ├── fs_i_multi_commit_manager.h │ │ │ │ ├── fs_i_save_data_info_reader.cpp │ │ │ │ ├── fs_i_save_data_info_reader.h │ │ │ │ ├── fs_i_storage.cpp │ │ │ │ ├── fs_i_storage.h │ │ │ │ ├── fsp_ldr.cpp │ │ │ │ ├── fsp_ldr.h │ │ │ │ ├── fsp_pr.cpp │ │ │ │ ├── fsp_pr.h │ │ │ │ ├── fsp_srv.cpp │ │ │ │ ├── fsp_srv.h │ │ │ │ ├── fsp_types.h │ │ │ │ ├── save_data_transfer_prohibiter.cpp │ │ │ │ └── save_data_transfer_prohibiter.h │ │ │ ├── romfs_controller.cpp │ │ │ ├── romfs_controller.h │ │ │ ├── save_data_controller.cpp │ │ │ └── save_data_controller.h │ │ │ ├── friend │ │ │ ├── friend.cpp │ │ │ ├── friend.h │ │ │ ├── friend_interface.cpp │ │ │ └── friend_interface.h │ │ │ ├── glue │ │ │ ├── arp.cpp │ │ │ ├── arp.h │ │ │ ├── bgtc.cpp │ │ │ ├── bgtc.h │ │ │ ├── ectx.cpp │ │ │ ├── ectx.h │ │ │ ├── errors.h │ │ │ ├── glue.cpp │ │ │ ├── glue.h │ │ │ ├── glue_manager.cpp │ │ │ ├── glue_manager.h │ │ │ ├── notif.cpp │ │ │ ├── notif.h │ │ │ └── time │ │ │ │ ├── alarm_worker.cpp │ │ │ │ ├── alarm_worker.h │ │ │ │ ├── file_timestamp_worker.cpp │ │ │ │ ├── file_timestamp_worker.h │ │ │ │ ├── manager.cpp │ │ │ │ ├── manager.h │ │ │ │ ├── pm_state_change_handler.cpp │ │ │ │ ├── pm_state_change_handler.h │ │ │ │ ├── standard_steady_clock_resource.cpp │ │ │ │ ├── standard_steady_clock_resource.h │ │ │ │ ├── static.cpp │ │ │ │ ├── static.h │ │ │ │ ├── time_zone.cpp │ │ │ │ ├── time_zone.h │ │ │ │ ├── time_zone_binary.cpp │ │ │ │ ├── time_zone_binary.h │ │ │ │ ├── worker.cpp │ │ │ │ └── worker.h │ │ │ ├── grc │ │ │ ├── grc.cpp │ │ │ └── grc.h │ │ │ ├── hid │ │ │ ├── active_vibration_device_list.cpp │ │ │ ├── active_vibration_device_list.h │ │ │ ├── applet_resource.cpp │ │ │ ├── applet_resource.h │ │ │ ├── hid.cpp │ │ │ ├── hid.h │ │ │ ├── hid_debug_server.cpp │ │ │ ├── hid_debug_server.h │ │ │ ├── hid_server.cpp │ │ │ ├── hid_server.h │ │ │ ├── hid_system_server.cpp │ │ │ ├── hid_system_server.h │ │ │ ├── hidbus.cpp │ │ │ ├── hidbus.h │ │ │ ├── irs.cpp │ │ │ ├── irs.h │ │ │ ├── xcd.cpp │ │ │ └── xcd.h │ │ │ ├── hle_ipc.cpp │ │ │ ├── hle_ipc.h │ │ │ ├── ipc_helpers.h │ │ │ ├── jit │ │ │ ├── jit.cpp │ │ │ ├── jit.h │ │ │ ├── jit_code_memory.cpp │ │ │ ├── jit_code_memory.h │ │ │ ├── jit_context.cpp │ │ │ └── jit_context.h │ │ │ ├── kernel_helpers.cpp │ │ │ ├── kernel_helpers.h │ │ │ ├── lbl │ │ │ ├── lbl.cpp │ │ │ └── lbl.h │ │ │ ├── ldn │ │ │ ├── lan_discovery.cpp │ │ │ ├── lan_discovery.h │ │ │ ├── ldn.cpp │ │ │ ├── ldn.h │ │ │ ├── ldn_results.h │ │ │ ├── ldn_types.h │ │ │ ├── monitor_service.cpp │ │ │ ├── monitor_service.h │ │ │ ├── sf_monitor_service.cpp │ │ │ ├── sf_monitor_service.h │ │ │ ├── sf_service.cpp │ │ │ ├── sf_service.h │ │ │ ├── sf_service_monitor.cpp │ │ │ ├── sf_service_monitor.h │ │ │ ├── system_local_communication_service.cpp │ │ │ ├── system_local_communication_service.h │ │ │ ├── user_local_communication_service.cpp │ │ │ └── user_local_communication_service.h │ │ │ ├── ldr │ │ │ ├── ldr.cpp │ │ │ └── ldr.h │ │ │ ├── lm │ │ │ ├── lm.cpp │ │ │ └── lm.h │ │ │ ├── mig │ │ │ ├── mig.cpp │ │ │ └── mig.h │ │ │ ├── mii │ │ │ ├── mii.cpp │ │ │ ├── mii.h │ │ │ ├── mii_database.cpp │ │ │ ├── mii_database.h │ │ │ ├── mii_database_manager.cpp │ │ │ ├── mii_database_manager.h │ │ │ ├── mii_manager.cpp │ │ │ ├── mii_manager.h │ │ │ ├── mii_result.h │ │ │ ├── mii_types.h │ │ │ ├── mii_util.h │ │ │ └── types │ │ │ │ ├── char_info.cpp │ │ │ │ ├── char_info.h │ │ │ │ ├── core_data.cpp │ │ │ │ ├── core_data.h │ │ │ │ ├── raw_data.cpp │ │ │ │ ├── raw_data.h │ │ │ │ ├── store_data.cpp │ │ │ │ ├── store_data.h │ │ │ │ ├── ver3_store_data.cpp │ │ │ │ └── ver3_store_data.h │ │ │ ├── mm │ │ │ ├── mm_u.cpp │ │ │ └── mm_u.h │ │ │ ├── mnpp │ │ │ ├── mnpp_app.cpp │ │ │ └── mnpp_app.h │ │ │ ├── ncm │ │ │ ├── ncm.cpp │ │ │ └── ncm.h │ │ │ ├── nfc │ │ │ ├── common │ │ │ │ ├── amiibo_crypto.cpp │ │ │ │ ├── amiibo_crypto.h │ │ │ │ ├── device.cpp │ │ │ │ ├── device.h │ │ │ │ ├── device_manager.cpp │ │ │ │ └── device_manager.h │ │ │ ├── mifare_result.h │ │ │ ├── mifare_types.h │ │ │ ├── nfc.cpp │ │ │ ├── nfc.h │ │ │ ├── nfc_interface.cpp │ │ │ ├── nfc_interface.h │ │ │ ├── nfc_result.h │ │ │ └── nfc_types.h │ │ │ ├── nfp │ │ │ ├── nfp.cpp │ │ │ ├── nfp.h │ │ │ ├── nfp_interface.cpp │ │ │ ├── nfp_interface.h │ │ │ ├── nfp_result.h │ │ │ └── nfp_types.h │ │ │ ├── ngc │ │ │ ├── ngc.cpp │ │ │ └── ngc.h │ │ │ ├── nifm │ │ │ ├── nifm.cpp │ │ │ └── nifm.h │ │ │ ├── nim │ │ │ ├── nim.cpp │ │ │ └── nim.h │ │ │ ├── npns │ │ │ ├── npns.cpp │ │ │ └── npns.h │ │ │ ├── ns │ │ │ ├── account_proxy_interface.cpp │ │ │ ├── account_proxy_interface.h │ │ │ ├── application_manager_interface.cpp │ │ │ ├── application_manager_interface.h │ │ │ ├── application_version_interface.cpp │ │ │ ├── application_version_interface.h │ │ │ ├── content_management_interface.cpp │ │ │ ├── content_management_interface.h │ │ │ ├── develop_interface.cpp │ │ │ ├── develop_interface.h │ │ │ ├── document_interface.cpp │ │ │ ├── document_interface.h │ │ │ ├── download_task_interface.cpp │ │ │ ├── download_task_interface.h │ │ │ ├── dynamic_rights_interface.cpp │ │ │ ├── dynamic_rights_interface.h │ │ │ ├── ecommerce_interface.cpp │ │ │ ├── ecommerce_interface.h │ │ │ ├── factory_reset_interface.cpp │ │ │ ├── factory_reset_interface.h │ │ │ ├── language.cpp │ │ │ ├── language.h │ │ │ ├── ns.cpp │ │ │ ├── ns.h │ │ │ ├── ns_results.h │ │ │ ├── ns_types.h │ │ │ ├── platform_service_manager.cpp │ │ │ ├── platform_service_manager.h │ │ │ ├── query_service.cpp │ │ │ ├── query_service.h │ │ │ ├── read_only_application_control_data_interface.cpp │ │ │ ├── read_only_application_control_data_interface.h │ │ │ ├── read_only_application_record_interface.cpp │ │ │ ├── read_only_application_record_interface.h │ │ │ ├── service_getter_interface.cpp │ │ │ ├── service_getter_interface.h │ │ │ ├── system_update_control.cpp │ │ │ ├── system_update_control.h │ │ │ ├── system_update_interface.cpp │ │ │ ├── system_update_interface.h │ │ │ ├── vulnerability_manager_interface.cpp │ │ │ └── vulnerability_manager_interface.h │ │ │ ├── nvdrv │ │ │ ├── core │ │ │ │ ├── container.cpp │ │ │ │ ├── container.h │ │ │ │ ├── heap_mapper.cpp │ │ │ │ ├── heap_mapper.h │ │ │ │ ├── nvmap.cpp │ │ │ │ ├── nvmap.h │ │ │ │ ├── syncpoint_manager.cpp │ │ │ │ └── syncpoint_manager.h │ │ │ ├── devices │ │ │ │ ├── ioctl_serialization.h │ │ │ │ ├── nvdevice.h │ │ │ │ ├── nvdisp_disp0.cpp │ │ │ │ ├── nvdisp_disp0.h │ │ │ │ ├── nvhost_as_gpu.cpp │ │ │ │ ├── nvhost_as_gpu.h │ │ │ │ ├── nvhost_ctrl.cpp │ │ │ │ ├── nvhost_ctrl.h │ │ │ │ ├── nvhost_ctrl_gpu.cpp │ │ │ │ ├── nvhost_ctrl_gpu.h │ │ │ │ ├── nvhost_gpu.cpp │ │ │ │ ├── nvhost_gpu.h │ │ │ │ ├── nvhost_nvdec.cpp │ │ │ │ ├── nvhost_nvdec.h │ │ │ │ ├── nvhost_nvdec_common.cpp │ │ │ │ ├── nvhost_nvdec_common.h │ │ │ │ ├── nvhost_nvjpg.cpp │ │ │ │ ├── nvhost_nvjpg.h │ │ │ │ ├── nvhost_vic.cpp │ │ │ │ ├── nvhost_vic.h │ │ │ │ ├── nvmap.cpp │ │ │ │ └── nvmap.h │ │ │ ├── nvdata.h │ │ │ ├── nvdrv.cpp │ │ │ ├── nvdrv.h │ │ │ ├── nvdrv_interface.cpp │ │ │ ├── nvdrv_interface.h │ │ │ ├── nvmemp.cpp │ │ │ └── nvmemp.h │ │ │ ├── nvnflinger │ │ │ ├── binder.h │ │ │ ├── buffer_item.h │ │ │ ├── buffer_item_consumer.cpp │ │ │ ├── buffer_item_consumer.h │ │ │ ├── buffer_queue_consumer.cpp │ │ │ ├── buffer_queue_consumer.h │ │ │ ├── buffer_queue_core.cpp │ │ │ ├── buffer_queue_core.h │ │ │ ├── buffer_queue_defs.h │ │ │ ├── buffer_queue_producer.cpp │ │ │ ├── buffer_queue_producer.h │ │ │ ├── buffer_slot.h │ │ │ ├── buffer_transform_flags.h │ │ │ ├── consumer_base.cpp │ │ │ ├── consumer_base.h │ │ │ ├── consumer_listener.h │ │ │ ├── display.h │ │ │ ├── graphic_buffer_producer.cpp │ │ │ ├── graphic_buffer_producer.h │ │ │ ├── hardware_composer.cpp │ │ │ ├── hardware_composer.h │ │ │ ├── hos_binder_driver.cpp │ │ │ ├── hos_binder_driver.h │ │ │ ├── hos_binder_driver_server.cpp │ │ │ ├── hos_binder_driver_server.h │ │ │ ├── hwc_layer.h │ │ │ ├── nvnflinger.cpp │ │ │ ├── nvnflinger.h │ │ │ ├── parcel.h │ │ │ ├── pixel_format.h │ │ │ ├── producer_listener.h │ │ │ ├── status.h │ │ │ ├── surface_flinger.cpp │ │ │ ├── surface_flinger.h │ │ │ ├── ui │ │ │ │ ├── fence.h │ │ │ │ ├── graphic_buffer.cpp │ │ │ │ └── graphic_buffer.h │ │ │ └── window.h │ │ │ ├── olsc │ │ │ ├── daemon_controller.cpp │ │ │ ├── daemon_controller.h │ │ │ ├── native_handle_holder.cpp │ │ │ ├── native_handle_holder.h │ │ │ ├── olsc.cpp │ │ │ ├── olsc.h │ │ │ ├── olsc_service_for_application.cpp │ │ │ ├── olsc_service_for_application.h │ │ │ ├── olsc_service_for_system_service.cpp │ │ │ ├── olsc_service_for_system_service.h │ │ │ ├── remote_storage_controller.cpp │ │ │ ├── remote_storage_controller.h │ │ │ ├── transfer_task_list_controller.cpp │ │ │ └── transfer_task_list_controller.h │ │ │ ├── omm │ │ │ ├── omm.cpp │ │ │ ├── omm.h │ │ │ ├── operation_mode_manager.cpp │ │ │ ├── operation_mode_manager.h │ │ │ ├── policy_manager_system.cpp │ │ │ ├── policy_manager_system.h │ │ │ ├── power_state_interface.cpp │ │ │ └── power_state_interface.h │ │ │ ├── os │ │ │ ├── event.cpp │ │ │ ├── event.h │ │ │ ├── multi_wait.cpp │ │ │ ├── multi_wait.h │ │ │ ├── multi_wait_holder.cpp │ │ │ ├── multi_wait_holder.h │ │ │ ├── multi_wait_utils.h │ │ │ ├── mutex.cpp │ │ │ ├── mutex.h │ │ │ ├── process.cpp │ │ │ └── process.h │ │ │ ├── pcie │ │ │ ├── pcie.cpp │ │ │ └── pcie.h │ │ │ ├── pctl │ │ │ ├── parental_control_service.cpp │ │ │ ├── parental_control_service.h │ │ │ ├── parental_control_service_factory.cpp │ │ │ ├── parental_control_service_factory.h │ │ │ ├── pctl.cpp │ │ │ ├── pctl.h │ │ │ ├── pctl_results.h │ │ │ └── pctl_types.h │ │ │ ├── pcv │ │ │ ├── pcv.cpp │ │ │ └── pcv.h │ │ │ ├── pm │ │ │ ├── pm.cpp │ │ │ └── pm.h │ │ │ ├── prepo │ │ │ ├── prepo.cpp │ │ │ └── prepo.h │ │ │ ├── psc │ │ │ ├── ovln │ │ │ │ ├── ovln_types.h │ │ │ │ ├── receiver.cpp │ │ │ │ ├── receiver.h │ │ │ │ ├── receiver_service.cpp │ │ │ │ ├── receiver_service.h │ │ │ │ ├── sender.cpp │ │ │ │ ├── sender.h │ │ │ │ ├── sender_service.cpp │ │ │ │ └── sender_service.h │ │ │ ├── pm_control.cpp │ │ │ ├── pm_control.h │ │ │ ├── pm_module.cpp │ │ │ ├── pm_module.h │ │ │ ├── pm_service.cpp │ │ │ ├── pm_service.h │ │ │ ├── psc.cpp │ │ │ ├── psc.h │ │ │ └── time │ │ │ │ ├── alarms.cpp │ │ │ │ ├── alarms.h │ │ │ │ ├── clocks │ │ │ │ ├── context_writers.cpp │ │ │ │ ├── context_writers.h │ │ │ │ ├── ephemeral_network_system_clock_core.h │ │ │ │ ├── standard_local_system_clock_core.cpp │ │ │ │ ├── standard_local_system_clock_core.h │ │ │ │ ├── standard_network_system_clock_core.cpp │ │ │ │ ├── standard_network_system_clock_core.h │ │ │ │ ├── standard_steady_clock_core.cpp │ │ │ │ ├── standard_steady_clock_core.h │ │ │ │ ├── standard_user_system_clock_core.cpp │ │ │ │ ├── standard_user_system_clock_core.h │ │ │ │ ├── steady_clock_core.h │ │ │ │ ├── system_clock_core.cpp │ │ │ │ ├── system_clock_core.h │ │ │ │ ├── tick_based_steady_clock_core.cpp │ │ │ │ └── tick_based_steady_clock_core.h │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── errors.h │ │ │ │ ├── manager.h │ │ │ │ ├── power_state_request_manager.cpp │ │ │ │ ├── power_state_request_manager.h │ │ │ │ ├── power_state_service.cpp │ │ │ │ ├── power_state_service.h │ │ │ │ ├── service_manager.cpp │ │ │ │ ├── service_manager.h │ │ │ │ ├── shared_memory.cpp │ │ │ │ ├── shared_memory.h │ │ │ │ ├── static.cpp │ │ │ │ ├── static.h │ │ │ │ ├── steady_clock.cpp │ │ │ │ ├── steady_clock.h │ │ │ │ ├── system_clock.cpp │ │ │ │ ├── system_clock.h │ │ │ │ ├── time_zone.cpp │ │ │ │ ├── time_zone.h │ │ │ │ ├── time_zone_service.cpp │ │ │ │ └── time_zone_service.h │ │ │ ├── ptm │ │ │ ├── psm.cpp │ │ │ ├── psm.h │ │ │ ├── ptm.cpp │ │ │ ├── ptm.h │ │ │ ├── ts.cpp │ │ │ └── ts.h │ │ │ ├── ro │ │ │ ├── ro.cpp │ │ │ ├── ro.h │ │ │ ├── ro_nro_utils.cpp │ │ │ ├── ro_nro_utils.h │ │ │ ├── ro_results.h │ │ │ └── ro_types.h │ │ │ ├── server_manager.cpp │ │ │ ├── server_manager.h │ │ │ ├── service.cpp │ │ │ ├── service.h │ │ │ ├── services.cpp │ │ │ ├── services.h │ │ │ ├── set │ │ │ ├── factory_settings_server.cpp │ │ │ ├── factory_settings_server.h │ │ │ ├── firmware_debug_settings_server.cpp │ │ │ ├── firmware_debug_settings_server.h │ │ │ ├── key_code_map.h │ │ │ ├── setting_formats │ │ │ │ ├── appln_settings.cpp │ │ │ │ ├── appln_settings.h │ │ │ │ ├── device_settings.cpp │ │ │ │ ├── device_settings.h │ │ │ │ ├── private_settings.cpp │ │ │ │ ├── private_settings.h │ │ │ │ ├── system_settings.cpp │ │ │ │ └── system_settings.h │ │ │ ├── settings.cpp │ │ │ ├── settings.h │ │ │ ├── settings_server.cpp │ │ │ ├── settings_server.h │ │ │ ├── settings_types.h │ │ │ ├── system_settings_server.cpp │ │ │ └── system_settings_server.h │ │ │ ├── sm │ │ │ ├── sm.cpp │ │ │ ├── sm.h │ │ │ ├── sm_controller.cpp │ │ │ └── sm_controller.h │ │ │ ├── sockets │ │ │ ├── bsd.cpp │ │ │ ├── bsd.h │ │ │ ├── nsd.cpp │ │ │ ├── nsd.h │ │ │ ├── sfdnsres.cpp │ │ │ ├── sfdnsres.h │ │ │ ├── sockets.cpp │ │ │ ├── sockets.h │ │ │ ├── sockets_translate.cpp │ │ │ └── sockets_translate.h │ │ │ ├── spl │ │ │ ├── csrng.cpp │ │ │ ├── csrng.h │ │ │ ├── spl.cpp │ │ │ ├── spl.h │ │ │ ├── spl_module.cpp │ │ │ ├── spl_module.h │ │ │ ├── spl_results.h │ │ │ └── spl_types.h │ │ │ ├── ssl │ │ │ ├── cert_store.cpp │ │ │ ├── cert_store.h │ │ │ ├── ssl.cpp │ │ │ ├── ssl.h │ │ │ ├── ssl_backend.h │ │ │ ├── ssl_backend_none.cpp │ │ │ ├── ssl_backend_openssl.cpp │ │ │ ├── ssl_backend_schannel.cpp │ │ │ ├── ssl_backend_securetransport.cpp │ │ │ └── ssl_types.h │ │ │ ├── usb │ │ │ ├── usb.cpp │ │ │ └── usb.h │ │ │ └── vi │ │ │ ├── application_display_service.cpp │ │ │ ├── application_display_service.h │ │ │ ├── application_root_service.cpp │ │ │ ├── application_root_service.h │ │ │ ├── conductor.cpp │ │ │ ├── conductor.h │ │ │ ├── container.cpp │ │ │ ├── container.h │ │ │ ├── display.h │ │ │ ├── display_list.h │ │ │ ├── layer.h │ │ │ ├── layer_list.h │ │ │ ├── manager_display_service.cpp │ │ │ ├── manager_display_service.h │ │ │ ├── manager_root_service.cpp │ │ │ ├── manager_root_service.h │ │ │ ├── service_creator.cpp │ │ │ ├── service_creator.h │ │ │ ├── shared_buffer_manager.cpp │ │ │ ├── shared_buffer_manager.h │ │ │ ├── system_display_service.cpp │ │ │ ├── system_display_service.h │ │ │ ├── system_root_service.cpp │ │ │ ├── system_root_service.h │ │ │ ├── vi.cpp │ │ │ ├── vi.h │ │ │ ├── vi_results.h │ │ │ ├── vi_types.h │ │ │ ├── vsync_manager.cpp │ │ │ └── vsync_manager.h │ ├── internal_network │ │ ├── network.cpp │ │ ├── network.h │ │ ├── network_interface.cpp │ │ ├── network_interface.h │ │ ├── socket_proxy.cpp │ │ ├── socket_proxy.h │ │ └── sockets.h │ ├── loader │ │ ├── deconstructed_rom_directory.cpp │ │ ├── deconstructed_rom_directory.h │ │ ├── kip.cpp │ │ ├── kip.h │ │ ├── loader.cpp │ │ ├── loader.h │ │ ├── nax.cpp │ │ ├── nax.h │ │ ├── nca.cpp │ │ ├── nca.h │ │ ├── nro.cpp │ │ ├── nro.h │ │ ├── nso.cpp │ │ ├── nso.h │ │ ├── nsp.cpp │ │ ├── nsp.h │ │ ├── xci.cpp │ │ └── xci.h │ ├── memory.cpp │ ├── memory.h │ ├── memory │ │ ├── cheat_engine.cpp │ │ ├── cheat_engine.h │ │ ├── dmnt_cheat_types.h │ │ ├── dmnt_cheat_vm.cpp │ │ └── dmnt_cheat_vm.h │ ├── perf_stats.cpp │ ├── perf_stats.h │ ├── precompiled_headers.h │ ├── reporter.cpp │ ├── reporter.h │ ├── telemetry_session.cpp │ ├── telemetry_session.h │ └── tools │ │ ├── freezer.cpp │ │ ├── freezer.h │ │ ├── renderdoc.cpp │ │ └── renderdoc.h ├── dedicated_room │ ├── CMakeLists.txt │ ├── precompiled_headers.h │ ├── yuzu_room.cpp │ └── yuzu_room.rc ├── frontend_common │ ├── CMakeLists.txt │ ├── config.cpp │ ├── config.h │ └── content_manager.h ├── hid_core │ ├── CMakeLists.txt │ ├── frontend │ │ ├── emulated_console.cpp │ │ ├── emulated_console.h │ │ ├── emulated_controller.cpp │ │ ├── emulated_controller.h │ │ ├── emulated_devices.cpp │ │ ├── emulated_devices.h │ │ ├── input_converter.cpp │ │ ├── input_converter.h │ │ ├── input_interpreter.cpp │ │ ├── input_interpreter.h │ │ ├── motion_input.cpp │ │ └── motion_input.h │ ├── hid_core.cpp │ ├── hid_core.h │ ├── hid_result.h │ ├── hid_types.h │ ├── hid_util.h │ ├── hidbus │ │ ├── hidbus_base.cpp │ │ ├── hidbus_base.h │ │ ├── ringcon.cpp │ │ ├── ringcon.h │ │ ├── starlink.cpp │ │ ├── starlink.h │ │ ├── stubbed.cpp │ │ └── stubbed.h │ ├── irsensor │ │ ├── clustering_processor.cpp │ │ ├── clustering_processor.h │ │ ├── image_transfer_processor.cpp │ │ ├── image_transfer_processor.h │ │ ├── ir_led_processor.cpp │ │ ├── ir_led_processor.h │ │ ├── irs_types.h │ │ ├── moment_processor.cpp │ │ ├── moment_processor.h │ │ ├── pointing_processor.cpp │ │ ├── pointing_processor.h │ │ ├── processor_base.cpp │ │ ├── processor_base.h │ │ ├── tera_plugin_processor.cpp │ │ └── tera_plugin_processor.h │ ├── precompiled_headers.h │ ├── resource_manager.cpp │ ├── resource_manager.h │ └── resources │ │ ├── abstracted_pad │ │ ├── abstract_battery_handler.cpp │ │ ├── abstract_battery_handler.h │ │ ├── abstract_button_handler.cpp │ │ ├── abstract_button_handler.h │ │ ├── abstract_ir_sensor_handler.cpp │ │ ├── abstract_ir_sensor_handler.h │ │ ├── abstract_led_handler.cpp │ │ ├── abstract_led_handler.h │ │ ├── abstract_mcu_handler.cpp │ │ ├── abstract_mcu_handler.h │ │ ├── abstract_nfc_handler.cpp │ │ ├── abstract_nfc_handler.h │ │ ├── abstract_pad.cpp │ │ ├── abstract_pad.h │ │ ├── abstract_pad_holder.cpp │ │ ├── abstract_pad_holder.h │ │ ├── abstract_palma_handler.cpp │ │ ├── abstract_palma_handler.h │ │ ├── abstract_properties_handler.cpp │ │ ├── abstract_properties_handler.h │ │ ├── abstract_sixaxis_handler.cpp │ │ ├── abstract_sixaxis_handler.h │ │ ├── abstract_vibration_handler.cpp │ │ └── abstract_vibration_handler.h │ │ ├── applet_resource.cpp │ │ ├── applet_resource.h │ │ ├── controller_base.cpp │ │ ├── controller_base.h │ │ ├── debug_pad │ │ ├── debug_pad.cpp │ │ ├── debug_pad.h │ │ └── debug_pad_types.h │ │ ├── digitizer │ │ ├── digitizer.cpp │ │ └── digitizer.h │ │ ├── hid_firmware_settings.cpp │ │ ├── hid_firmware_settings.h │ │ ├── irs_ring_lifo.h │ │ ├── keyboard │ │ ├── keyboard.cpp │ │ ├── keyboard.h │ │ └── keyboard_types.h │ │ ├── mouse │ │ ├── debug_mouse.cpp │ │ ├── debug_mouse.h │ │ ├── mouse.cpp │ │ ├── mouse.h │ │ └── mouse_types.h │ │ ├── npad │ │ ├── npad.cpp │ │ ├── npad.h │ │ ├── npad_data.cpp │ │ ├── npad_data.h │ │ ├── npad_resource.cpp │ │ ├── npad_resource.h │ │ ├── npad_types.h │ │ ├── npad_vibration.cpp │ │ └── npad_vibration.h │ │ ├── palma │ │ ├── palma.cpp │ │ └── palma.h │ │ ├── ring_lifo.h │ │ ├── shared_memory_format.h │ │ ├── shared_memory_holder.cpp │ │ ├── shared_memory_holder.h │ │ ├── six_axis │ │ ├── console_six_axis.cpp │ │ ├── console_six_axis.h │ │ ├── seven_six_axis.cpp │ │ ├── seven_six_axis.h │ │ ├── six_axis.cpp │ │ └── six_axis.h │ │ ├── system_buttons │ │ ├── capture_button.cpp │ │ ├── capture_button.h │ │ ├── home_button.cpp │ │ ├── home_button.h │ │ ├── sleep_button.cpp │ │ ├── sleep_button.h │ │ └── system_button_types.h │ │ ├── touch_screen │ │ ├── gesture.cpp │ │ ├── gesture.h │ │ ├── gesture_handler.cpp │ │ ├── gesture_handler.h │ │ ├── touch_screen.cpp │ │ ├── touch_screen.h │ │ ├── touch_screen_driver.cpp │ │ ├── touch_screen_driver.h │ │ ├── touch_screen_resource.cpp │ │ ├── touch_screen_resource.h │ │ └── touch_types.h │ │ ├── unique_pad │ │ ├── unique_pad.cpp │ │ └── unique_pad.h │ │ └── vibration │ │ ├── gc_vibration_device.cpp │ │ ├── gc_vibration_device.h │ │ ├── n64_vibration_device.cpp │ │ ├── n64_vibration_device.h │ │ ├── vibration_base.cpp │ │ ├── vibration_base.h │ │ ├── vibration_device.cpp │ │ └── vibration_device.h ├── input_common │ ├── CMakeLists.txt │ ├── drivers │ │ ├── android.cpp │ │ ├── android.h │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── gc_adapter.cpp │ │ ├── gc_adapter.h │ │ ├── joycon.cpp │ │ ├── joycon.h │ │ ├── keyboard.cpp │ │ ├── keyboard.h │ │ ├── mouse.cpp │ │ ├── mouse.h │ │ ├── sdl_driver.cpp │ │ ├── sdl_driver.h │ │ ├── tas_input.cpp │ │ ├── tas_input.h │ │ ├── touch_screen.cpp │ │ ├── touch_screen.h │ │ ├── udp_client.cpp │ │ ├── udp_client.h │ │ ├── virtual_amiibo.cpp │ │ ├── virtual_amiibo.h │ │ ├── virtual_gamepad.cpp │ │ └── virtual_gamepad.h │ ├── helpers │ │ ├── joycon_driver.cpp │ │ ├── joycon_driver.h │ │ ├── joycon_protocol │ │ │ ├── calibration.cpp │ │ │ ├── calibration.h │ │ │ ├── common_protocol.cpp │ │ │ ├── common_protocol.h │ │ │ ├── generic_functions.cpp │ │ │ ├── generic_functions.h │ │ │ ├── irs.cpp │ │ │ ├── irs.h │ │ │ ├── joycon_types.h │ │ │ ├── nfc.cpp │ │ │ ├── nfc.h │ │ │ ├── poller.cpp │ │ │ ├── poller.h │ │ │ ├── ringcon.cpp │ │ │ ├── ringcon.h │ │ │ ├── rumble.cpp │ │ │ └── rumble.h │ │ ├── stick_from_buttons.cpp │ │ ├── stick_from_buttons.h │ │ ├── touch_from_buttons.cpp │ │ ├── touch_from_buttons.h │ │ ├── udp_protocol.cpp │ │ └── udp_protocol.h │ ├── input_engine.cpp │ ├── input_engine.h │ ├── input_mapping.cpp │ ├── input_mapping.h │ ├── input_poller.cpp │ ├── input_poller.h │ ├── main.cpp │ ├── main.h │ └── precompiled_headers.h ├── network │ ├── CMakeLists.txt │ ├── announce_multiplayer_session.cpp │ ├── announce_multiplayer_session.h │ ├── network.cpp │ ├── network.h │ ├── packet.cpp │ ├── packet.h │ ├── precompiled_headers.h │ ├── room.cpp │ ├── room.h │ ├── room_member.cpp │ ├── room_member.h │ ├── verify_user.cpp │ └── verify_user.h ├── shader_recompiler │ ├── CMakeLists.txt │ ├── backend │ │ ├── bindings.h │ │ ├── glasm │ │ │ ├── emit_glasm.cpp │ │ │ ├── emit_glasm.h │ │ │ ├── emit_glasm_barriers.cpp │ │ │ ├── emit_glasm_bitwise_conversion.cpp │ │ │ ├── emit_glasm_composite.cpp │ │ │ ├── emit_glasm_context_get_set.cpp │ │ │ ├── emit_glasm_control_flow.cpp │ │ │ ├── emit_glasm_convert.cpp │ │ │ ├── emit_glasm_floating_point.cpp │ │ │ ├── emit_glasm_image.cpp │ │ │ ├── emit_glasm_instructions.h │ │ │ ├── emit_glasm_integer.cpp │ │ │ ├── emit_glasm_logical.cpp │ │ │ ├── emit_glasm_memory.cpp │ │ │ ├── emit_glasm_not_implemented.cpp │ │ │ ├── emit_glasm_select.cpp │ │ │ ├── emit_glasm_shared_memory.cpp │ │ │ ├── emit_glasm_special.cpp │ │ │ ├── emit_glasm_undefined.cpp │ │ │ ├── emit_glasm_warp.cpp │ │ │ ├── glasm_emit_context.cpp │ │ │ ├── glasm_emit_context.h │ │ │ ├── reg_alloc.cpp │ │ │ └── reg_alloc.h │ │ ├── glsl │ │ │ ├── emit_glsl.cpp │ │ │ ├── emit_glsl.h │ │ │ ├── emit_glsl_atomic.cpp │ │ │ ├── emit_glsl_barriers.cpp │ │ │ ├── emit_glsl_bitwise_conversion.cpp │ │ │ ├── emit_glsl_composite.cpp │ │ │ ├── emit_glsl_context_get_set.cpp │ │ │ ├── emit_glsl_control_flow.cpp │ │ │ ├── emit_glsl_convert.cpp │ │ │ ├── emit_glsl_floating_point.cpp │ │ │ ├── emit_glsl_image.cpp │ │ │ ├── emit_glsl_instructions.h │ │ │ ├── emit_glsl_integer.cpp │ │ │ ├── emit_glsl_logical.cpp │ │ │ ├── emit_glsl_memory.cpp │ │ │ ├── emit_glsl_not_implemented.cpp │ │ │ ├── emit_glsl_select.cpp │ │ │ ├── emit_glsl_shared_memory.cpp │ │ │ ├── emit_glsl_special.cpp │ │ │ ├── emit_glsl_undefined.cpp │ │ │ ├── emit_glsl_warp.cpp │ │ │ ├── glsl_emit_context.cpp │ │ │ ├── glsl_emit_context.h │ │ │ ├── var_alloc.cpp │ │ │ └── var_alloc.h │ │ └── spirv │ │ │ ├── emit_spirv.cpp │ │ │ ├── emit_spirv.h │ │ │ ├── emit_spirv_atomic.cpp │ │ │ ├── emit_spirv_barriers.cpp │ │ │ ├── emit_spirv_bitwise_conversion.cpp │ │ │ ├── emit_spirv_composite.cpp │ │ │ ├── emit_spirv_context_get_set.cpp │ │ │ ├── emit_spirv_control_flow.cpp │ │ │ ├── emit_spirv_convert.cpp │ │ │ ├── emit_spirv_floating_point.cpp │ │ │ ├── emit_spirv_image.cpp │ │ │ ├── emit_spirv_image_atomic.cpp │ │ │ ├── emit_spirv_instructions.h │ │ │ ├── emit_spirv_integer.cpp │ │ │ ├── emit_spirv_logical.cpp │ │ │ ├── emit_spirv_memory.cpp │ │ │ ├── emit_spirv_select.cpp │ │ │ ├── emit_spirv_shared_memory.cpp │ │ │ ├── emit_spirv_special.cpp │ │ │ ├── emit_spirv_undefined.cpp │ │ │ ├── emit_spirv_warp.cpp │ │ │ ├── spirv_emit_context.cpp │ │ │ └── spirv_emit_context.h │ ├── environment.h │ ├── exception.h │ ├── frontend │ │ ├── ir │ │ │ ├── abstract_syntax_list.h │ │ │ ├── attribute.cpp │ │ │ ├── attribute.h │ │ │ ├── basic_block.cpp │ │ │ ├── basic_block.h │ │ │ ├── breadth_first_search.h │ │ │ ├── condition.cpp │ │ │ ├── condition.h │ │ │ ├── flow_test.cpp │ │ │ ├── flow_test.h │ │ │ ├── ir_emitter.cpp │ │ │ ├── ir_emitter.h │ │ │ ├── microinstruction.cpp │ │ │ ├── modifiers.h │ │ │ ├── opcodes.cpp │ │ │ ├── opcodes.h │ │ │ ├── opcodes.inc │ │ │ ├── patch.cpp │ │ │ ├── patch.h │ │ │ ├── post_order.cpp │ │ │ ├── post_order.h │ │ │ ├── pred.h │ │ │ ├── program.cpp │ │ │ ├── program.h │ │ │ ├── reg.h │ │ │ ├── type.cpp │ │ │ ├── type.h │ │ │ ├── value.cpp │ │ │ └── value.h │ │ └── maxwell │ │ │ ├── control_flow.cpp │ │ │ ├── control_flow.h │ │ │ ├── decode.cpp │ │ │ ├── decode.h │ │ │ ├── indirect_branch_table_track.cpp │ │ │ ├── indirect_branch_table_track.h │ │ │ ├── instruction.h │ │ │ ├── location.h │ │ │ ├── maxwell.inc │ │ │ ├── opcodes.cpp │ │ │ ├── opcodes.h │ │ │ ├── structured_control_flow.cpp │ │ │ ├── structured_control_flow.h │ │ │ ├── translate │ │ │ ├── impl │ │ │ │ ├── atomic_operations_global_memory.cpp │ │ │ │ ├── atomic_operations_shared_memory.cpp │ │ │ │ ├── attribute_memory_to_physical.cpp │ │ │ │ ├── barrier_operations.cpp │ │ │ │ ├── bitfield_extract.cpp │ │ │ │ ├── bitfield_insert.cpp │ │ │ │ ├── branch_indirect.cpp │ │ │ │ ├── common_encoding.h │ │ │ │ ├── common_funcs.cpp │ │ │ │ ├── common_funcs.h │ │ │ │ ├── condition_code_set.cpp │ │ │ │ ├── double_add.cpp │ │ │ │ ├── double_compare_and_set.cpp │ │ │ │ ├── double_fused_multiply_add.cpp │ │ │ │ ├── double_min_max.cpp │ │ │ │ ├── double_multiply.cpp │ │ │ │ ├── double_set_predicate.cpp │ │ │ │ ├── exit_program.cpp │ │ │ │ ├── find_leading_one.cpp │ │ │ │ ├── floating_point_add.cpp │ │ │ │ ├── floating_point_compare.cpp │ │ │ │ ├── floating_point_compare_and_set.cpp │ │ │ │ ├── floating_point_conversion_floating_point.cpp │ │ │ │ ├── floating_point_conversion_integer.cpp │ │ │ │ ├── floating_point_fused_multiply_add.cpp │ │ │ │ ├── floating_point_min_max.cpp │ │ │ │ ├── floating_point_multi_function.cpp │ │ │ │ ├── floating_point_multiply.cpp │ │ │ │ ├── floating_point_range_reduction.cpp │ │ │ │ ├── floating_point_set_predicate.cpp │ │ │ │ ├── floating_point_swizzled_add.cpp │ │ │ │ ├── half_floating_point_add.cpp │ │ │ │ ├── half_floating_point_fused_multiply_add.cpp │ │ │ │ ├── half_floating_point_helper.cpp │ │ │ │ ├── half_floating_point_helper.h │ │ │ │ ├── half_floating_point_multiply.cpp │ │ │ │ ├── half_floating_point_set.cpp │ │ │ │ ├── half_floating_point_set_predicate.cpp │ │ │ │ ├── impl.cpp │ │ │ │ ├── impl.h │ │ │ │ ├── integer_add.cpp │ │ │ │ ├── integer_add_three_input.cpp │ │ │ │ ├── integer_compare.cpp │ │ │ │ ├── integer_compare_and_set.cpp │ │ │ │ ├── integer_floating_point_conversion.cpp │ │ │ │ ├── integer_funnel_shift.cpp │ │ │ │ ├── integer_minimum_maximum.cpp │ │ │ │ ├── integer_popcount.cpp │ │ │ │ ├── integer_scaled_add.cpp │ │ │ │ ├── integer_set_predicate.cpp │ │ │ │ ├── integer_shift_left.cpp │ │ │ │ ├── integer_shift_right.cpp │ │ │ │ ├── integer_short_multiply_add.cpp │ │ │ │ ├── integer_to_integer_conversion.cpp │ │ │ │ ├── internal_stage_buffer_entry_read.cpp │ │ │ │ ├── load_constant.cpp │ │ │ │ ├── load_constant.h │ │ │ │ ├── load_effective_address.cpp │ │ │ │ ├── load_store_attribute.cpp │ │ │ │ ├── load_store_local_shared.cpp │ │ │ │ ├── load_store_memory.cpp │ │ │ │ ├── logic_operation.cpp │ │ │ │ ├── logic_operation_three_input.cpp │ │ │ │ ├── logic_operation_three_input_lut3.py │ │ │ │ ├── move_predicate_to_register.cpp │ │ │ │ ├── move_register.cpp │ │ │ │ ├── move_register_to_predicate.cpp │ │ │ │ ├── move_special_register.cpp │ │ │ │ ├── not_implemented.cpp │ │ │ │ ├── output_geometry.cpp │ │ │ │ ├── pixel_load.cpp │ │ │ │ ├── predicate_set_predicate.cpp │ │ │ │ ├── predicate_set_register.cpp │ │ │ │ ├── select_source_with_predicate.cpp │ │ │ │ ├── surface_atomic_operations.cpp │ │ │ │ ├── surface_load_store.cpp │ │ │ │ ├── texture_fetch.cpp │ │ │ │ ├── texture_fetch_swizzled.cpp │ │ │ │ ├── texture_gather.cpp │ │ │ │ ├── texture_gather_swizzled.cpp │ │ │ │ ├── texture_gradient.cpp │ │ │ │ ├── texture_load.cpp │ │ │ │ ├── texture_load_swizzled.cpp │ │ │ │ ├── texture_mipmap_level.cpp │ │ │ │ ├── texture_query.cpp │ │ │ │ ├── video_helper.cpp │ │ │ │ ├── video_helper.h │ │ │ │ ├── video_minimum_maximum.cpp │ │ │ │ ├── video_multiply_add.cpp │ │ │ │ ├── video_set_predicate.cpp │ │ │ │ ├── vote.cpp │ │ │ │ └── warp_shuffle.cpp │ │ │ ├── translate.cpp │ │ │ └── translate.h │ │ │ ├── translate_program.cpp │ │ │ └── translate_program.h │ ├── host_translate_info.h │ ├── ir_opt │ │ ├── collect_shader_info_pass.cpp │ │ ├── conditional_barrier_pass.cpp │ │ ├── constant_propagation_pass.cpp │ │ ├── dead_code_elimination_pass.cpp │ │ ├── dual_vertex_pass.cpp │ │ ├── global_memory_to_storage_buffer_pass.cpp │ │ ├── identity_removal_pass.cpp │ │ ├── layer_pass.cpp │ │ ├── lower_fp16_to_fp32.cpp │ │ ├── lower_fp64_to_fp32.cpp │ │ ├── lower_int64_to_int32.cpp │ │ ├── passes.h │ │ ├── position_pass.cpp │ │ ├── rescaling_pass.cpp │ │ ├── ssa_rewrite_pass.cpp │ │ ├── texture_pass.cpp │ │ ├── vendor_workaround_pass.cpp │ │ └── verification_pass.cpp │ ├── object_pool.h │ ├── precompiled_headers.h │ ├── profile.h │ ├── program_header.h │ ├── runtime_info.h │ ├── shader_info.h │ ├── stage.h │ └── varying_state.h ├── tests │ ├── CMakeLists.txt │ ├── common │ │ ├── bit_field.cpp │ │ ├── cityhash.cpp │ │ ├── container_hash.cpp │ │ ├── fibers.cpp │ │ ├── host_memory.cpp │ │ ├── param_package.cpp │ │ ├── range_map.cpp │ │ ├── ring_buffer.cpp │ │ ├── scratch_buffer.cpp │ │ └── unique_function.cpp │ ├── core │ │ ├── core_timing.cpp │ │ └── internal_network │ │ │ └── network.cpp │ ├── input_common │ │ └── calibration_configuration_job.cpp │ ├── precompiled_headers.h │ └── video_core │ │ └── memory_tracker.cpp ├── video_core │ ├── CMakeLists.txt │ ├── buffer_cache │ │ ├── buffer_base.h │ │ ├── buffer_cache.cpp │ │ ├── buffer_cache.h │ │ ├── buffer_cache_base.h │ │ ├── memory_tracker_base.h │ │ ├── usage_tracker.h │ │ └── word_manager.h │ ├── cache_types.h │ ├── capture.h │ ├── cdma_pusher.cpp │ ├── cdma_pusher.h │ ├── compatible_formats.cpp │ ├── compatible_formats.h │ ├── control │ │ ├── channel_state.cpp │ │ ├── channel_state.h │ │ ├── channel_state_cache.cpp │ │ ├── channel_state_cache.h │ │ ├── channel_state_cache.inc │ │ ├── scheduler.cpp │ │ └── scheduler.h │ ├── delayed_destruction_ring.h │ ├── dirty_flags.cpp │ ├── dirty_flags.h │ ├── dma_pusher.cpp │ ├── dma_pusher.h │ ├── engines │ │ ├── const_buffer_info.h │ │ ├── draw_manager.cpp │ │ ├── draw_manager.h │ │ ├── engine_interface.h │ │ ├── engine_upload.cpp │ │ ├── engine_upload.h │ │ ├── fermi_2d.cpp │ │ ├── fermi_2d.h │ │ ├── kepler_compute.cpp │ │ ├── kepler_compute.h │ │ ├── kepler_memory.cpp │ │ ├── kepler_memory.h │ │ ├── maxwell_3d.cpp │ │ ├── maxwell_3d.h │ │ ├── maxwell_dma.cpp │ │ ├── maxwell_dma.h │ │ ├── puller.cpp │ │ ├── puller.h │ │ └── sw_blitter │ │ │ ├── blitter.cpp │ │ │ ├── blitter.h │ │ │ ├── converter.cpp │ │ │ ├── converter.h │ │ │ └── generate_converters.py │ ├── fence_manager.h │ ├── framebuffer_config.cpp │ ├── framebuffer_config.h │ ├── fsr.cpp │ ├── fsr.h │ ├── gpu.cpp │ ├── gpu.h │ ├── gpu_thread.cpp │ ├── gpu_thread.h │ ├── guest_memory.h │ ├── host1x │ │ ├── codecs │ │ │ ├── decoder.cpp │ │ │ ├── decoder.h │ │ │ ├── h264.cpp │ │ │ ├── h264.h │ │ │ ├── vp8.cpp │ │ │ ├── vp8.h │ │ │ ├── vp9.cpp │ │ │ ├── vp9.h │ │ │ └── vp9_types.h │ │ ├── control.cpp │ │ ├── control.h │ │ ├── ffmpeg │ │ │ ├── ffmpeg.cpp │ │ │ └── ffmpeg.h │ │ ├── gpu_device_memory_manager.cpp │ │ ├── gpu_device_memory_manager.h │ │ ├── host1x.cpp │ │ ├── host1x.h │ │ ├── nvdec.cpp │ │ ├── nvdec.h │ │ ├── nvdec_common.h │ │ ├── syncpoint_manager.cpp │ │ ├── syncpoint_manager.h │ │ ├── vic.cpp │ │ └── vic.h │ ├── host_shaders │ │ ├── CMakeLists.txt │ │ ├── StringShaderHeader.cmake │ │ ├── astc_decoder.comp │ │ ├── blit_color_float.frag │ │ ├── block_linear_unswizzle_2d.comp │ │ ├── block_linear_unswizzle_3d.comp │ │ ├── convert_abgr8_to_d24s8.frag │ │ ├── convert_abgr8_to_d32f.frag │ │ ├── convert_d24s8_to_abgr8.frag │ │ ├── convert_d32f_to_abgr8.frag │ │ ├── convert_depth_to_float.frag │ │ ├── convert_float_to_depth.frag │ │ ├── convert_msaa_to_non_msaa.comp │ │ ├── convert_non_msaa_to_msaa.comp │ │ ├── convert_s8d24_to_abgr8.frag │ │ ├── fidelityfx_fsr.frag │ │ ├── full_screen_triangle.vert │ │ ├── fxaa.frag │ │ ├── fxaa.vert │ │ ├── opengl_convert_s8d24.comp │ │ ├── opengl_copy_bc4.comp │ │ ├── opengl_fidelityfx_fsr.frag │ │ ├── opengl_fidelityfx_fsr_easu.frag │ │ ├── opengl_fidelityfx_fsr_rcas.frag │ │ ├── opengl_lmem_warmup.comp │ │ ├── opengl_present.frag │ │ ├── opengl_present.vert │ │ ├── opengl_present_scaleforce.frag │ │ ├── opengl_smaa.glsl │ │ ├── pitch_unswizzle.comp │ │ ├── present_bicubic.frag │ │ ├── present_gaussian.frag │ │ ├── queries_prefix_scan_sum.comp │ │ ├── queries_prefix_scan_sum_nosubgroups.comp │ │ ├── resolve_conditional_render.comp │ │ ├── smaa_blending_weight_calculation.frag │ │ ├── smaa_blending_weight_calculation.vert │ │ ├── smaa_edge_detection.frag │ │ ├── smaa_edge_detection.vert │ │ ├── smaa_neighborhood_blending.frag │ │ ├── smaa_neighborhood_blending.vert │ │ ├── source_shader.h.in │ │ ├── vulkan_blit_depth_stencil.frag │ │ ├── vulkan_color_clear.frag │ │ ├── vulkan_color_clear.vert │ │ ├── vulkan_depthstencil_clear.frag │ │ ├── vulkan_fidelityfx_fsr.vert │ │ ├── vulkan_fidelityfx_fsr_easu_fp16.frag │ │ ├── vulkan_fidelityfx_fsr_easu_fp32.frag │ │ ├── vulkan_fidelityfx_fsr_rcas_fp16.frag │ │ ├── vulkan_fidelityfx_fsr_rcas_fp32.frag │ │ ├── vulkan_present.frag │ │ ├── vulkan_present.vert │ │ ├── vulkan_present_scaleforce_fp16.frag │ │ ├── vulkan_present_scaleforce_fp32.frag │ │ ├── vulkan_quad_indexed.comp │ │ ├── vulkan_turbo_mode.comp │ │ └── vulkan_uint8.comp │ ├── invalidation_accumulator.h │ ├── macro │ │ ├── macro.cpp │ │ ├── macro.h │ │ ├── macro_hle.cpp │ │ ├── macro_hle.h │ │ ├── macro_interpreter.cpp │ │ ├── macro_interpreter.h │ │ ├── macro_jit_x64.cpp │ │ └── macro_jit_x64.h │ ├── memory_manager.cpp │ ├── memory_manager.h │ ├── precompiled_headers.h │ ├── present.h │ ├── pte_kind.h │ ├── query_cache.h │ ├── query_cache │ │ ├── bank_base.h │ │ ├── query_base.h │ │ ├── query_cache.h │ │ ├── query_cache_base.h │ │ ├── query_stream.h │ │ └── types.h │ ├── rasterizer_download_area.h │ ├── rasterizer_interface.h │ ├── renderer_base.cpp │ ├── renderer_base.h │ ├── renderer_null │ │ ├── null_rasterizer.cpp │ │ ├── null_rasterizer.h │ │ ├── renderer_null.cpp │ │ └── renderer_null.h │ ├── renderer_opengl │ │ ├── blit_image.cpp │ │ ├── blit_image.h │ │ ├── gl_blit_screen.cpp │ │ ├── gl_blit_screen.h │ │ ├── gl_buffer_cache.cpp │ │ ├── gl_buffer_cache.h │ │ ├── gl_buffer_cache_base.cpp │ │ ├── gl_compute_pipeline.cpp │ │ ├── gl_compute_pipeline.h │ │ ├── gl_device.cpp │ │ ├── gl_device.h │ │ ├── gl_fence_manager.cpp │ │ ├── gl_fence_manager.h │ │ ├── gl_graphics_pipeline.cpp │ │ ├── gl_graphics_pipeline.h │ │ ├── gl_query_cache.cpp │ │ ├── gl_query_cache.h │ │ ├── gl_rasterizer.cpp │ │ ├── gl_rasterizer.h │ │ ├── gl_resource_manager.cpp │ │ ├── gl_resource_manager.h │ │ ├── gl_shader_cache.cpp │ │ ├── gl_shader_cache.h │ │ ├── gl_shader_context.h │ │ ├── gl_shader_manager.cpp │ │ ├── gl_shader_manager.h │ │ ├── gl_shader_util.cpp │ │ ├── gl_shader_util.h │ │ ├── gl_staging_buffer_pool.cpp │ │ ├── gl_staging_buffer_pool.h │ │ ├── gl_state_tracker.cpp │ │ ├── gl_state_tracker.h │ │ ├── gl_texture_cache.cpp │ │ ├── gl_texture_cache.h │ │ ├── gl_texture_cache_base.cpp │ │ ├── maxwell_to_gl.h │ │ ├── present │ │ │ ├── filters.cpp │ │ │ ├── filters.h │ │ │ ├── fsr.cpp │ │ │ ├── fsr.h │ │ │ ├── fxaa.cpp │ │ │ ├── fxaa.h │ │ │ ├── layer.cpp │ │ │ ├── layer.h │ │ │ ├── present_uniforms.h │ │ │ ├── smaa.cpp │ │ │ ├── smaa.h │ │ │ ├── util.h │ │ │ ├── window_adapt_pass.cpp │ │ │ └── window_adapt_pass.h │ │ ├── renderer_opengl.cpp │ │ ├── renderer_opengl.h │ │ ├── util_shaders.cpp │ │ └── util_shaders.h │ ├── renderer_vulkan │ │ ├── blit_image.cpp │ │ ├── blit_image.h │ │ ├── fixed_pipeline_state.cpp │ │ ├── fixed_pipeline_state.h │ │ ├── maxwell_to_vk.cpp │ │ ├── maxwell_to_vk.h │ │ ├── pipeline_helper.h │ │ ├── pipeline_statistics.cpp │ │ ├── pipeline_statistics.h │ │ ├── present │ │ │ ├── anti_alias_pass.h │ │ │ ├── filters.cpp │ │ │ ├── filters.h │ │ │ ├── fsr.cpp │ │ │ ├── fsr.h │ │ │ ├── fxaa.cpp │ │ │ ├── fxaa.h │ │ │ ├── layer.cpp │ │ │ ├── layer.h │ │ │ ├── present_push_constants.h │ │ │ ├── smaa.cpp │ │ │ ├── smaa.h │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── window_adapt_pass.cpp │ │ │ └── window_adapt_pass.h │ │ ├── renderer_vulkan.cpp │ │ ├── renderer_vulkan.h │ │ ├── vk_blit_screen.cpp │ │ ├── vk_blit_screen.h │ │ ├── vk_buffer_cache.cpp │ │ ├── vk_buffer_cache.h │ │ ├── vk_buffer_cache_base.cpp │ │ ├── vk_command_pool.cpp │ │ ├── vk_command_pool.h │ │ ├── vk_compute_pass.cpp │ │ ├── vk_compute_pass.h │ │ ├── vk_compute_pipeline.cpp │ │ ├── vk_compute_pipeline.h │ │ ├── vk_descriptor_pool.cpp │ │ ├── vk_descriptor_pool.h │ │ ├── vk_fence_manager.cpp │ │ ├── vk_fence_manager.h │ │ ├── vk_graphics_pipeline.cpp │ │ ├── vk_graphics_pipeline.h │ │ ├── vk_master_semaphore.cpp │ │ ├── vk_master_semaphore.h │ │ ├── vk_pipeline_cache.cpp │ │ ├── vk_pipeline_cache.h │ │ ├── vk_present_manager.cpp │ │ ├── vk_present_manager.h │ │ ├── vk_query_cache.cpp │ │ ├── vk_query_cache.h │ │ ├── vk_rasterizer.cpp │ │ ├── vk_rasterizer.h │ │ ├── vk_render_pass_cache.cpp │ │ ├── vk_render_pass_cache.h │ │ ├── vk_resource_pool.cpp │ │ ├── vk_resource_pool.h │ │ ├── vk_scheduler.cpp │ │ ├── vk_scheduler.h │ │ ├── vk_shader_util.cpp │ │ ├── vk_shader_util.h │ │ ├── vk_staging_buffer_pool.cpp │ │ ├── vk_staging_buffer_pool.h │ │ ├── vk_state_tracker.cpp │ │ ├── vk_state_tracker.h │ │ ├── vk_swapchain.cpp │ │ ├── vk_swapchain.h │ │ ├── vk_texture_cache.cpp │ │ ├── vk_texture_cache.h │ │ ├── vk_texture_cache_base.cpp │ │ ├── vk_turbo_mode.cpp │ │ ├── vk_turbo_mode.h │ │ ├── vk_update_descriptor.cpp │ │ └── vk_update_descriptor.h │ ├── shader_cache.cpp │ ├── shader_cache.h │ ├── shader_environment.cpp │ ├── shader_environment.h │ ├── shader_notify.cpp │ ├── shader_notify.h │ ├── smaa_area_tex.h │ ├── smaa_search_tex.h │ ├── surface.cpp │ ├── surface.h │ ├── texture_cache │ │ ├── accelerated_swizzle.cpp │ │ ├── accelerated_swizzle.h │ │ ├── decode_bc.cpp │ │ ├── decode_bc.h │ │ ├── descriptor_table.h │ │ ├── format_lookup_table.cpp │ │ ├── format_lookup_table.h │ │ ├── formatter.cpp │ │ ├── formatter.h │ │ ├── image_base.cpp │ │ ├── image_base.h │ │ ├── image_info.cpp │ │ ├── image_info.h │ │ ├── image_view_base.cpp │ │ ├── image_view_base.h │ │ ├── image_view_info.cpp │ │ ├── image_view_info.h │ │ ├── render_targets.h │ │ ├── samples_helper.h │ │ ├── texture_cache.cpp │ │ ├── texture_cache.h │ │ ├── texture_cache_base.h │ │ ├── types.h │ │ ├── util.cpp │ │ └── util.h │ ├── textures │ │ ├── astc.cpp │ │ ├── astc.h │ │ ├── bcn.cpp │ │ ├── bcn.h │ │ ├── decoders.cpp │ │ ├── decoders.h │ │ ├── texture.cpp │ │ ├── texture.h │ │ ├── workers.cpp │ │ └── workers.h │ ├── transform_feedback.cpp │ ├── transform_feedback.h │ ├── video_core.cpp │ ├── video_core.h │ └── vulkan_common │ │ ├── nsight_aftermath_tracker.cpp │ │ ├── nsight_aftermath_tracker.h │ │ ├── vk_enum_string_helper.h │ │ ├── vma.cpp │ │ ├── vma.h │ │ ├── vulkan.h │ │ ├── vulkan_debug_callback.cpp │ │ ├── vulkan_debug_callback.h │ │ ├── vulkan_device.cpp │ │ ├── vulkan_device.h │ │ ├── vulkan_instance.cpp │ │ ├── vulkan_instance.h │ │ ├── vulkan_library.cpp │ │ ├── vulkan_library.h │ │ ├── vulkan_memory_allocator.cpp │ │ ├── vulkan_memory_allocator.h │ │ ├── vulkan_surface.cpp │ │ ├── vulkan_surface.h │ │ ├── vulkan_wrapper.cpp │ │ └── vulkan_wrapper.h ├── web_service │ ├── CMakeLists.txt │ ├── announce_room_json.cpp │ ├── announce_room_json.h │ ├── precompiled_headers.h │ ├── telemetry_json.cpp │ ├── telemetry_json.h │ ├── verify_login.cpp │ ├── verify_login.h │ ├── verify_user_jwt.cpp │ ├── verify_user_jwt.h │ ├── web_backend.cpp │ ├── web_backend.h │ └── web_result.h ├── yuzu │ ├── CMakeLists.txt │ ├── Info.plist │ ├── about_dialog.cpp │ ├── about_dialog.h │ ├── aboutdialog.ui │ ├── applets │ │ ├── qt_amiibo_settings.cpp │ │ ├── qt_amiibo_settings.h │ │ ├── qt_amiibo_settings.ui │ │ ├── qt_controller.cpp │ │ ├── qt_controller.h │ │ ├── qt_controller.ui │ │ ├── qt_error.cpp │ │ ├── qt_error.h │ │ ├── qt_profile_select.cpp │ │ ├── qt_profile_select.h │ │ ├── qt_software_keyboard.cpp │ │ ├── qt_software_keyboard.h │ │ ├── qt_software_keyboard.ui │ │ ├── qt_web_browser.cpp │ │ ├── qt_web_browser.h │ │ └── qt_web_browser_scripts.h │ ├── bootmanager.cpp │ ├── bootmanager.h │ ├── breakpad.cpp │ ├── breakpad.h │ ├── compatdb.cpp │ ├── compatdb.h │ ├── compatdb.ui │ ├── compatibility_list.cpp │ ├── compatibility_list.h │ ├── configuration │ │ ├── configuration_shared.cpp │ │ ├── configuration_shared.h │ │ ├── configure.ui │ │ ├── configure_applets.cpp │ │ ├── configure_applets.h │ │ ├── configure_applets.ui │ │ ├── configure_audio.cpp │ │ ├── configure_audio.h │ │ ├── configure_audio.ui │ │ ├── configure_camera.cpp │ │ ├── configure_camera.h │ │ ├── configure_camera.ui │ │ ├── configure_cpu.cpp │ │ ├── configure_cpu.h │ │ ├── configure_cpu.ui │ │ ├── configure_cpu_debug.cpp │ │ ├── configure_cpu_debug.h │ │ ├── configure_cpu_debug.ui │ │ ├── configure_debug.cpp │ │ ├── configure_debug.h │ │ ├── configure_debug.ui │ │ ├── configure_debug_controller.cpp │ │ ├── configure_debug_controller.h │ │ ├── configure_debug_controller.ui │ │ ├── configure_debug_tab.cpp │ │ ├── configure_debug_tab.h │ │ ├── configure_debug_tab.ui │ │ ├── configure_dialog.cpp │ │ ├── configure_dialog.h │ │ ├── configure_filesystem.cpp │ │ ├── configure_filesystem.h │ │ ├── configure_filesystem.ui │ │ ├── configure_general.cpp │ │ ├── configure_general.h │ │ ├── configure_general.ui │ │ ├── configure_graphics.cpp │ │ ├── configure_graphics.h │ │ ├── configure_graphics.ui │ │ ├── configure_graphics_advanced.cpp │ │ ├── configure_graphics_advanced.h │ │ ├── configure_graphics_advanced.ui │ │ ├── configure_hotkeys.cpp │ │ ├── configure_hotkeys.h │ │ ├── configure_hotkeys.ui │ │ ├── configure_input.cpp │ │ ├── configure_input.h │ │ ├── configure_input.ui │ │ ├── configure_input_advanced.cpp │ │ ├── configure_input_advanced.h │ │ ├── configure_input_advanced.ui │ │ ├── configure_input_per_game.cpp │ │ ├── configure_input_per_game.h │ │ ├── configure_input_per_game.ui │ │ ├── configure_input_player.cpp │ │ ├── configure_input_player.h │ │ ├── configure_input_player.ui │ │ ├── configure_input_player_widget.cpp │ │ ├── configure_input_player_widget.h │ │ ├── configure_input_profile_dialog.cpp │ │ ├── configure_input_profile_dialog.h │ │ ├── configure_input_profile_dialog.ui │ │ ├── configure_linux_tab.cpp │ │ ├── configure_linux_tab.h │ │ ├── configure_linux_tab.ui │ │ ├── configure_motion_touch.cpp │ │ ├── configure_motion_touch.h │ │ ├── configure_motion_touch.ui │ │ ├── configure_mouse_panning.cpp │ │ ├── configure_mouse_panning.h │ │ ├── configure_mouse_panning.ui │ │ ├── configure_network.cpp │ │ ├── configure_network.h │ │ ├── configure_network.ui │ │ ├── configure_per_game.cpp │ │ ├── configure_per_game.h │ │ ├── configure_per_game.ui │ │ ├── configure_per_game_addons.cpp │ │ ├── configure_per_game_addons.h │ │ ├── configure_per_game_addons.ui │ │ ├── configure_profile_manager.cpp │ │ ├── configure_profile_manager.h │ │ ├── configure_profile_manager.ui │ │ ├── configure_ringcon.cpp │ │ ├── configure_ringcon.h │ │ ├── configure_ringcon.ui │ │ ├── configure_system.cpp │ │ ├── configure_system.h │ │ ├── configure_system.ui │ │ ├── configure_tas.cpp │ │ ├── configure_tas.h │ │ ├── configure_tas.ui │ │ ├── configure_touch_from_button.cpp │ │ ├── configure_touch_from_button.h │ │ ├── configure_touch_from_button.ui │ │ ├── configure_touch_widget.h │ │ ├── configure_touchscreen_advanced.cpp │ │ ├── configure_touchscreen_advanced.h │ │ ├── configure_touchscreen_advanced.ui │ │ ├── configure_ui.cpp │ │ ├── configure_ui.h │ │ ├── configure_ui.ui │ │ ├── configure_vibration.cpp │ │ ├── configure_vibration.h │ │ ├── configure_vibration.ui │ │ ├── configure_web.cpp │ │ ├── configure_web.h │ │ ├── configure_web.ui │ │ ├── input_profiles.cpp │ │ ├── input_profiles.h │ │ ├── qt_config.cpp │ │ ├── qt_config.h │ │ ├── shared_translation.cpp │ │ ├── shared_translation.h │ │ ├── shared_widget.cpp │ │ └── shared_widget.h │ ├── debugger │ │ ├── console.cpp │ │ ├── console.h │ │ ├── controller.cpp │ │ ├── controller.h │ │ ├── profiler.cpp │ │ ├── profiler.h │ │ ├── wait_tree.cpp │ │ └── wait_tree.h │ ├── discord.h │ ├── discord_impl.cpp │ ├── discord_impl.h │ ├── game_list.cpp │ ├── game_list.h │ ├── game_list_p.h │ ├── game_list_worker.cpp │ ├── game_list_worker.h │ ├── hotkeys.cpp │ ├── hotkeys.h │ ├── install_dialog.cpp │ ├── install_dialog.h │ ├── loading_screen.cpp │ ├── loading_screen.h │ ├── loading_screen.ui │ ├── main.cpp │ ├── main.h │ ├── main.ui │ ├── multiplayer │ │ ├── chat_room.cpp │ │ ├── chat_room.h │ │ ├── chat_room.ui │ │ ├── client_room.cpp │ │ ├── client_room.h │ │ ├── client_room.ui │ │ ├── direct_connect.cpp │ │ ├── direct_connect.h │ │ ├── direct_connect.ui │ │ ├── host_room.cpp │ │ ├── host_room.h │ │ ├── host_room.ui │ │ ├── lobby.cpp │ │ ├── lobby.h │ │ ├── lobby.ui │ │ ├── lobby_p.h │ │ ├── message.cpp │ │ ├── message.h │ │ ├── moderation_dialog.cpp │ │ ├── moderation_dialog.h │ │ ├── moderation_dialog.ui │ │ ├── state.cpp │ │ ├── state.h │ │ └── validation.h │ ├── play_time_manager.cpp │ ├── play_time_manager.h │ ├── precompiled_headers.h │ ├── qt_common.cpp │ ├── qt_common.h │ ├── startup_checks.cpp │ ├── startup_checks.h │ ├── uisettings.cpp │ ├── uisettings.h │ ├── util │ │ ├── clickable_label.cpp │ │ ├── clickable_label.h │ │ ├── controller_navigation.cpp │ │ ├── controller_navigation.h │ │ ├── limitable_input_dialog.cpp │ │ ├── limitable_input_dialog.h │ │ ├── overlay_dialog.cpp │ │ ├── overlay_dialog.h │ │ ├── overlay_dialog.ui │ │ ├── sequence_dialog │ │ │ ├── sequence_dialog.cpp │ │ │ └── sequence_dialog.h │ │ ├── url_request_interceptor.cpp │ │ ├── url_request_interceptor.h │ │ ├── util.cpp │ │ └── util.h │ ├── vk_device_info.cpp │ ├── vk_device_info.h │ ├── yuzu.qrc │ └── yuzu.rc └── yuzu_cmd │ ├── CMakeLists.txt │ ├── emu_window │ ├── emu_window_sdl2.cpp │ ├── emu_window_sdl2.h │ ├── emu_window_sdl2_gl.cpp │ ├── emu_window_sdl2_gl.h │ ├── emu_window_sdl2_null.cpp │ ├── emu_window_sdl2_null.h │ ├── emu_window_sdl2_vk.cpp │ └── emu_window_sdl2_vk.h │ ├── precompiled_headers.h │ ├── sdl_config.cpp │ ├── sdl_config.h │ ├── yuzu.cpp │ └── yuzu.rc ├── tools └── reset-submodules.sh └── vcpkg.json /.ci/scripts/android/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/android/build.sh -------------------------------------------------------------------------------- /.ci/scripts/android/eabuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/android/eabuild.sh -------------------------------------------------------------------------------- /.ci/scripts/android/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/android/upload.sh -------------------------------------------------------------------------------- /.ci/scripts/clang/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/clang/docker.sh -------------------------------------------------------------------------------- /.ci/scripts/clang/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/clang/exec.sh -------------------------------------------------------------------------------- /.ci/scripts/clang/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/clang/upload.sh -------------------------------------------------------------------------------- /.ci/scripts/common/post-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/common/post-upload.sh -------------------------------------------------------------------------------- /.ci/scripts/common/pre-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/common/pre-upload.sh -------------------------------------------------------------------------------- /.ci/scripts/format/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/format/docker.sh -------------------------------------------------------------------------------- /.ci/scripts/format/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/format/exec.sh -------------------------------------------------------------------------------- /.ci/scripts/format/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/format/script.sh -------------------------------------------------------------------------------- /.ci/scripts/linux/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/linux/docker.sh -------------------------------------------------------------------------------- /.ci/scripts/linux/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/linux/exec.sh -------------------------------------------------------------------------------- /.ci/scripts/linux/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/linux/upload.sh -------------------------------------------------------------------------------- /.ci/scripts/transifex/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/transifex/docker.sh -------------------------------------------------------------------------------- /.ci/scripts/windows/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/windows/docker.sh -------------------------------------------------------------------------------- /.ci/scripts/windows/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/windows/exec.sh -------------------------------------------------------------------------------- /.ci/scripts/windows/scan_dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/windows/scan_dll.py -------------------------------------------------------------------------------- /.ci/scripts/windows/upload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/windows/upload.ps1 -------------------------------------------------------------------------------- /.ci/scripts/windows/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/scripts/windows/upload.sh -------------------------------------------------------------------------------- /.ci/templates/build-mock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/build-mock.yml -------------------------------------------------------------------------------- /.ci/templates/build-msvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/build-msvc.yml -------------------------------------------------------------------------------- /.ci/templates/build-single.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/build-single.yml -------------------------------------------------------------------------------- /.ci/templates/build-standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/build-standard.yml -------------------------------------------------------------------------------- /.ci/templates/build-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/build-testing.yml -------------------------------------------------------------------------------- /.ci/templates/format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/format-check.yml -------------------------------------------------------------------------------- /.ci/templates/merge-private.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/merge-private.yml -------------------------------------------------------------------------------- /.ci/templates/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/merge.yml -------------------------------------------------------------------------------- /.ci/templates/mergebot-private.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/mergebot-private.yml -------------------------------------------------------------------------------- /.ci/templates/mergebot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/mergebot.yml -------------------------------------------------------------------------------- /.ci/templates/release-download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/release-download.yml -------------------------------------------------------------------------------- /.ci/templates/release-github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/release-github.yml -------------------------------------------------------------------------------- /.ci/templates/sync-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/templates/sync-source.yml -------------------------------------------------------------------------------- /.ci/yuzu-mainline-step1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/yuzu-mainline-step1.yml -------------------------------------------------------------------------------- /.ci/yuzu-mainline-step2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/yuzu-mainline-step2.yml -------------------------------------------------------------------------------- /.ci/yuzu-patreon-step1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/yuzu-patreon-step1.yml -------------------------------------------------------------------------------- /.ci/yuzu-patreon-step2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/yuzu-patreon-step2.yml -------------------------------------------------------------------------------- /.ci/yuzu-repo-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/yuzu-repo-sync.yml -------------------------------------------------------------------------------- /.ci/yuzu-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.ci/yuzu-verify.yml -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.codespellrc -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/android-merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.github/workflows/android-merge.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.gitmodules -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/CopyYuzuQt5Deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/CopyYuzuQt5Deps.cmake -------------------------------------------------------------------------------- /CMakeModules/CopyYuzuSDLDeps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/CopyYuzuSDLDeps.cmake -------------------------------------------------------------------------------- /CMakeModules/FindDiscordRPC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/FindDiscordRPC.cmake -------------------------------------------------------------------------------- /CMakeModules/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/FindFFmpeg.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/FindLLVM.cmake -------------------------------------------------------------------------------- /CMakeModules/FindOpus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/FindOpus.cmake -------------------------------------------------------------------------------- /CMakeModules/FindRenderDoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/FindRenderDoc.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSimpleIni.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/FindSimpleIni.cmake -------------------------------------------------------------------------------- /CMakeModules/Findenet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/Findenet.cmake -------------------------------------------------------------------------------- /CMakeModules/Findgamemode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/Findgamemode.cmake -------------------------------------------------------------------------------- /CMakeModules/Findhttplib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/Findhttplib.cmake -------------------------------------------------------------------------------- /CMakeModules/Findlibusb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/Findlibusb.cmake -------------------------------------------------------------------------------- /CMakeModules/Findlz4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/Findlz4.cmake -------------------------------------------------------------------------------- /CMakeModules/Findstb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/Findstb.cmake -------------------------------------------------------------------------------- /CMakeModules/Findzstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/Findzstd.cmake -------------------------------------------------------------------------------- /CMakeModules/GenerateSCMRev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/GenerateSCMRev.cmake -------------------------------------------------------------------------------- /CMakeModules/MSVCCache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/MSVCCache.cmake -------------------------------------------------------------------------------- /CMakeModules/MinGWClangCross.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/MinGWClangCross.cmake -------------------------------------------------------------------------------- /CMakeModules/MinGWCross.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CMakeModules/MinGWCross.cmake -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/BSL-1.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/CC-BY-SA-3.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/LGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LLVM-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/LLVM-exception.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/MPL-2.0.txt -------------------------------------------------------------------------------- /LICENSES/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/Unlicense.txt -------------------------------------------------------------------------------- /LICENSES/WTFPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/WTFPL.txt -------------------------------------------------------------------------------- /LICENSES/Zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/LICENSES/Zlib.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/README.md -------------------------------------------------------------------------------- /dist/72-yuzu-input.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/72-yuzu-input.rules -------------------------------------------------------------------------------- /dist/english_plurals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/english_plurals/README.md -------------------------------------------------------------------------------- /dist/english_plurals/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/english_plurals/en.ts -------------------------------------------------------------------------------- /dist/icons/overlay/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/arrow_left.png -------------------------------------------------------------------------------- /dist/icons/overlay/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/arrow_right.png -------------------------------------------------------------------------------- /dist/icons/overlay/button_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/button_A.png -------------------------------------------------------------------------------- /dist/icons/overlay/button_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/button_B.png -------------------------------------------------------------------------------- /dist/icons/overlay/button_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/button_L.png -------------------------------------------------------------------------------- /dist/icons/overlay/button_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/button_R.png -------------------------------------------------------------------------------- /dist/icons/overlay/button_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/button_X.png -------------------------------------------------------------------------------- /dist/icons/overlay/button_Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/button_Y.png -------------------------------------------------------------------------------- /dist/icons/overlay/button_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/button_plus.png -------------------------------------------------------------------------------- /dist/icons/overlay/overlay.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/icons/overlay/overlay.qrc -------------------------------------------------------------------------------- /dist/languages/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore the source language file 2 | en.ts 3 | -------------------------------------------------------------------------------- /dist/languages/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/.tx/config -------------------------------------------------------------------------------- /dist/languages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/README.md -------------------------------------------------------------------------------- /dist/languages/ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/ar.ts -------------------------------------------------------------------------------- /dist/languages/ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/ca.ts -------------------------------------------------------------------------------- /dist/languages/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/cs.ts -------------------------------------------------------------------------------- /dist/languages/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/da.ts -------------------------------------------------------------------------------- /dist/languages/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/de.ts -------------------------------------------------------------------------------- /dist/languages/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/el.ts -------------------------------------------------------------------------------- /dist/languages/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/es.ts -------------------------------------------------------------------------------- /dist/languages/fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/fi.ts -------------------------------------------------------------------------------- /dist/languages/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/fr.ts -------------------------------------------------------------------------------- /dist/languages/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/hu.ts -------------------------------------------------------------------------------- /dist/languages/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/id.ts -------------------------------------------------------------------------------- /dist/languages/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/it.ts -------------------------------------------------------------------------------- /dist/languages/ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/ja_JP.ts -------------------------------------------------------------------------------- /dist/languages/ko_KR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/ko_KR.ts -------------------------------------------------------------------------------- /dist/languages/nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/nb.ts -------------------------------------------------------------------------------- /dist/languages/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/nl.ts -------------------------------------------------------------------------------- /dist/languages/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/pl.ts -------------------------------------------------------------------------------- /dist/languages/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/pt_BR.ts -------------------------------------------------------------------------------- /dist/languages/pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/pt_PT.ts -------------------------------------------------------------------------------- /dist/languages/ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/ru_RU.ts -------------------------------------------------------------------------------- /dist/languages/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/sv.ts -------------------------------------------------------------------------------- /dist/languages/tr_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/tr_TR.ts -------------------------------------------------------------------------------- /dist/languages/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/uk.ts -------------------------------------------------------------------------------- /dist/languages/vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/vi.ts -------------------------------------------------------------------------------- /dist/languages/vi_VN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/vi_VN.ts -------------------------------------------------------------------------------- /dist/languages/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/zh_CN.ts -------------------------------------------------------------------------------- /dist/languages/zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/languages/zh_TW.ts -------------------------------------------------------------------------------- /dist/org.yuzu_emu.yuzu.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/org.yuzu_emu.yuzu.desktop -------------------------------------------------------------------------------- /dist/org.yuzu_emu.yuzu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/org.yuzu_emu.yuzu.xml -------------------------------------------------------------------------------- /dist/qt_themes/colorful/style.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/qt_themes/colorful/style.qrc -------------------------------------------------------------------------------- /dist/qt_themes/default/default.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/qt_themes/default/default.qrc -------------------------------------------------------------------------------- /dist/qt_themes/default/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/qt_themes/default/style.qss -------------------------------------------------------------------------------- /dist/yuzu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/yuzu.bmp -------------------------------------------------------------------------------- /dist/yuzu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/yuzu.icns -------------------------------------------------------------------------------- /dist/yuzu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/yuzu.ico -------------------------------------------------------------------------------- /dist/yuzu.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/yuzu.manifest -------------------------------------------------------------------------------- /dist/yuzu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/dist/yuzu.svg -------------------------------------------------------------------------------- /externals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/CMakeLists.txt -------------------------------------------------------------------------------- /externals/bc_decoder/bc_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/bc_decoder/bc_decoder.h -------------------------------------------------------------------------------- /externals/ffmpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/ffmpeg/CMakeLists.txt -------------------------------------------------------------------------------- /externals/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /externals/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/getopt/getopt.c -------------------------------------------------------------------------------- /externals/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/getopt/getopt.h -------------------------------------------------------------------------------- /externals/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/glad/CMakeLists.txt -------------------------------------------------------------------------------- /externals/glad/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/glad/Readme.md -------------------------------------------------------------------------------- /externals/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/glad/include/glad/glad.h -------------------------------------------------------------------------------- /externals/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/glad/src/glad.c -------------------------------------------------------------------------------- /externals/libusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/libusb/CMakeLists.txt -------------------------------------------------------------------------------- /externals/libusb/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/libusb/config.h.in -------------------------------------------------------------------------------- /externals/microprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/microprofile/README.md -------------------------------------------------------------------------------- /externals/nx_tzdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/nx_tzdb/CMakeLists.txt -------------------------------------------------------------------------------- /externals/sse2neon/sse2neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/sse2neon/sse2neon.h -------------------------------------------------------------------------------- /externals/stb/stb_dxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/stb/stb_dxt.cpp -------------------------------------------------------------------------------- /externals/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/stb/stb_dxt.h -------------------------------------------------------------------------------- /externals/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/stb/stb_image.h -------------------------------------------------------------------------------- /externals/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/stb/stb_image_resize.h -------------------------------------------------------------------------------- /externals/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/stb/stb_image_write.h -------------------------------------------------------------------------------- /externals/tz/tz/tz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/tz/tz/tz.cpp -------------------------------------------------------------------------------- /externals/tz/tz/tz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/externals/tz/tz/tz.h -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/.gitignore -------------------------------------------------------------------------------- /src/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/app/build.gradle.kts -------------------------------------------------------------------------------- /src/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/app/debug.keystore -------------------------------------------------------------------------------- /src/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /src/android/app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-US 2 | -------------------------------------------------------------------------------- /src/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/build.gradle.kts -------------------------------------------------------------------------------- /src/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/gradle.properties -------------------------------------------------------------------------------- /src/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/gradlew -------------------------------------------------------------------------------- /src/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/gradlew.bat -------------------------------------------------------------------------------- /src/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/android/settings.gradle.kts -------------------------------------------------------------------------------- /src/audio_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/audio_core/adsp/adsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/adsp/adsp.cpp -------------------------------------------------------------------------------- /src/audio_core/adsp/adsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/adsp/adsp.h -------------------------------------------------------------------------------- /src/audio_core/adsp/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/adsp/mailbox.h -------------------------------------------------------------------------------- /src/audio_core/audio_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_core.cpp -------------------------------------------------------------------------------- /src/audio_core/audio_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_core.h -------------------------------------------------------------------------------- /src/audio_core/audio_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_event.cpp -------------------------------------------------------------------------------- /src/audio_core/audio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_event.h -------------------------------------------------------------------------------- /src/audio_core/audio_in_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_in_manager.h -------------------------------------------------------------------------------- /src/audio_core/audio_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_manager.cpp -------------------------------------------------------------------------------- /src/audio_core/audio_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_manager.h -------------------------------------------------------------------------------- /src/audio_core/audio_out_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/audio_out_manager.h -------------------------------------------------------------------------------- /src/audio_core/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/common/common.h -------------------------------------------------------------------------------- /src/audio_core/in/audio_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/in/audio_in.cpp -------------------------------------------------------------------------------- /src/audio_core/in/audio_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/in/audio_in.h -------------------------------------------------------------------------------- /src/audio_core/opus/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/opus/decoder.cpp -------------------------------------------------------------------------------- /src/audio_core/opus/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/opus/decoder.h -------------------------------------------------------------------------------- /src/audio_core/opus/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/opus/parameters.h -------------------------------------------------------------------------------- /src/audio_core/out/audio_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/out/audio_out.cpp -------------------------------------------------------------------------------- /src/audio_core/out/audio_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/out/audio_out.h -------------------------------------------------------------------------------- /src/audio_core/renderer/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/renderer/system.cpp -------------------------------------------------------------------------------- /src/audio_core/renderer/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/renderer/system.h -------------------------------------------------------------------------------- /src/audio_core/sink/cubeb_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/cubeb_sink.cpp -------------------------------------------------------------------------------- /src/audio_core/sink/cubeb_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/cubeb_sink.h -------------------------------------------------------------------------------- /src/audio_core/sink/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/null_sink.h -------------------------------------------------------------------------------- /src/audio_core/sink/oboe_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/oboe_sink.cpp -------------------------------------------------------------------------------- /src/audio_core/sink/oboe_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/oboe_sink.h -------------------------------------------------------------------------------- /src/audio_core/sink/sdl2_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/sdl2_sink.cpp -------------------------------------------------------------------------------- /src/audio_core/sink/sdl2_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/sdl2_sink.h -------------------------------------------------------------------------------- /src/audio_core/sink/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/sink.h -------------------------------------------------------------------------------- /src/audio_core/sink/sink_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/sink_details.h -------------------------------------------------------------------------------- /src/audio_core/sink/sink_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/audio_core/sink/sink_stream.h -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/address_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/address_space.cpp -------------------------------------------------------------------------------- /src/common/address_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/address_space.h -------------------------------------------------------------------------------- /src/common/address_space.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/address_space.inc -------------------------------------------------------------------------------- /src/common/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/algorithm.h -------------------------------------------------------------------------------- /src/common/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/alignment.h -------------------------------------------------------------------------------- /src/common/android/id_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/android/id_cache.cpp -------------------------------------------------------------------------------- /src/common/android/id_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/android/id_cache.h -------------------------------------------------------------------------------- /src/common/arm64/native_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/arm64/native_clock.cpp -------------------------------------------------------------------------------- /src/common/arm64/native_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/arm64/native_clock.h -------------------------------------------------------------------------------- /src/common/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/assert.cpp -------------------------------------------------------------------------------- /src/common/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/assert.h -------------------------------------------------------------------------------- /src/common/atomic_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/atomic_helpers.h -------------------------------------------------------------------------------- /src/common/atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/atomic_ops.h -------------------------------------------------------------------------------- /src/common/bit_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/bit_cast.h -------------------------------------------------------------------------------- /src/common/bit_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/bit_field.h -------------------------------------------------------------------------------- /src/common/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/bit_set.h -------------------------------------------------------------------------------- /src/common/bit_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/bit_util.h -------------------------------------------------------------------------------- /src/common/cityhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/cityhash.cpp -------------------------------------------------------------------------------- /src/common/cityhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/cityhash.h -------------------------------------------------------------------------------- /src/common/common_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/common_funcs.h -------------------------------------------------------------------------------- /src/common/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/common_types.h -------------------------------------------------------------------------------- /src/common/concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/concepts.h -------------------------------------------------------------------------------- /src/common/container_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/container_hash.h -------------------------------------------------------------------------------- /src/common/demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/demangle.cpp -------------------------------------------------------------------------------- /src/common/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/demangle.h -------------------------------------------------------------------------------- /src/common/detached_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/detached_tasks.cpp -------------------------------------------------------------------------------- /src/common/detached_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/detached_tasks.h -------------------------------------------------------------------------------- /src/common/div_ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/div_ceil.h -------------------------------------------------------------------------------- /src/common/dynamic_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/dynamic_library.cpp -------------------------------------------------------------------------------- /src/common/dynamic_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/dynamic_library.h -------------------------------------------------------------------------------- /src/common/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/elf.h -------------------------------------------------------------------------------- /src/common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/error.cpp -------------------------------------------------------------------------------- /src/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/error.h -------------------------------------------------------------------------------- /src/common/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/expected.h -------------------------------------------------------------------------------- /src/common/fiber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fiber.cpp -------------------------------------------------------------------------------- /src/common/fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fiber.h -------------------------------------------------------------------------------- /src/common/fixed_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fixed_point.h -------------------------------------------------------------------------------- /src/common/free_region_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/free_region_manager.h -------------------------------------------------------------------------------- /src/common/fs/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/file.cpp -------------------------------------------------------------------------------- /src/common/fs/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/file.h -------------------------------------------------------------------------------- /src/common/fs/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs.cpp -------------------------------------------------------------------------------- /src/common/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs.h -------------------------------------------------------------------------------- /src/common/fs/fs_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs_android.cpp -------------------------------------------------------------------------------- /src/common/fs/fs_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs_android.h -------------------------------------------------------------------------------- /src/common/fs/fs_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs_paths.h -------------------------------------------------------------------------------- /src/common/fs/fs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs_types.h -------------------------------------------------------------------------------- /src/common/fs/fs_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs_util.cpp -------------------------------------------------------------------------------- /src/common/fs/fs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/fs_util.h -------------------------------------------------------------------------------- /src/common/fs/path_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/path_util.cpp -------------------------------------------------------------------------------- /src/common/fs/path_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/fs/path_util.h -------------------------------------------------------------------------------- /src/common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/hash.h -------------------------------------------------------------------------------- /src/common/heap_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/heap_tracker.cpp -------------------------------------------------------------------------------- /src/common/heap_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/heap_tracker.h -------------------------------------------------------------------------------- /src/common/hex_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/hex_util.cpp -------------------------------------------------------------------------------- /src/common/hex_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/hex_util.h -------------------------------------------------------------------------------- /src/common/host_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/host_memory.cpp -------------------------------------------------------------------------------- /src/common/host_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/host_memory.h -------------------------------------------------------------------------------- /src/common/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/input.h -------------------------------------------------------------------------------- /src/common/intrusive_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/intrusive_list.h -------------------------------------------------------------------------------- /src/common/linux/gamemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/linux/gamemode.cpp -------------------------------------------------------------------------------- /src/common/linux/gamemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/linux/gamemode.h -------------------------------------------------------------------------------- /src/common/literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/literals.h -------------------------------------------------------------------------------- /src/common/logging/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/backend.cpp -------------------------------------------------------------------------------- /src/common/logging/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/backend.h -------------------------------------------------------------------------------- /src/common/logging/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/filter.cpp -------------------------------------------------------------------------------- /src/common/logging/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/filter.h -------------------------------------------------------------------------------- /src/common/logging/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/formatter.h -------------------------------------------------------------------------------- /src/common/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/log.h -------------------------------------------------------------------------------- /src/common/logging/log_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/log_entry.h -------------------------------------------------------------------------------- /src/common/logging/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/logging/types.h -------------------------------------------------------------------------------- /src/common/lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/lru_cache.h -------------------------------------------------------------------------------- /src/common/lz4_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/lz4_compression.cpp -------------------------------------------------------------------------------- /src/common/lz4_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/lz4_compression.h -------------------------------------------------------------------------------- /src/common/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/math_util.h -------------------------------------------------------------------------------- /src/common/memory_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/memory_detect.cpp -------------------------------------------------------------------------------- /src/common/memory_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/memory_detect.h -------------------------------------------------------------------------------- /src/common/microprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/microprofile.cpp -------------------------------------------------------------------------------- /src/common/microprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/microprofile.h -------------------------------------------------------------------------------- /src/common/microprofileui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/microprofileui.h -------------------------------------------------------------------------------- /src/common/nvidia_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/nvidia_flags.cpp -------------------------------------------------------------------------------- /src/common/nvidia_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/nvidia_flags.h -------------------------------------------------------------------------------- /src/common/overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/overflow.h -------------------------------------------------------------------------------- /src/common/page_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/page_table.cpp -------------------------------------------------------------------------------- /src/common/page_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/page_table.h -------------------------------------------------------------------------------- /src/common/param_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/param_package.cpp -------------------------------------------------------------------------------- /src/common/param_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/param_package.h -------------------------------------------------------------------------------- /src/common/parent_of_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/parent_of_member.h -------------------------------------------------------------------------------- /src/common/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/point.h -------------------------------------------------------------------------------- /src/common/polyfill_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/polyfill_ranges.h -------------------------------------------------------------------------------- /src/common/polyfill_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/polyfill_thread.h -------------------------------------------------------------------------------- /src/common/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/precompiled_headers.h -------------------------------------------------------------------------------- /src/common/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/quaternion.h -------------------------------------------------------------------------------- /src/common/range_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/range_map.h -------------------------------------------------------------------------------- /src/common/range_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/range_mutex.h -------------------------------------------------------------------------------- /src/common/range_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/range_sets.h -------------------------------------------------------------------------------- /src/common/range_sets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/range_sets.inc -------------------------------------------------------------------------------- /src/common/reader_writer_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/reader_writer_queue.h -------------------------------------------------------------------------------- /src/common/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/ring_buffer.h -------------------------------------------------------------------------------- /src/common/scm_rev.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/scm_rev.cpp.in -------------------------------------------------------------------------------- /src/common/scm_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/scm_rev.h -------------------------------------------------------------------------------- /src/common/scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/scope_exit.h -------------------------------------------------------------------------------- /src/common/scratch_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/scratch_buffer.h -------------------------------------------------------------------------------- /src/common/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings.cpp -------------------------------------------------------------------------------- /src/common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings.h -------------------------------------------------------------------------------- /src/common/settings_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings_common.cpp -------------------------------------------------------------------------------- /src/common/settings_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings_common.h -------------------------------------------------------------------------------- /src/common/settings_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings_enums.h -------------------------------------------------------------------------------- /src/common/settings_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings_input.cpp -------------------------------------------------------------------------------- /src/common/settings_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings_input.h -------------------------------------------------------------------------------- /src/common/settings_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/settings_setting.h -------------------------------------------------------------------------------- /src/common/signal_chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/signal_chain.cpp -------------------------------------------------------------------------------- /src/common/signal_chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/signal_chain.h -------------------------------------------------------------------------------- /src/common/slot_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/slot_vector.h -------------------------------------------------------------------------------- /src/common/socket_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/socket_types.h -------------------------------------------------------------------------------- /src/common/spin_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/spin_lock.cpp -------------------------------------------------------------------------------- /src/common/spin_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/spin_lock.h -------------------------------------------------------------------------------- /src/common/stb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/stb.cpp -------------------------------------------------------------------------------- /src/common/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/stb.h -------------------------------------------------------------------------------- /src/common/steady_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/steady_clock.cpp -------------------------------------------------------------------------------- /src/common/steady_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/steady_clock.h -------------------------------------------------------------------------------- /src/common/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/stream.cpp -------------------------------------------------------------------------------- /src/common/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/stream.h -------------------------------------------------------------------------------- /src/common/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/string_util.cpp -------------------------------------------------------------------------------- /src/common/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/string_util.h -------------------------------------------------------------------------------- /src/common/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/swap.h -------------------------------------------------------------------------------- /src/common/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/telemetry.cpp -------------------------------------------------------------------------------- /src/common/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/telemetry.h -------------------------------------------------------------------------------- /src/common/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/thread.cpp -------------------------------------------------------------------------------- /src/common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/thread.h -------------------------------------------------------------------------------- /src/common/thread_queue_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/thread_queue_list.h -------------------------------------------------------------------------------- /src/common/thread_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/thread_worker.h -------------------------------------------------------------------------------- /src/common/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/threadsafe_queue.h -------------------------------------------------------------------------------- /src/common/time_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/time_zone.cpp -------------------------------------------------------------------------------- /src/common/time_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/time_zone.h -------------------------------------------------------------------------------- /src/common/tiny_mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/tiny_mt.h -------------------------------------------------------------------------------- /src/common/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/tree.h -------------------------------------------------------------------------------- /src/common/typed_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/typed_address.h -------------------------------------------------------------------------------- /src/common/uint128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/uint128.h -------------------------------------------------------------------------------- /src/common/unique_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/unique_function.h -------------------------------------------------------------------------------- /src/common/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/uuid.cpp -------------------------------------------------------------------------------- /src/common/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/uuid.h -------------------------------------------------------------------------------- /src/common/vector_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/vector_math.h -------------------------------------------------------------------------------- /src/common/virtual_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/virtual_buffer.cpp -------------------------------------------------------------------------------- /src/common/virtual_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/virtual_buffer.h -------------------------------------------------------------------------------- /src/common/wall_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/wall_clock.cpp -------------------------------------------------------------------------------- /src/common/wall_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/wall_clock.h -------------------------------------------------------------------------------- /src/common/x64/cpu_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/cpu_detect.cpp -------------------------------------------------------------------------------- /src/common/x64/cpu_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/cpu_detect.h -------------------------------------------------------------------------------- /src/common/x64/cpu_wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/cpu_wait.cpp -------------------------------------------------------------------------------- /src/common/x64/cpu_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/cpu_wait.h -------------------------------------------------------------------------------- /src/common/x64/native_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/native_clock.cpp -------------------------------------------------------------------------------- /src/common/x64/native_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/native_clock.h -------------------------------------------------------------------------------- /src/common/x64/rdtsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/rdtsc.cpp -------------------------------------------------------------------------------- /src/common/x64/rdtsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/rdtsc.h -------------------------------------------------------------------------------- /src/common/x64/xbyak_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/xbyak_abi.h -------------------------------------------------------------------------------- /src/common/x64/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/x64/xbyak_util.h -------------------------------------------------------------------------------- /src/common/zstd_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/zstd_compression.cpp -------------------------------------------------------------------------------- /src/common/zstd_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/common/zstd_compression.h -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/arm/arm_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/arm_interface.cpp -------------------------------------------------------------------------------- /src/core/arm/arm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/arm_interface.h -------------------------------------------------------------------------------- /src/core/arm/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/debug.cpp -------------------------------------------------------------------------------- /src/core/arm/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/debug.h -------------------------------------------------------------------------------- /src/core/arm/exclusive_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/exclusive_monitor.cpp -------------------------------------------------------------------------------- /src/core/arm/exclusive_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/exclusive_monitor.h -------------------------------------------------------------------------------- /src/core/arm/nce/arm_nce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/arm_nce.cpp -------------------------------------------------------------------------------- /src/core/arm/nce/arm_nce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/arm_nce.h -------------------------------------------------------------------------------- /src/core/arm/nce/arm_nce.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/arm_nce.s -------------------------------------------------------------------------------- /src/core/arm/nce/guest_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/guest_context.h -------------------------------------------------------------------------------- /src/core/arm/nce/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/instructions.h -------------------------------------------------------------------------------- /src/core/arm/nce/patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/patcher.cpp -------------------------------------------------------------------------------- /src/core/arm/nce/patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/patcher.h -------------------------------------------------------------------------------- /src/core/arm/nce/visitor_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/nce/visitor_base.h -------------------------------------------------------------------------------- /src/core/arm/symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/symbols.cpp -------------------------------------------------------------------------------- /src/core/arm/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/arm/symbols.h -------------------------------------------------------------------------------- /src/core/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/constants.cpp -------------------------------------------------------------------------------- /src/core/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/constants.h -------------------------------------------------------------------------------- /src/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/core.cpp -------------------------------------------------------------------------------- /src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/core.h -------------------------------------------------------------------------------- /src/core/core_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/core_timing.cpp -------------------------------------------------------------------------------- /src/core/core_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/core_timing.h -------------------------------------------------------------------------------- /src/core/cpu_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/cpu_manager.cpp -------------------------------------------------------------------------------- /src/core/cpu_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/cpu_manager.h -------------------------------------------------------------------------------- /src/core/crypto/aes_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/crypto/aes_util.cpp -------------------------------------------------------------------------------- /src/core/crypto/aes_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/crypto/aes_util.h -------------------------------------------------------------------------------- /src/core/crypto/encryption_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/crypto/encryption_layer.h -------------------------------------------------------------------------------- /src/core/crypto/key_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/crypto/key_manager.cpp -------------------------------------------------------------------------------- /src/core/crypto/key_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/crypto/key_manager.h -------------------------------------------------------------------------------- /src/core/crypto/sha_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/crypto/sha_util.cpp -------------------------------------------------------------------------------- /src/core/crypto/sha_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/crypto/sha_util.h -------------------------------------------------------------------------------- /src/core/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/debugger/debugger.cpp -------------------------------------------------------------------------------- /src/core/debugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/debugger/debugger.h -------------------------------------------------------------------------------- /src/core/debugger/gdbstub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/debugger/gdbstub.cpp -------------------------------------------------------------------------------- /src/core/debugger/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/debugger/gdbstub.h -------------------------------------------------------------------------------- /src/core/debugger/gdbstub_arch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/debugger/gdbstub_arch.cpp -------------------------------------------------------------------------------- /src/core/debugger/gdbstub_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/debugger/gdbstub_arch.h -------------------------------------------------------------------------------- /src/core/device_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/device_memory.cpp -------------------------------------------------------------------------------- /src/core/device_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/device_memory.h -------------------------------------------------------------------------------- /src/core/device_memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/device_memory_manager.h -------------------------------------------------------------------------------- /src/core/device_memory_manager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/device_memory_manager.inc -------------------------------------------------------------------------------- /src/core/file_sys/bis_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/bis_factory.cpp -------------------------------------------------------------------------------- /src/core/file_sys/bis_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/bis_factory.h -------------------------------------------------------------------------------- /src/core/file_sys/card_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/card_image.cpp -------------------------------------------------------------------------------- /src/core/file_sys/card_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/card_image.h -------------------------------------------------------------------------------- /src/core/file_sys/common_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/common_funcs.h -------------------------------------------------------------------------------- /src/core/file_sys/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/errors.h -------------------------------------------------------------------------------- /src/core/file_sys/fs_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/fs_directory.h -------------------------------------------------------------------------------- /src/core/file_sys/fs_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/fs_file.h -------------------------------------------------------------------------------- /src/core/file_sys/fs_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/fs_filesystem.h -------------------------------------------------------------------------------- /src/core/file_sys/fs_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/fs_path.h -------------------------------------------------------------------------------- /src/core/file_sys/fs_string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/fs_string_util.h -------------------------------------------------------------------------------- /src/core/file_sys/fsa/fs_i_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/fsa/fs_i_file.h -------------------------------------------------------------------------------- /src/core/file_sys/ips_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/ips_layer.cpp -------------------------------------------------------------------------------- /src/core/file_sys/ips_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/ips_layer.h -------------------------------------------------------------------------------- /src/core/file_sys/nca_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/nca_metadata.cpp -------------------------------------------------------------------------------- /src/core/file_sys/nca_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/nca_metadata.h -------------------------------------------------------------------------------- /src/core/file_sys/patch_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/patch_manager.h -------------------------------------------------------------------------------- /src/core/file_sys/romfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/romfs.cpp -------------------------------------------------------------------------------- /src/core/file_sys/romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/romfs.h -------------------------------------------------------------------------------- /src/core/file_sys/romfs_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/romfs_factory.h -------------------------------------------------------------------------------- /src/core/file_sys/sdmc_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/sdmc_factory.cpp -------------------------------------------------------------------------------- /src/core/file_sys/sdmc_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/sdmc_factory.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs.cpp -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_cached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_cached.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_concat.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_offset.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_real.cpp -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_real.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_static.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_types.h -------------------------------------------------------------------------------- /src/core/file_sys/vfs/vfs_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/vfs/vfs_vector.h -------------------------------------------------------------------------------- /src/core/file_sys/xts_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/xts_archive.cpp -------------------------------------------------------------------------------- /src/core/file_sys/xts_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/file_sys/xts_archive.h -------------------------------------------------------------------------------- /src/core/frontend/applets/applet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/frontend/applets/applet.h -------------------------------------------------------------------------------- /src/core/frontend/applets/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/frontend/applets/error.h -------------------------------------------------------------------------------- /src/core/frontend/emu_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/frontend/emu_window.cpp -------------------------------------------------------------------------------- /src/core/frontend/emu_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/frontend/emu_window.h -------------------------------------------------------------------------------- /src/core/guest_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/guest_memory.h -------------------------------------------------------------------------------- /src/core/hardware_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hardware_properties.h -------------------------------------------------------------------------------- /src/core/hle/api_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/api_version.h -------------------------------------------------------------------------------- /src/core/hle/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/ipc.h -------------------------------------------------------------------------------- /src/core/hle/kernel/code_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/code_set.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/code_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/code_set.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_debug.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_event.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/k_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_event.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_event_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_event_info.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_light_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_light_lock.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_page_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_page_group.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_page_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_page_heap.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_page_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_page_table.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_port.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/k_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_port.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_process.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/k_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_process.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_scheduler.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_session.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/k_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_session.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_slab_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_slab_heap.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_spin_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_spin_lock.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_thread.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/k_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_thread.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_timer_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_timer_task.h -------------------------------------------------------------------------------- /src/core/hle/kernel/k_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/k_trace.h -------------------------------------------------------------------------------- /src/core/hle/kernel/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/kernel.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/kernel.h -------------------------------------------------------------------------------- /src/core/hle/kernel/memory_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/memory_types.h -------------------------------------------------------------------------------- /src/core/hle/kernel/slab_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/slab_helpers.h -------------------------------------------------------------------------------- /src/core/hle/kernel/svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/svc.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/svc.h -------------------------------------------------------------------------------- /src/core/hle/kernel/svc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/svc_common.h -------------------------------------------------------------------------------- /src/core/hle/kernel/svc_results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/svc_results.h -------------------------------------------------------------------------------- /src/core/hle/kernel/svc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/svc_types.h -------------------------------------------------------------------------------- /src/core/hle/kernel/svc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/kernel/svc_version.h -------------------------------------------------------------------------------- /src/core/hle/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/result.h -------------------------------------------------------------------------------- /src/core/hle/service/acc/acc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/acc/acc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/acc/acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/acc/acc.h -------------------------------------------------------------------------------- /src/core/hle/service/acc/acc_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/acc/acc_aa.h -------------------------------------------------------------------------------- /src/core/hle/service/acc/acc_su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/acc/acc_su.h -------------------------------------------------------------------------------- /src/core/hle/service/acc/acc_u0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/acc/acc_u0.h -------------------------------------------------------------------------------- /src/core/hle/service/acc/acc_u1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/acc/acc_u1.h -------------------------------------------------------------------------------- /src/core/hle/service/acc/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/acc/errors.h -------------------------------------------------------------------------------- /src/core/hle/service/am/am.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/am/am.cpp -------------------------------------------------------------------------------- /src/core/hle/service/am/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/am/am.h -------------------------------------------------------------------------------- /src/core/hle/service/am/am_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/am/am_types.h -------------------------------------------------------------------------------- /src/core/hle/service/am/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/am/applet.cpp -------------------------------------------------------------------------------- /src/core/hle/service/am/applet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/am/applet.h -------------------------------------------------------------------------------- /src/core/hle/service/apm/apm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/apm/apm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apm/apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/apm/apm.h -------------------------------------------------------------------------------- /src/core/hle/service/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/audio/audio.h -------------------------------------------------------------------------------- /src/core/hle/service/bcat/bcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/bcat/bcat.cpp -------------------------------------------------------------------------------- /src/core/hle/service/bcat/bcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/bcat/bcat.h -------------------------------------------------------------------------------- /src/core/hle/service/bpc/bpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/bpc/bpc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/bpc/bpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/bpc/bpc.h -------------------------------------------------------------------------------- /src/core/hle/service/btdrv/btdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/btdrv/btdrv.h -------------------------------------------------------------------------------- /src/core/hle/service/btm/btm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/btm/btm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/btm/btm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/btm/btm.h -------------------------------------------------------------------------------- /src/core/hle/service/caps/caps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/caps/caps.cpp -------------------------------------------------------------------------------- /src/core/hle/service/caps/caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/caps/caps.h -------------------------------------------------------------------------------- /src/core/hle/service/caps/caps_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/caps/caps_a.h -------------------------------------------------------------------------------- /src/core/hle/service/caps/caps_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/caps/caps_c.h -------------------------------------------------------------------------------- /src/core/hle/service/caps/caps_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/caps/caps_u.h -------------------------------------------------------------------------------- /src/core/hle/service/cmif_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/cmif_types.h -------------------------------------------------------------------------------- /src/core/hle/service/erpt/erpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/erpt/erpt.cpp -------------------------------------------------------------------------------- /src/core/hle/service/erpt/erpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/erpt/erpt.h -------------------------------------------------------------------------------- /src/core/hle/service/es/es.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/es/es.cpp -------------------------------------------------------------------------------- /src/core/hle/service/es/es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/es/es.h -------------------------------------------------------------------------------- /src/core/hle/service/eupld/eupld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/eupld/eupld.h -------------------------------------------------------------------------------- /src/core/hle/service/fatal/fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/fatal/fatal.h -------------------------------------------------------------------------------- /src/core/hle/service/fgm/fgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/fgm/fgm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/fgm/fgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/fgm/fgm.h -------------------------------------------------------------------------------- /src/core/hle/service/glue/arp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/arp.cpp -------------------------------------------------------------------------------- /src/core/hle/service/glue/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/arp.h -------------------------------------------------------------------------------- /src/core/hle/service/glue/bgtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/bgtc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/glue/bgtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/bgtc.h -------------------------------------------------------------------------------- /src/core/hle/service/glue/ectx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/ectx.cpp -------------------------------------------------------------------------------- /src/core/hle/service/glue/ectx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/ectx.h -------------------------------------------------------------------------------- /src/core/hle/service/glue/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/errors.h -------------------------------------------------------------------------------- /src/core/hle/service/glue/glue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/glue.cpp -------------------------------------------------------------------------------- /src/core/hle/service/glue/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/glue.h -------------------------------------------------------------------------------- /src/core/hle/service/glue/notif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/glue/notif.h -------------------------------------------------------------------------------- /src/core/hle/service/grc/grc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/grc/grc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/grc/grc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/grc/grc.h -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hid/hid.cpp -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hid/hid.h -------------------------------------------------------------------------------- /src/core/hle/service/hid/hidbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hid/hidbus.h -------------------------------------------------------------------------------- /src/core/hle/service/hid/irs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hid/irs.cpp -------------------------------------------------------------------------------- /src/core/hle/service/hid/irs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hid/irs.h -------------------------------------------------------------------------------- /src/core/hle/service/hid/xcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hid/xcd.cpp -------------------------------------------------------------------------------- /src/core/hle/service/hid/xcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hid/xcd.h -------------------------------------------------------------------------------- /src/core/hle/service/hle_ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hle_ipc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/hle_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/hle_ipc.h -------------------------------------------------------------------------------- /src/core/hle/service/ipc_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ipc_helpers.h -------------------------------------------------------------------------------- /src/core/hle/service/jit/jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/jit/jit.cpp -------------------------------------------------------------------------------- /src/core/hle/service/jit/jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/jit/jit.h -------------------------------------------------------------------------------- /src/core/hle/service/lbl/lbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/lbl/lbl.cpp -------------------------------------------------------------------------------- /src/core/hle/service/lbl/lbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/lbl/lbl.h -------------------------------------------------------------------------------- /src/core/hle/service/ldn/ldn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ldn/ldn.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ldn/ldn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ldn/ldn.h -------------------------------------------------------------------------------- /src/core/hle/service/ldr/ldr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ldr/ldr.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ldr/ldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ldr/ldr.h -------------------------------------------------------------------------------- /src/core/hle/service/lm/lm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/lm/lm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/lm/lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/lm/lm.h -------------------------------------------------------------------------------- /src/core/hle/service/mig/mig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/mig/mig.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mig/mig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/mig/mig.h -------------------------------------------------------------------------------- /src/core/hle/service/mii/mii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/mii/mii.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mii/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/mii/mii.h -------------------------------------------------------------------------------- /src/core/hle/service/mm/mm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/mm/mm_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mm/mm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/mm/mm_u.h -------------------------------------------------------------------------------- /src/core/hle/service/ncm/ncm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ncm/ncm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ncm/ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ncm/ncm.h -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nfc/nfc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nfc/nfc.h -------------------------------------------------------------------------------- /src/core/hle/service/nfp/nfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nfp/nfp.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nfp/nfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nfp/nfp.h -------------------------------------------------------------------------------- /src/core/hle/service/ngc/ngc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ngc/ngc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ngc/ngc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ngc/ngc.h -------------------------------------------------------------------------------- /src/core/hle/service/nifm/nifm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nifm/nifm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nifm/nifm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nifm/nifm.h -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nim/nim.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nim/nim.h -------------------------------------------------------------------------------- /src/core/hle/service/npns/npns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/npns/npns.cpp -------------------------------------------------------------------------------- /src/core/hle/service/npns/npns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/npns/npns.h -------------------------------------------------------------------------------- /src/core/hle/service/ns/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ns/language.h -------------------------------------------------------------------------------- /src/core/hle/service/ns/ns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ns/ns.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ns/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ns/ns.h -------------------------------------------------------------------------------- /src/core/hle/service/ns/ns_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ns/ns_types.h -------------------------------------------------------------------------------- /src/core/hle/service/nvdrv/nvdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/nvdrv/nvdrv.h -------------------------------------------------------------------------------- /src/core/hle/service/olsc/olsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/olsc/olsc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/olsc/olsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/olsc/olsc.h -------------------------------------------------------------------------------- /src/core/hle/service/omm/omm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/omm/omm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/omm/omm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/omm/omm.h -------------------------------------------------------------------------------- /src/core/hle/service/os/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/os/event.cpp -------------------------------------------------------------------------------- /src/core/hle/service/os/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/os/event.h -------------------------------------------------------------------------------- /src/core/hle/service/os/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/os/mutex.cpp -------------------------------------------------------------------------------- /src/core/hle/service/os/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/os/mutex.h -------------------------------------------------------------------------------- /src/core/hle/service/os/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/os/process.h -------------------------------------------------------------------------------- /src/core/hle/service/pcie/pcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pcie/pcie.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pcie/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pcie/pcie.h -------------------------------------------------------------------------------- /src/core/hle/service/pctl/pctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pctl/pctl.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pctl/pctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pctl/pctl.h -------------------------------------------------------------------------------- /src/core/hle/service/pcv/pcv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pcv/pcv.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pcv/pcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pcv/pcv.h -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pm/pm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/pm/pm.h -------------------------------------------------------------------------------- /src/core/hle/service/prepo/prepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/prepo/prepo.h -------------------------------------------------------------------------------- /src/core/hle/service/psc/psc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/psc/psc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/psc/psc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/psc/psc.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/psm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ptm/psm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/psm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ptm/psm.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ptm/ptm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ptm/ptm.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ptm/ts.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ptm/ts.h -------------------------------------------------------------------------------- /src/core/hle/service/ro/ro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ro/ro.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ro/ro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ro/ro.h -------------------------------------------------------------------------------- /src/core/hle/service/ro/ro_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ro/ro_types.h -------------------------------------------------------------------------------- /src/core/hle/service/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/service.cpp -------------------------------------------------------------------------------- /src/core/hle/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/service.h -------------------------------------------------------------------------------- /src/core/hle/service/services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/services.cpp -------------------------------------------------------------------------------- /src/core/hle/service/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/services.h -------------------------------------------------------------------------------- /src/core/hle/service/sm/sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/sm/sm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/sm/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/sm/sm.h -------------------------------------------------------------------------------- /src/core/hle/service/sockets/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/sockets/bsd.h -------------------------------------------------------------------------------- /src/core/hle/service/sockets/nsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/sockets/nsd.h -------------------------------------------------------------------------------- /src/core/hle/service/spl/csrng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/spl/csrng.cpp -------------------------------------------------------------------------------- /src/core/hle/service/spl/csrng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/spl/csrng.h -------------------------------------------------------------------------------- /src/core/hle/service/spl/spl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/spl/spl.cpp -------------------------------------------------------------------------------- /src/core/hle/service/spl/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/spl/spl.h -------------------------------------------------------------------------------- /src/core/hle/service/ssl/ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ssl/ssl.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/ssl/ssl.h -------------------------------------------------------------------------------- /src/core/hle/service/usb/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/usb/usb.cpp -------------------------------------------------------------------------------- /src/core/hle/service/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/usb/usb.h -------------------------------------------------------------------------------- /src/core/hle/service/vi/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/vi/display.h -------------------------------------------------------------------------------- /src/core/hle/service/vi/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/vi/layer.h -------------------------------------------------------------------------------- /src/core/hle/service/vi/vi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/vi/vi.cpp -------------------------------------------------------------------------------- /src/core/hle/service/vi/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/vi/vi.h -------------------------------------------------------------------------------- /src/core/hle/service/vi/vi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/hle/service/vi/vi_types.h -------------------------------------------------------------------------------- /src/core/loader/kip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/kip.cpp -------------------------------------------------------------------------------- /src/core/loader/kip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/kip.h -------------------------------------------------------------------------------- /src/core/loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/loader.cpp -------------------------------------------------------------------------------- /src/core/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/loader.h -------------------------------------------------------------------------------- /src/core/loader/nax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nax.cpp -------------------------------------------------------------------------------- /src/core/loader/nax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nax.h -------------------------------------------------------------------------------- /src/core/loader/nca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nca.cpp -------------------------------------------------------------------------------- /src/core/loader/nca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nca.h -------------------------------------------------------------------------------- /src/core/loader/nro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nro.cpp -------------------------------------------------------------------------------- /src/core/loader/nro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nro.h -------------------------------------------------------------------------------- /src/core/loader/nso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nso.cpp -------------------------------------------------------------------------------- /src/core/loader/nso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nso.h -------------------------------------------------------------------------------- /src/core/loader/nsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nsp.cpp -------------------------------------------------------------------------------- /src/core/loader/nsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/nsp.h -------------------------------------------------------------------------------- /src/core/loader/xci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/xci.cpp -------------------------------------------------------------------------------- /src/core/loader/xci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/loader/xci.h -------------------------------------------------------------------------------- /src/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/memory.cpp -------------------------------------------------------------------------------- /src/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/memory.h -------------------------------------------------------------------------------- /src/core/memory/cheat_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/memory/cheat_engine.cpp -------------------------------------------------------------------------------- /src/core/memory/cheat_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/memory/cheat_engine.h -------------------------------------------------------------------------------- /src/core/memory/dmnt_cheat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/memory/dmnt_cheat_types.h -------------------------------------------------------------------------------- /src/core/memory/dmnt_cheat_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/memory/dmnt_cheat_vm.cpp -------------------------------------------------------------------------------- /src/core/memory/dmnt_cheat_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/memory/dmnt_cheat_vm.h -------------------------------------------------------------------------------- /src/core/perf_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/perf_stats.cpp -------------------------------------------------------------------------------- /src/core/perf_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/perf_stats.h -------------------------------------------------------------------------------- /src/core/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/precompiled_headers.h -------------------------------------------------------------------------------- /src/core/reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/reporter.cpp -------------------------------------------------------------------------------- /src/core/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/reporter.h -------------------------------------------------------------------------------- /src/core/telemetry_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/telemetry_session.cpp -------------------------------------------------------------------------------- /src/core/telemetry_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/telemetry_session.h -------------------------------------------------------------------------------- /src/core/tools/freezer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/tools/freezer.cpp -------------------------------------------------------------------------------- /src/core/tools/freezer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/tools/freezer.h -------------------------------------------------------------------------------- /src/core/tools/renderdoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/tools/renderdoc.cpp -------------------------------------------------------------------------------- /src/core/tools/renderdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/core/tools/renderdoc.h -------------------------------------------------------------------------------- /src/dedicated_room/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/dedicated_room/CMakeLists.txt -------------------------------------------------------------------------------- /src/dedicated_room/yuzu_room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/dedicated_room/yuzu_room.cpp -------------------------------------------------------------------------------- /src/dedicated_room/yuzu_room.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/dedicated_room/yuzu_room.rc -------------------------------------------------------------------------------- /src/frontend_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/frontend_common/CMakeLists.txt -------------------------------------------------------------------------------- /src/frontend_common/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/frontend_common/config.cpp -------------------------------------------------------------------------------- /src/frontend_common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/frontend_common/config.h -------------------------------------------------------------------------------- /src/hid_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/hid_core/hid_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hid_core.cpp -------------------------------------------------------------------------------- /src/hid_core/hid_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hid_core.h -------------------------------------------------------------------------------- /src/hid_core/hid_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hid_result.h -------------------------------------------------------------------------------- /src/hid_core/hid_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hid_types.h -------------------------------------------------------------------------------- /src/hid_core/hid_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hid_util.h -------------------------------------------------------------------------------- /src/hid_core/hidbus/hidbus_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hidbus/hidbus_base.h -------------------------------------------------------------------------------- /src/hid_core/hidbus/ringcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hidbus/ringcon.cpp -------------------------------------------------------------------------------- /src/hid_core/hidbus/ringcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hidbus/ringcon.h -------------------------------------------------------------------------------- /src/hid_core/hidbus/starlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hidbus/starlink.cpp -------------------------------------------------------------------------------- /src/hid_core/hidbus/starlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hidbus/starlink.h -------------------------------------------------------------------------------- /src/hid_core/hidbus/stubbed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hidbus/stubbed.cpp -------------------------------------------------------------------------------- /src/hid_core/hidbus/stubbed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/hidbus/stubbed.h -------------------------------------------------------------------------------- /src/hid_core/irsensor/irs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/irsensor/irs_types.h -------------------------------------------------------------------------------- /src/hid_core/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/precompiled_headers.h -------------------------------------------------------------------------------- /src/hid_core/resource_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/resource_manager.cpp -------------------------------------------------------------------------------- /src/hid_core/resource_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/resource_manager.h -------------------------------------------------------------------------------- /src/hid_core/resources/npad/npad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/resources/npad/npad.h -------------------------------------------------------------------------------- /src/hid_core/resources/ring_lifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/hid_core/resources/ring_lifo.h -------------------------------------------------------------------------------- /src/input_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/CMakeLists.txt -------------------------------------------------------------------------------- /src/input_common/drivers/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/drivers/android.h -------------------------------------------------------------------------------- /src/input_common/drivers/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/drivers/mouse.h -------------------------------------------------------------------------------- /src/input_common/input_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/input_engine.h -------------------------------------------------------------------------------- /src/input_common/input_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/input_mapping.h -------------------------------------------------------------------------------- /src/input_common/input_poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/input_poller.h -------------------------------------------------------------------------------- /src/input_common/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/main.cpp -------------------------------------------------------------------------------- /src/input_common/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/input_common/main.h -------------------------------------------------------------------------------- /src/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/CMakeLists.txt -------------------------------------------------------------------------------- /src/network/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/network.cpp -------------------------------------------------------------------------------- /src/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/network.h -------------------------------------------------------------------------------- /src/network/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/packet.cpp -------------------------------------------------------------------------------- /src/network/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/packet.h -------------------------------------------------------------------------------- /src/network/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/room.cpp -------------------------------------------------------------------------------- /src/network/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/room.h -------------------------------------------------------------------------------- /src/network/room_member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/room_member.cpp -------------------------------------------------------------------------------- /src/network/room_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/room_member.h -------------------------------------------------------------------------------- /src/network/verify_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/verify_user.cpp -------------------------------------------------------------------------------- /src/network/verify_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/network/verify_user.h -------------------------------------------------------------------------------- /src/shader_recompiler/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/shader_recompiler/profile.h -------------------------------------------------------------------------------- /src/shader_recompiler/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/shader_recompiler/stage.h -------------------------------------------------------------------------------- /src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/common/bit_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/common/bit_field.cpp -------------------------------------------------------------------------------- /src/tests/common/cityhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/common/cityhash.cpp -------------------------------------------------------------------------------- /src/tests/common/fibers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/common/fibers.cpp -------------------------------------------------------------------------------- /src/tests/common/host_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/common/host_memory.cpp -------------------------------------------------------------------------------- /src/tests/common/range_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/common/range_map.cpp -------------------------------------------------------------------------------- /src/tests/common/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/common/ring_buffer.cpp -------------------------------------------------------------------------------- /src/tests/core/core_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/core/core_timing.cpp -------------------------------------------------------------------------------- /src/tests/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/tests/precompiled_headers.h -------------------------------------------------------------------------------- /src/video_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/video_core/cache_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/cache_types.h -------------------------------------------------------------------------------- /src/video_core/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/capture.h -------------------------------------------------------------------------------- /src/video_core/cdma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/cdma_pusher.cpp -------------------------------------------------------------------------------- /src/video_core/cdma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/cdma_pusher.h -------------------------------------------------------------------------------- /src/video_core/dirty_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/dirty_flags.cpp -------------------------------------------------------------------------------- /src/video_core/dirty_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/dirty_flags.h -------------------------------------------------------------------------------- /src/video_core/dma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/dma_pusher.cpp -------------------------------------------------------------------------------- /src/video_core/dma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/dma_pusher.h -------------------------------------------------------------------------------- /src/video_core/engines/puller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/engines/puller.h -------------------------------------------------------------------------------- /src/video_core/fence_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/fence_manager.h -------------------------------------------------------------------------------- /src/video_core/fsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/fsr.cpp -------------------------------------------------------------------------------- /src/video_core/fsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/fsr.h -------------------------------------------------------------------------------- /src/video_core/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/gpu.cpp -------------------------------------------------------------------------------- /src/video_core/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/gpu.h -------------------------------------------------------------------------------- /src/video_core/gpu_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/gpu_thread.cpp -------------------------------------------------------------------------------- /src/video_core/gpu_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/gpu_thread.h -------------------------------------------------------------------------------- /src/video_core/guest_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/guest_memory.h -------------------------------------------------------------------------------- /src/video_core/host1x/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/host1x/control.h -------------------------------------------------------------------------------- /src/video_core/host1x/host1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/host1x/host1x.cpp -------------------------------------------------------------------------------- /src/video_core/host1x/host1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/host1x/host1x.h -------------------------------------------------------------------------------- /src/video_core/host1x/nvdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/host1x/nvdec.cpp -------------------------------------------------------------------------------- /src/video_core/host1x/nvdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/host1x/nvdec.h -------------------------------------------------------------------------------- /src/video_core/host1x/vic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/host1x/vic.cpp -------------------------------------------------------------------------------- /src/video_core/host1x/vic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/host1x/vic.h -------------------------------------------------------------------------------- /src/video_core/macro/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/macro/macro.cpp -------------------------------------------------------------------------------- /src/video_core/macro/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/macro/macro.h -------------------------------------------------------------------------------- /src/video_core/macro/macro_hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/macro/macro_hle.h -------------------------------------------------------------------------------- /src/video_core/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/memory_manager.h -------------------------------------------------------------------------------- /src/video_core/present.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/present.h -------------------------------------------------------------------------------- /src/video_core/pte_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/pte_kind.h -------------------------------------------------------------------------------- /src/video_core/query_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/query_cache.h -------------------------------------------------------------------------------- /src/video_core/renderer_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/renderer_base.cpp -------------------------------------------------------------------------------- /src/video_core/renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/renderer_base.h -------------------------------------------------------------------------------- /src/video_core/shader_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/shader_cache.cpp -------------------------------------------------------------------------------- /src/video_core/shader_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/shader_cache.h -------------------------------------------------------------------------------- /src/video_core/shader_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/shader_notify.cpp -------------------------------------------------------------------------------- /src/video_core/shader_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/shader_notify.h -------------------------------------------------------------------------------- /src/video_core/smaa_area_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/smaa_area_tex.h -------------------------------------------------------------------------------- /src/video_core/smaa_search_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/smaa_search_tex.h -------------------------------------------------------------------------------- /src/video_core/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/surface.cpp -------------------------------------------------------------------------------- /src/video_core/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/surface.h -------------------------------------------------------------------------------- /src/video_core/textures/astc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/textures/astc.cpp -------------------------------------------------------------------------------- /src/video_core/textures/astc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/textures/astc.h -------------------------------------------------------------------------------- /src/video_core/textures/bcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/textures/bcn.cpp -------------------------------------------------------------------------------- /src/video_core/textures/bcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/textures/bcn.h -------------------------------------------------------------------------------- /src/video_core/video_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/video_core.cpp -------------------------------------------------------------------------------- /src/video_core/video_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/video_core/video_core.h -------------------------------------------------------------------------------- /src/web_service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/web_service/CMakeLists.txt -------------------------------------------------------------------------------- /src/web_service/telemetry_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/web_service/telemetry_json.h -------------------------------------------------------------------------------- /src/web_service/verify_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/web_service/verify_login.cpp -------------------------------------------------------------------------------- /src/web_service/verify_login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/web_service/verify_login.h -------------------------------------------------------------------------------- /src/web_service/web_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/web_service/web_backend.cpp -------------------------------------------------------------------------------- /src/web_service/web_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/web_service/web_backend.h -------------------------------------------------------------------------------- /src/web_service/web_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/web_service/web_result.h -------------------------------------------------------------------------------- /src/yuzu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/CMakeLists.txt -------------------------------------------------------------------------------- /src/yuzu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/Info.plist -------------------------------------------------------------------------------- /src/yuzu/about_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/about_dialog.cpp -------------------------------------------------------------------------------- /src/yuzu/about_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/about_dialog.h -------------------------------------------------------------------------------- /src/yuzu/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/aboutdialog.ui -------------------------------------------------------------------------------- /src/yuzu/applets/qt_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/applets/qt_controller.h -------------------------------------------------------------------------------- /src/yuzu/applets/qt_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/applets/qt_error.cpp -------------------------------------------------------------------------------- /src/yuzu/applets/qt_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/applets/qt_error.h -------------------------------------------------------------------------------- /src/yuzu/bootmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/bootmanager.cpp -------------------------------------------------------------------------------- /src/yuzu/bootmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/bootmanager.h -------------------------------------------------------------------------------- /src/yuzu/breakpad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/breakpad.cpp -------------------------------------------------------------------------------- /src/yuzu/breakpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/breakpad.h -------------------------------------------------------------------------------- /src/yuzu/compatdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/compatdb.cpp -------------------------------------------------------------------------------- /src/yuzu/compatdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/compatdb.h -------------------------------------------------------------------------------- /src/yuzu/compatdb.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/compatdb.ui -------------------------------------------------------------------------------- /src/yuzu/compatibility_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/compatibility_list.cpp -------------------------------------------------------------------------------- /src/yuzu/compatibility_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/compatibility_list.h -------------------------------------------------------------------------------- /src/yuzu/debugger/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/console.cpp -------------------------------------------------------------------------------- /src/yuzu/debugger/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/console.h -------------------------------------------------------------------------------- /src/yuzu/debugger/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/controller.cpp -------------------------------------------------------------------------------- /src/yuzu/debugger/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/controller.h -------------------------------------------------------------------------------- /src/yuzu/debugger/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/profiler.cpp -------------------------------------------------------------------------------- /src/yuzu/debugger/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/profiler.h -------------------------------------------------------------------------------- /src/yuzu/debugger/wait_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/wait_tree.cpp -------------------------------------------------------------------------------- /src/yuzu/debugger/wait_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/debugger/wait_tree.h -------------------------------------------------------------------------------- /src/yuzu/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/discord.h -------------------------------------------------------------------------------- /src/yuzu/discord_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/discord_impl.cpp -------------------------------------------------------------------------------- /src/yuzu/discord_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/discord_impl.h -------------------------------------------------------------------------------- /src/yuzu/game_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/game_list.cpp -------------------------------------------------------------------------------- /src/yuzu/game_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/game_list.h -------------------------------------------------------------------------------- /src/yuzu/game_list_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/game_list_p.h -------------------------------------------------------------------------------- /src/yuzu/game_list_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/game_list_worker.cpp -------------------------------------------------------------------------------- /src/yuzu/game_list_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/game_list_worker.h -------------------------------------------------------------------------------- /src/yuzu/hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/hotkeys.cpp -------------------------------------------------------------------------------- /src/yuzu/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/hotkeys.h -------------------------------------------------------------------------------- /src/yuzu/install_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/install_dialog.cpp -------------------------------------------------------------------------------- /src/yuzu/install_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/install_dialog.h -------------------------------------------------------------------------------- /src/yuzu/loading_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/loading_screen.cpp -------------------------------------------------------------------------------- /src/yuzu/loading_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/loading_screen.h -------------------------------------------------------------------------------- /src/yuzu/loading_screen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/loading_screen.ui -------------------------------------------------------------------------------- /src/yuzu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/main.cpp -------------------------------------------------------------------------------- /src/yuzu/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/main.h -------------------------------------------------------------------------------- /src/yuzu/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/main.ui -------------------------------------------------------------------------------- /src/yuzu/multiplayer/chat_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/chat_room.h -------------------------------------------------------------------------------- /src/yuzu/multiplayer/host_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/host_room.h -------------------------------------------------------------------------------- /src/yuzu/multiplayer/lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/lobby.cpp -------------------------------------------------------------------------------- /src/yuzu/multiplayer/lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/lobby.h -------------------------------------------------------------------------------- /src/yuzu/multiplayer/lobby.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/lobby.ui -------------------------------------------------------------------------------- /src/yuzu/multiplayer/lobby_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/lobby_p.h -------------------------------------------------------------------------------- /src/yuzu/multiplayer/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/message.cpp -------------------------------------------------------------------------------- /src/yuzu/multiplayer/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/message.h -------------------------------------------------------------------------------- /src/yuzu/multiplayer/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/state.cpp -------------------------------------------------------------------------------- /src/yuzu/multiplayer/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/multiplayer/state.h -------------------------------------------------------------------------------- /src/yuzu/play_time_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/play_time_manager.cpp -------------------------------------------------------------------------------- /src/yuzu/play_time_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/play_time_manager.h -------------------------------------------------------------------------------- /src/yuzu/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/precompiled_headers.h -------------------------------------------------------------------------------- /src/yuzu/qt_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/qt_common.cpp -------------------------------------------------------------------------------- /src/yuzu/qt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/qt_common.h -------------------------------------------------------------------------------- /src/yuzu/startup_checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/startup_checks.cpp -------------------------------------------------------------------------------- /src/yuzu/startup_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/startup_checks.h -------------------------------------------------------------------------------- /src/yuzu/uisettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/uisettings.cpp -------------------------------------------------------------------------------- /src/yuzu/uisettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/uisettings.h -------------------------------------------------------------------------------- /src/yuzu/util/clickable_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/util/clickable_label.h -------------------------------------------------------------------------------- /src/yuzu/util/overlay_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/util/overlay_dialog.cpp -------------------------------------------------------------------------------- /src/yuzu/util/overlay_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/util/overlay_dialog.h -------------------------------------------------------------------------------- /src/yuzu/util/overlay_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/util/overlay_dialog.ui -------------------------------------------------------------------------------- /src/yuzu/util/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/util/util.cpp -------------------------------------------------------------------------------- /src/yuzu/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/util/util.h -------------------------------------------------------------------------------- /src/yuzu/vk_device_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/vk_device_info.cpp -------------------------------------------------------------------------------- /src/yuzu/vk_device_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/vk_device_info.h -------------------------------------------------------------------------------- /src/yuzu/yuzu.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/yuzu.qrc -------------------------------------------------------------------------------- /src/yuzu/yuzu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu/yuzu.rc -------------------------------------------------------------------------------- /src/yuzu_cmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu_cmd/CMakeLists.txt -------------------------------------------------------------------------------- /src/yuzu_cmd/sdl_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu_cmd/sdl_config.cpp -------------------------------------------------------------------------------- /src/yuzu_cmd/sdl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu_cmd/sdl_config.h -------------------------------------------------------------------------------- /src/yuzu_cmd/yuzu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu_cmd/yuzu.cpp -------------------------------------------------------------------------------- /src/yuzu_cmd/yuzu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/src/yuzu_cmd/yuzu.rc -------------------------------------------------------------------------------- /tools/reset-submodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/tools/reset-submodules.sh -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzu-emu-mirror/yuzu-android/HEAD/vcpkg.json --------------------------------------------------------------------------------