├── .clang-format ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── hydra.ios.entitlements ├── hydra.macos.entitlements ├── img └── showcase.png ├── res ├── images │ └── default_avatar_image.png └── lldb │ ├── .lldbinit │ └── commands.py └── src ├── CMakeLists.txt ├── common ├── CMakeLists.txt ├── atomic.hpp ├── common.hpp ├── config.cpp ├── config.hpp ├── dynamic_pool.hpp ├── elf.h ├── filesystem.hpp ├── functions.hpp ├── linked_list.hpp ├── literals.hpp ├── log.cpp ├── log.hpp ├── lz4.cpp ├── lz4.hpp ├── macros.hpp ├── memory.hpp ├── objc.hpp ├── platform.hpp ├── pool.hpp ├── static_pool.hpp ├── stb.cpp ├── string.hpp ├── time.hpp ├── toml_helper.hpp ├── traits.hpp ├── type_aliases.hpp └── types.hpp ├── core ├── CMakeLists.txt ├── audio │ ├── const.hpp │ ├── core.hpp │ ├── cubeb │ │ ├── const.hpp │ │ ├── core.cpp │ │ ├── core.hpp │ │ ├── stream.cpp │ │ └── stream.hpp │ ├── null │ │ ├── core.cpp │ │ ├── core.hpp │ │ ├── stream.cpp │ │ └── stream.hpp │ └── stream.hpp ├── c_api.cpp ├── c_api.h ├── debugger │ ├── const.hpp │ ├── debugger.cpp │ ├── debugger.hpp │ ├── debugger_manager.cpp │ ├── debugger_manager.hpp │ ├── gdb_server.cpp │ └── gdb_server.hpp ├── emulation_context.cpp ├── emulation_context.hpp ├── horizon │ ├── applets │ │ ├── album │ │ │ └── const.hpp │ │ ├── applet_base.cpp │ │ ├── applet_base.hpp │ │ ├── const.hpp │ │ ├── controller │ │ │ ├── applet.cpp │ │ │ ├── applet.hpp │ │ │ └── const.hpp │ │ ├── error │ │ │ ├── applet.cpp │ │ │ ├── applet.hpp │ │ │ └── const.hpp │ │ ├── mii_edit │ │ │ └── const.hpp │ │ ├── player_select │ │ │ ├── applet.cpp │ │ │ ├── applet.hpp │ │ │ └── const.hpp │ │ └── software_keyboard │ │ │ ├── applet.cpp │ │ │ ├── applet.hpp │ │ │ └── const.hpp │ ├── const.hpp │ ├── display │ │ ├── binder.cpp │ │ ├── binder.hpp │ │ ├── display.hpp │ │ ├── driver.cpp │ │ ├── driver.hpp │ │ ├── layer.cpp │ │ └── layer.hpp │ ├── filesystem │ │ ├── const.hpp │ │ ├── content_archive.cpp │ │ ├── content_archive.hpp │ │ ├── device.cpp │ │ ├── device.hpp │ │ ├── directory.cpp │ │ ├── directory.hpp │ │ ├── entry_base.hpp │ │ ├── file_base.hpp │ │ ├── file_view.hpp │ │ ├── filesystem.cpp │ │ ├── filesystem.hpp │ │ ├── host_file.cpp │ │ ├── host_file.hpp │ │ ├── partition_filesystem.hpp │ │ ├── ram_file.hpp │ │ ├── romfs.cpp │ │ └── romfs.hpp │ ├── firmware.cpp │ ├── firmware.hpp │ ├── hid.hpp │ ├── input_manager.cpp │ ├── input_manager.hpp │ ├── kernel │ │ ├── applet_state.cpp │ │ ├── applet_state.hpp │ │ ├── auto_object.hpp │ │ ├── code_memory.hpp │ │ ├── const.hpp │ │ ├── event.hpp │ │ ├── guest_thread.cpp │ │ ├── guest_thread.hpp │ │ ├── hipc │ │ │ ├── client_port.cpp │ │ │ ├── client_port.hpp │ │ │ ├── client_session.cpp │ │ │ ├── client_session.hpp │ │ │ ├── cmif.hpp │ │ │ ├── const.cpp │ │ │ ├── const.hpp │ │ │ ├── port.cpp │ │ │ ├── port.hpp │ │ │ ├── server_port.cpp │ │ │ ├── server_port.hpp │ │ │ ├── server_session.cpp │ │ │ ├── server_session.hpp │ │ │ ├── service_manager.hpp │ │ │ ├── session.cpp │ │ │ └── session.hpp │ │ ├── host_thread.cpp │ │ ├── host_thread.hpp │ │ ├── kernel.cpp │ │ ├── kernel.hpp │ │ ├── process.cpp │ │ ├── process.hpp │ │ ├── process_manager.cpp │ │ ├── process_manager.hpp │ │ ├── shared_memory.cpp │ │ ├── shared_memory.hpp │ │ ├── strong_ref.hpp │ │ ├── synchronization_object.cpp │ │ ├── synchronization_object.hpp │ │ ├── thread.cpp │ │ ├── thread.hpp │ │ └── transfer_memory.hpp │ ├── loader │ │ ├── homebrew_loader.cpp │ │ ├── homebrew_loader.hpp │ │ ├── loader_base.cpp │ │ ├── loader_base.hpp │ │ ├── nca_loader.cpp │ │ ├── nca_loader.hpp │ │ ├── nro_loader.cpp │ │ ├── nro_loader.hpp │ │ ├── nso_loader.cpp │ │ ├── nso_loader.hpp │ │ ├── nsp_loader.cpp │ │ ├── nsp_loader.hpp │ │ ├── xci_loader.cpp │ │ └── xci_loader.hpp │ ├── os.cpp │ ├── os.hpp │ ├── services │ │ ├── account │ │ │ ├── account_service.cpp │ │ │ ├── account_service.hpp │ │ │ ├── account_service_for_administrator.cpp │ │ │ ├── account_service_for_administrator.hpp │ │ │ ├── account_service_for_application.cpp │ │ │ ├── account_service_for_application.hpp │ │ │ ├── account_service_for_system_service.cpp │ │ │ ├── account_service_for_system_service.hpp │ │ │ ├── baas │ │ │ │ ├── manager_for_application.cpp │ │ │ │ ├── manager_for_application.hpp │ │ │ │ ├── manager_for_system_service.cpp │ │ │ │ └── manager_for_system_service.hpp │ │ │ ├── baas_access_token_accessor.cpp │ │ │ ├── baas_access_token_accessor.hpp │ │ │ ├── const.hpp │ │ │ ├── internal │ │ │ │ ├── user.hpp │ │ │ │ ├── user_manager.cpp │ │ │ │ └── user_manager.hpp │ │ │ ├── notifier.cpp │ │ │ ├── notifier.hpp │ │ │ ├── profile.cpp │ │ │ └── profile.hpp │ │ ├── am │ │ │ ├── all_system_applet_proxies_service.cpp │ │ │ ├── all_system_applet_proxies_service.hpp │ │ │ ├── apm_manager.cpp │ │ │ ├── apm_manager.hpp │ │ │ ├── application_creator.cpp │ │ │ ├── application_creator.hpp │ │ │ ├── application_functions.cpp │ │ │ ├── application_functions.hpp │ │ │ ├── application_proxy.cpp │ │ │ ├── application_proxy.hpp │ │ │ ├── application_proxy_service.cpp │ │ │ ├── application_proxy_service.hpp │ │ │ ├── audio_controller.cpp │ │ │ ├── audio_controller.hpp │ │ │ ├── common_state_getter.cpp │ │ │ ├── common_state_getter.hpp │ │ │ ├── debug_functions.cpp │ │ │ ├── debug_functions.hpp │ │ │ ├── display_controller.cpp │ │ │ ├── display_controller.hpp │ │ │ ├── global_state_controller.cpp │ │ │ ├── global_state_controller.hpp │ │ │ ├── home_menu_functions.cpp │ │ │ ├── home_menu_functions.hpp │ │ │ ├── library_applet_accessor.cpp │ │ │ ├── library_applet_accessor.hpp │ │ │ ├── library_applet_controller.hpp │ │ │ ├── library_applet_creator.cpp │ │ │ ├── library_applet_creator.hpp │ │ │ ├── library_applet_proxy.cpp │ │ │ ├── library_applet_proxy.hpp │ │ │ ├── library_applet_self_accessor.cpp │ │ │ ├── library_applet_self_accessor.hpp │ │ │ ├── overlay_applet_proxy.cpp │ │ │ ├── overlay_applet_proxy.hpp │ │ │ ├── overlay_functions.cpp │ │ │ ├── overlay_functions.hpp │ │ │ ├── process_winding_controller.cpp │ │ │ ├── process_winding_controller.hpp │ │ │ ├── proxy.cpp │ │ │ ├── proxy.hpp │ │ │ ├── self_controller.cpp │ │ │ ├── self_controller.hpp │ │ │ ├── session.cpp │ │ │ ├── session.hpp │ │ │ ├── storage.cpp │ │ │ ├── storage.hpp │ │ │ ├── storage_accessor.cpp │ │ │ ├── storage_accessor.hpp │ │ │ ├── system_applet_proxy.cpp │ │ │ ├── system_applet_proxy.hpp │ │ │ ├── window_controller.cpp │ │ │ └── window_controller.hpp │ │ ├── aocsrv │ │ │ ├── add_on_content_manager.cpp │ │ │ └── add_on_content_manager.hpp │ │ ├── apm │ │ │ ├── manager_privileged.cpp │ │ │ ├── manager_privileged.hpp │ │ │ ├── session.cpp │ │ │ └── session.hpp │ │ ├── audio │ │ │ ├── audio_device.cpp │ │ │ ├── audio_device.hpp │ │ │ ├── audio_out.cpp │ │ │ ├── audio_out.hpp │ │ │ ├── audio_out_manager.cpp │ │ │ ├── audio_out_manager.hpp │ │ │ ├── audio_renderer.cpp │ │ │ ├── audio_renderer.hpp │ │ │ ├── audio_renderer_manager.cpp │ │ │ ├── audio_renderer_manager.hpp │ │ │ └── const.hpp │ │ ├── codec │ │ │ ├── hardware_opus_decoder.cpp │ │ │ ├── hardware_opus_decoder.hpp │ │ │ ├── hardware_opus_decoder_manager.cpp │ │ │ └── hardware_opus_decoder_manager.hpp │ │ ├── const.hpp │ │ ├── err │ │ │ └── context │ │ │ │ ├── writer_for_application.cpp │ │ │ │ └── writer_for_application.hpp │ │ ├── fatalsrv │ │ │ ├── service.cpp │ │ │ └── service.hpp │ │ ├── friends │ │ │ ├── friend_service.cpp │ │ │ ├── friend_service.hpp │ │ │ ├── notification_service.cpp │ │ │ ├── notification_service.hpp │ │ │ ├── service_creator.cpp │ │ │ └── service_creator.hpp │ │ ├── fssrv │ │ │ ├── const.hpp │ │ │ ├── directory.cpp │ │ │ ├── directory.hpp │ │ │ ├── file.cpp │ │ │ ├── file.hpp │ │ │ ├── filesystem.cpp │ │ │ ├── filesystem.hpp │ │ │ ├── filesystem_proxy.cpp │ │ │ ├── filesystem_proxy.hpp │ │ │ ├── save_data_info_reader.cpp │ │ │ ├── save_data_info_reader.hpp │ │ │ ├── storage.cpp │ │ │ └── storage.hpp │ │ ├── hid │ │ │ ├── active_vibration_device_list.cpp │ │ │ ├── active_vibration_device_list.hpp │ │ │ ├── applet_resource.cpp │ │ │ ├── applet_resource.hpp │ │ │ ├── hid_debug_server.cpp │ │ │ ├── hid_debug_server.hpp │ │ │ ├── hid_server.cpp │ │ │ ├── hid_server.hpp │ │ │ ├── hid_system_server.cpp │ │ │ └── hid_system_server.hpp │ │ ├── hosbinder │ │ │ ├── hos_binder_driver.cpp │ │ │ ├── hos_binder_driver.hpp │ │ │ └── parcel.hpp │ │ ├── i2c │ │ │ ├── const.hpp │ │ │ ├── manager.cpp │ │ │ ├── manager.hpp │ │ │ ├── session.cpp │ │ │ └── session.hpp │ │ ├── ins │ │ │ ├── receiver_manager.cpp │ │ │ └── receiver_manager.hpp │ │ ├── irsensor │ │ │ ├── ir_sensor_server.cpp │ │ │ └── ir_sensor_server.hpp │ │ ├── lbl │ │ │ ├── lbl_controller.cpp │ │ │ └── lbl_controller.hpp │ │ ├── lm │ │ │ ├── log_service.cpp │ │ │ ├── log_service.hpp │ │ │ ├── logger.cpp │ │ │ └── logger.hpp │ │ ├── mii │ │ │ ├── database_service.cpp │ │ │ ├── database_service.hpp │ │ │ ├── static_service.cpp │ │ │ └── static_service.hpp │ │ ├── mmnv │ │ │ ├── request.cpp │ │ │ └── request.hpp │ │ ├── ncm │ │ │ ├── const.hpp │ │ │ ├── content_manager.cpp │ │ │ └── content_manager.hpp │ │ ├── nfc │ │ │ ├── nfc.cpp │ │ │ ├── nfc.hpp │ │ │ ├── user.cpp │ │ │ ├── user.hpp │ │ │ ├── user_manager.cpp │ │ │ └── user_manager.hpp │ │ ├── nfp │ │ │ ├── nfp.cpp │ │ │ ├── nfp.hpp │ │ │ ├── user.cpp │ │ │ ├── user.hpp │ │ │ ├── user_manager.cpp │ │ │ └── user_manager.hpp │ │ ├── nifm │ │ │ ├── general_service.cpp │ │ │ ├── general_service.hpp │ │ │ ├── request.cpp │ │ │ ├── request.hpp │ │ │ ├── static_service.cpp │ │ │ └── static_service.hpp │ │ ├── npns │ │ │ ├── npns_system.cpp │ │ │ └── npns_system.hpp │ │ ├── ns │ │ │ ├── application_manager_interface.cpp │ │ │ ├── application_manager_interface.hpp │ │ │ ├── const.cpp │ │ │ ├── const.hpp │ │ │ ├── service_getter_interface.cpp │ │ │ └── service_getter_interface.hpp │ │ ├── nsd │ │ │ ├── manager.cpp │ │ │ └── manager.hpp │ │ ├── nvdrv │ │ │ ├── const.hpp │ │ │ ├── ioctl │ │ │ │ ├── channel_base.cpp │ │ │ │ ├── channel_base.hpp │ │ │ │ ├── const.hpp │ │ │ │ ├── fd_base.hpp │ │ │ │ ├── nvdisp_ctrl.cpp │ │ │ │ ├── nvdisp_ctrl.hpp │ │ │ │ ├── nvdisp_disp.cpp │ │ │ │ ├── nvdisp_disp.hpp │ │ │ │ ├── nvhost_as_gpu.cpp │ │ │ │ ├── nvhost_as_gpu.hpp │ │ │ │ ├── nvhost_ctrl.cpp │ │ │ │ ├── nvhost_ctrl.hpp │ │ │ │ ├── nvhost_ctrl_gpu.cpp │ │ │ │ ├── nvhost_ctrl_gpu.hpp │ │ │ │ ├── nvhost_gpu.cpp │ │ │ │ ├── nvhost_gpu.hpp │ │ │ │ ├── nvhost_nvdec.cpp │ │ │ │ ├── nvhost_nvdec.hpp │ │ │ │ ├── nvhost_nvjpg.cpp │ │ │ │ ├── nvhost_nvjpg.hpp │ │ │ │ ├── nvhost_vic.cpp │ │ │ │ ├── nvhost_vic.hpp │ │ │ │ ├── nvmap.cpp │ │ │ │ ├── nvmap.hpp │ │ │ │ ├── nvsched_ctrl.cpp │ │ │ │ └── nvsched_ctrl.hpp │ │ │ ├── nvdrv_services.cpp │ │ │ └── nvdrv_services.hpp │ │ ├── oe │ │ │ └── const.hpp │ │ ├── omm │ │ │ ├── operation_mode_manager.cpp │ │ │ └── operation_mode_manager.hpp │ │ ├── ovln │ │ │ ├── sender.cpp │ │ │ ├── sender.hpp │ │ │ ├── sender_service.cpp │ │ │ └── sender_service.hpp │ │ ├── pctl │ │ │ ├── parental_control_service.cpp │ │ │ ├── parental_control_service.hpp │ │ │ ├── parental_control_service_factory.cpp │ │ │ └── parental_control_service_factory.hpp │ │ ├── pcv │ │ │ ├── pcv_service.cpp │ │ │ └── pcv_service.hpp │ │ ├── pdm │ │ │ ├── query_service.cpp │ │ │ └── query_service.hpp │ │ ├── pl │ │ │ ├── const.hpp │ │ │ ├── detail │ │ │ │ ├── platform_service_manager_for_system.cpp │ │ │ │ └── platform_service_manager_for_system.hpp │ │ │ ├── internal │ │ │ │ ├── shared_font_manager.cpp │ │ │ │ └── shared_font_manager.hpp │ │ │ ├── shared_font_manager.cpp │ │ │ ├── shared_font_manager.hpp │ │ │ └── sharedresource │ │ │ │ ├── platform_shared_resource_manager.cpp │ │ │ │ └── platform_shared_resource_manager.hpp │ │ ├── pm │ │ │ ├── boot_mode_interface.cpp │ │ │ ├── boot_mode_interface.hpp │ │ │ ├── debug_monitor_interface.cpp │ │ │ ├── debug_monitor_interface.hpp │ │ │ ├── information_interface.cpp │ │ │ └── information_interface.hpp │ │ ├── prepo │ │ │ ├── prepo_service.cpp │ │ │ └── prepo_service.hpp │ │ ├── psc │ │ │ ├── pm_module.cpp │ │ │ ├── pm_module.hpp │ │ │ ├── pm_service.cpp │ │ │ └── pm_service.hpp │ │ ├── psm │ │ │ ├── psm_server.cpp │ │ │ ├── psm_server.hpp │ │ │ ├── psm_session.cpp │ │ │ └── psm_session.hpp │ │ ├── ro │ │ │ └── detail │ │ │ │ ├── ro_interface.cpp │ │ │ │ └── ro_interface.hpp │ │ ├── server.cpp │ │ ├── server.hpp │ │ ├── service.cpp │ │ ├── service.hpp │ │ ├── settings │ │ │ ├── factory_settings_server.cpp │ │ │ ├── factory_settings_server.hpp │ │ │ ├── nx_settings.cpp │ │ │ ├── nx_settings.hpp │ │ │ ├── settings_server.cpp │ │ │ ├── settings_server.hpp │ │ │ ├── system_settings_server.cpp │ │ │ └── system_settings_server.hpp │ │ ├── sm │ │ │ ├── user_interface.cpp │ │ │ └── user_interface.hpp │ │ ├── socket │ │ │ ├── client.cpp │ │ │ ├── client.hpp │ │ │ └── resolver │ │ │ │ ├── resolver.cpp │ │ │ │ └── resolver.hpp │ │ ├── spl │ │ │ ├── general_interface.cpp │ │ │ ├── general_interface.hpp │ │ │ ├── random_interface.cpp │ │ │ └── random_interface.hpp │ │ ├── spsm │ │ │ ├── power_state_interface.cpp │ │ │ └── power_state_interface.hpp │ │ ├── ssl │ │ │ └── sf │ │ │ │ ├── const.hpp │ │ │ │ ├── ssl_context.cpp │ │ │ │ ├── ssl_context.hpp │ │ │ │ ├── ssl_service.cpp │ │ │ │ └── ssl_service.hpp │ │ ├── timesrv │ │ │ ├── internal │ │ │ │ ├── time_manager.cpp │ │ │ │ └── time_manager.hpp │ │ │ ├── static_service.cpp │ │ │ ├── static_service.hpp │ │ │ ├── steady_clock.cpp │ │ │ ├── steady_clock.hpp │ │ │ ├── system_clock.cpp │ │ │ ├── system_clock.hpp │ │ │ ├── time_zone_service.cpp │ │ │ └── time_zone_service.hpp │ │ ├── ts │ │ │ ├── measurement_server.cpp │ │ │ └── measurement_server.hpp │ │ ├── usb │ │ │ ├── const.hpp │ │ │ └── hs │ │ │ │ ├── client_root_session.cpp │ │ │ │ └── client_root_session.hpp │ │ └── visrv │ │ │ ├── application_display_service.cpp │ │ │ ├── application_display_service.hpp │ │ │ ├── application_root_service.cpp │ │ │ ├── application_root_service.hpp │ │ │ ├── display_service_base.cpp │ │ │ ├── display_service_base.hpp │ │ │ ├── manager_display_service.cpp │ │ │ ├── manager_display_service.hpp │ │ │ ├── manager_root_service.cpp │ │ │ ├── manager_root_service.hpp │ │ │ ├── system_display_service.cpp │ │ │ ├── system_display_service.hpp │ │ │ ├── system_root_service.cpp │ │ │ └── system_root_service.hpp │ └── ui │ │ ├── const.hpp │ │ └── handler_base.hpp ├── hw │ ├── generic_mmu.hpp │ └── tegra_x1 │ │ ├── cpu │ │ ├── const.hpp │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── dynarmic │ │ │ ├── const.hpp │ │ │ ├── cpu.cpp │ │ │ ├── cpu.hpp │ │ │ ├── memory.hpp │ │ │ ├── mmu.cpp │ │ │ ├── mmu.hpp │ │ │ ├── thread.cpp │ │ │ └── thread.hpp │ │ ├── hypervisor │ │ │ ├── const.hpp │ │ │ ├── cpu.cpp │ │ │ ├── cpu.hpp │ │ │ ├── memory.hpp │ │ │ ├── mmu.cpp │ │ │ ├── mmu.hpp │ │ │ ├── page_allocator.cpp │ │ │ ├── page_allocator.hpp │ │ │ ├── page_table.cpp │ │ │ ├── page_table.hpp │ │ │ ├── thread.cpp │ │ │ └── thread.hpp │ │ ├── memory.hpp │ │ ├── mmu.cpp │ │ ├── mmu.hpp │ │ ├── thread.cpp │ │ └── thread.hpp │ │ └── gpu │ │ ├── const.hpp │ │ ├── engines │ │ ├── 2d.cpp │ │ ├── 2d.hpp │ │ ├── 3d.cpp │ │ ├── 3d.hpp │ │ ├── compute.cpp │ │ ├── compute.hpp │ │ ├── const.hpp │ │ ├── copy.cpp │ │ ├── copy.hpp │ │ ├── engine_base.hpp │ │ ├── inline.cpp │ │ ├── inline.hpp │ │ ├── inline_base.cpp │ │ └── inline_base.hpp │ │ ├── gmmu.cpp │ │ ├── gmmu.hpp │ │ ├── gpu.cpp │ │ ├── gpu.hpp │ │ ├── macro │ │ ├── const.hpp │ │ ├── driver_base.cpp │ │ ├── driver_base.hpp │ │ └── interpreter │ │ │ ├── driver.cpp │ │ │ └── driver.hpp │ │ ├── memory_util.cpp │ │ ├── memory_util.hpp │ │ ├── pfifo.cpp │ │ ├── pfifo.hpp │ │ └── renderer │ │ ├── buffer_base.hpp │ │ ├── buffer_cache.cpp │ │ ├── buffer_cache.hpp │ │ ├── const.cpp │ │ ├── const.hpp │ │ ├── index_cache.cpp │ │ ├── index_cache.hpp │ │ ├── index_decoders.inc │ │ ├── metal │ │ ├── blit_pipeline_cache.cpp │ │ ├── blit_pipeline_cache.hpp │ │ ├── buffer.cpp │ │ ├── buffer.hpp │ │ ├── clear_color_pipeline_cache.cpp │ │ ├── clear_color_pipeline_cache.hpp │ │ ├── clear_depth_pipeline_cache.cpp │ │ ├── clear_depth_pipeline_cache.hpp │ │ ├── const.hpp │ │ ├── depth_stencil_state_cache.cpp │ │ ├── depth_stencil_state_cache.hpp │ │ ├── impl.cpp │ │ ├── maxwell_to_mtl.cpp │ │ ├── maxwell_to_mtl.hpp │ │ ├── pipeline.cpp │ │ ├── pipeline.hpp │ │ ├── render_pass.cpp │ │ ├── render_pass.hpp │ │ ├── renderer.cpp │ │ ├── renderer.hpp │ │ ├── sampler.cpp │ │ ├── sampler.hpp │ │ ├── shader.cpp │ │ ├── shader.hpp │ │ ├── texture.cpp │ │ └── texture.hpp │ │ ├── pipeline_base.hpp │ │ ├── pipeline_cache.cpp │ │ ├── pipeline_cache.hpp │ │ ├── render_pass_base.hpp │ │ ├── render_pass_cache.cpp │ │ ├── render_pass_cache.hpp │ │ ├── renderer_base.hpp │ │ ├── sampler_base.hpp │ │ ├── sampler_cache.cpp │ │ ├── sampler_cache.hpp │ │ ├── shader_base.hpp │ │ ├── shader_cache.cpp │ │ ├── shader_cache.hpp │ │ ├── shader_decompiler │ │ ├── analyzer │ │ │ ├── cfg.cpp │ │ │ ├── cfg.hpp │ │ │ ├── memory_analyzer.cpp │ │ │ └── memory_analyzer.hpp │ │ ├── codegen │ │ │ ├── emitter.cpp │ │ │ ├── emitter.hpp │ │ │ └── lang │ │ │ │ ├── emitter.cpp │ │ │ │ ├── emitter.hpp │ │ │ │ └── msl │ │ │ │ ├── emitter.cpp │ │ │ │ └── emitter.hpp │ │ ├── const.cpp │ │ ├── const.hpp │ │ ├── decoder │ │ │ ├── decoder.cpp │ │ │ ├── decoder.hpp │ │ │ └── tables.hpp │ │ ├── decompiler.cpp │ │ ├── decompiler.hpp │ │ └── ir │ │ │ ├── block.hpp │ │ │ ├── builder.hpp │ │ │ ├── function.hpp │ │ │ ├── instruction.hpp │ │ │ ├── module.hpp │ │ │ └── value.hpp │ │ ├── texture_base.hpp │ │ ├── texture_cache.cpp │ │ ├── texture_cache.hpp │ │ ├── texture_decoder.cpp │ │ └── texture_decoder.hpp ├── input │ ├── apple_gc │ │ ├── controller.hpp │ │ ├── controller.mm │ │ ├── device_list.hpp │ │ ├── device_list.mm │ │ ├── keyboard.hpp │ │ └── keyboard.mm │ ├── const.hpp │ ├── controller.hpp │ ├── cursor.hpp │ ├── device.hpp │ ├── device_list.hpp │ ├── device_manager.cpp │ ├── device_manager.hpp │ ├── keyboard.hpp │ ├── npad_config.cpp │ └── npad_config.hpp └── title.hpp └── frontend ├── CMakeLists.txt ├── Info.plist.in ├── hydra.icns ├── native └── cocoa │ ├── native.hpp │ └── native.mm ├── sdl3 ├── const.hpp ├── cursor.cpp ├── cursor.hpp ├── main.cpp ├── window.cpp └── window.hpp └── swiftui ├── Api.swift ├── ContentView.swift ├── EmulationToolbarItems.swift ├── EmulationView.swift ├── Game.swift ├── GameListToolbarItems.swift ├── GameListView.swift ├── GamePreview.swift ├── GameStopView.swift ├── HydraApp.swift ├── MenuCommands.swift ├── MetalView.swift ├── Settings ├── AudioSettingsView.swift ├── CpuSettingsView.swift ├── DebugSettingsView.swift ├── GeneralSettingsView.swift ├── GraphicsSettingsView.swift ├── SettingsView.swift ├── SystemSettingsView.swift ├── UserAvatarEditorView.swift ├── UserAvatarPickerView.swift ├── UserAvatarView.swift ├── UserEditorView.swift ├── UserPreview.swift └── UserSettingsView.swift ├── debugger ├── DebuggerListView.swift ├── DebuggerView.swift ├── DebuggersView.swift ├── Message.swift ├── MessageView.swift └── ThreadDebuggerView.swift ├── helpers ├── ClickableListItem.swift ├── EditablePathList.swift ├── EditableStringList.swift ├── Error.swift ├── GameLoader.swift ├── Math.swift ├── StringList.swift └── UrlResolver.swift └── macos └── AppDelegate.swift /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/README.md -------------------------------------------------------------------------------- /hydra.ios.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/hydra.ios.entitlements -------------------------------------------------------------------------------- /hydra.macos.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/hydra.macos.entitlements -------------------------------------------------------------------------------- /img/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/img/showcase.png -------------------------------------------------------------------------------- /res/images/default_avatar_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/res/images/default_avatar_image.png -------------------------------------------------------------------------------- /res/lldb/.lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/res/lldb/.lldbinit -------------------------------------------------------------------------------- /res/lldb/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/res/lldb/commands.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/atomic.hpp -------------------------------------------------------------------------------- /src/common/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/common.hpp -------------------------------------------------------------------------------- /src/common/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/config.cpp -------------------------------------------------------------------------------- /src/common/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/config.hpp -------------------------------------------------------------------------------- /src/common/dynamic_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/dynamic_pool.hpp -------------------------------------------------------------------------------- /src/common/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/elf.h -------------------------------------------------------------------------------- /src/common/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/filesystem.hpp -------------------------------------------------------------------------------- /src/common/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/functions.hpp -------------------------------------------------------------------------------- /src/common/linked_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/linked_list.hpp -------------------------------------------------------------------------------- /src/common/literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/literals.hpp -------------------------------------------------------------------------------- /src/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/log.cpp -------------------------------------------------------------------------------- /src/common/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/log.hpp -------------------------------------------------------------------------------- /src/common/lz4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/lz4.cpp -------------------------------------------------------------------------------- /src/common/lz4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/lz4.hpp -------------------------------------------------------------------------------- /src/common/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/macros.hpp -------------------------------------------------------------------------------- /src/common/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/memory.hpp -------------------------------------------------------------------------------- /src/common/objc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/objc.hpp -------------------------------------------------------------------------------- /src/common/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/platform.hpp -------------------------------------------------------------------------------- /src/common/pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/pool.hpp -------------------------------------------------------------------------------- /src/common/static_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/static_pool.hpp -------------------------------------------------------------------------------- /src/common/stb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/stb.cpp -------------------------------------------------------------------------------- /src/common/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/string.hpp -------------------------------------------------------------------------------- /src/common/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/time.hpp -------------------------------------------------------------------------------- /src/common/toml_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/toml_helper.hpp -------------------------------------------------------------------------------- /src/common/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/traits.hpp -------------------------------------------------------------------------------- /src/common/type_aliases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/type_aliases.hpp -------------------------------------------------------------------------------- /src/common/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/common/types.hpp -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/audio/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/const.hpp -------------------------------------------------------------------------------- /src/core/audio/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/core.hpp -------------------------------------------------------------------------------- /src/core/audio/cubeb/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/cubeb/const.hpp -------------------------------------------------------------------------------- /src/core/audio/cubeb/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/cubeb/core.cpp -------------------------------------------------------------------------------- /src/core/audio/cubeb/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/cubeb/core.hpp -------------------------------------------------------------------------------- /src/core/audio/cubeb/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/cubeb/stream.cpp -------------------------------------------------------------------------------- /src/core/audio/cubeb/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/cubeb/stream.hpp -------------------------------------------------------------------------------- /src/core/audio/null/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/null/core.cpp -------------------------------------------------------------------------------- /src/core/audio/null/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/null/core.hpp -------------------------------------------------------------------------------- /src/core/audio/null/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/null/stream.cpp -------------------------------------------------------------------------------- /src/core/audio/null/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/null/stream.hpp -------------------------------------------------------------------------------- /src/core/audio/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/audio/stream.hpp -------------------------------------------------------------------------------- /src/core/c_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/c_api.cpp -------------------------------------------------------------------------------- /src/core/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/c_api.h -------------------------------------------------------------------------------- /src/core/debugger/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/debugger/const.hpp -------------------------------------------------------------------------------- /src/core/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/debugger/debugger.cpp -------------------------------------------------------------------------------- /src/core/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/debugger/debugger.hpp -------------------------------------------------------------------------------- /src/core/debugger/debugger_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/debugger/debugger_manager.cpp -------------------------------------------------------------------------------- /src/core/debugger/debugger_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/debugger/debugger_manager.hpp -------------------------------------------------------------------------------- /src/core/debugger/gdb_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/debugger/gdb_server.cpp -------------------------------------------------------------------------------- /src/core/debugger/gdb_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/debugger/gdb_server.hpp -------------------------------------------------------------------------------- /src/core/emulation_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/emulation_context.cpp -------------------------------------------------------------------------------- /src/core/emulation_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/emulation_context.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/album/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/album/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/applet_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/applet_base.cpp -------------------------------------------------------------------------------- /src/core/horizon/applets/applet_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/applet_base.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/controller/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/controller/applet.cpp -------------------------------------------------------------------------------- /src/core/horizon/applets/controller/applet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/controller/applet.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/controller/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/controller/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/error/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/error/applet.cpp -------------------------------------------------------------------------------- /src/core/horizon/applets/error/applet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/error/applet.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/error/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/error/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/mii_edit/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/mii_edit/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/player_select/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/player_select/applet.cpp -------------------------------------------------------------------------------- /src/core/horizon/applets/player_select/applet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/player_select/applet.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/player_select/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/player_select/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/software_keyboard/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/software_keyboard/applet.cpp -------------------------------------------------------------------------------- /src/core/horizon/applets/software_keyboard/applet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/software_keyboard/applet.hpp -------------------------------------------------------------------------------- /src/core/horizon/applets/software_keyboard/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/applets/software_keyboard/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/display/binder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/display/binder.cpp -------------------------------------------------------------------------------- /src/core/horizon/display/binder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/display/binder.hpp -------------------------------------------------------------------------------- /src/core/horizon/display/display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/display/display.hpp -------------------------------------------------------------------------------- /src/core/horizon/display/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/display/driver.cpp -------------------------------------------------------------------------------- /src/core/horizon/display/driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/display/driver.hpp -------------------------------------------------------------------------------- /src/core/horizon/display/layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/display/layer.cpp -------------------------------------------------------------------------------- /src/core/horizon/display/layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/display/layer.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/content_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/content_archive.cpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/content_archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/content_archive.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/device.cpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/device.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/directory.cpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/directory.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/entry_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/entry_base.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/file_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/file_base.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/file_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/file_view.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/filesystem.cpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/filesystem.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/host_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/host_file.cpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/host_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/host_file.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/partition_filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/partition_filesystem.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/ram_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/ram_file.hpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/romfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/romfs.cpp -------------------------------------------------------------------------------- /src/core/horizon/filesystem/romfs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/filesystem/romfs.hpp -------------------------------------------------------------------------------- /src/core/horizon/firmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/firmware.cpp -------------------------------------------------------------------------------- /src/core/horizon/firmware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/firmware.hpp -------------------------------------------------------------------------------- /src/core/horizon/hid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/hid.hpp -------------------------------------------------------------------------------- /src/core/horizon/input_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/input_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/input_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/input_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/applet_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/applet_state.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/applet_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/applet_state.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/auto_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/auto_object.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/code_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/code_memory.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/event.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/guest_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/guest_thread.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/guest_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/guest_thread.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/client_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/client_port.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/client_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/client_port.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/client_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/client_session.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/client_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/client_session.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/cmif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/cmif.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/const.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/port.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/port.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/server_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/server_port.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/server_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/server_port.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/server_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/server_session.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/server_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/server_session.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/service_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/service_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/session.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/hipc/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/hipc/session.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/host_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/host_thread.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/host_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/host_thread.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/kernel.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/kernel.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/process.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/process.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/process_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/process_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/process_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/process_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/shared_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/shared_memory.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/shared_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/shared_memory.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/strong_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/strong_ref.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/synchronization_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/synchronization_object.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/synchronization_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/synchronization_object.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/thread.cpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/thread.hpp -------------------------------------------------------------------------------- /src/core/horizon/kernel/transfer_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/kernel/transfer_memory.hpp -------------------------------------------------------------------------------- /src/core/horizon/loader/homebrew_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/homebrew_loader.cpp -------------------------------------------------------------------------------- /src/core/horizon/loader/homebrew_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/homebrew_loader.hpp -------------------------------------------------------------------------------- /src/core/horizon/loader/loader_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/loader_base.cpp -------------------------------------------------------------------------------- /src/core/horizon/loader/loader_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/loader_base.hpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nca_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nca_loader.cpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nca_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nca_loader.hpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nro_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nro_loader.cpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nro_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nro_loader.hpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nso_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nso_loader.cpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nso_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nso_loader.hpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nsp_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nsp_loader.cpp -------------------------------------------------------------------------------- /src/core/horizon/loader/nsp_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/nsp_loader.hpp -------------------------------------------------------------------------------- /src/core/horizon/loader/xci_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/xci_loader.cpp -------------------------------------------------------------------------------- /src/core/horizon/loader/xci_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/loader/xci_loader.hpp -------------------------------------------------------------------------------- /src/core/horizon/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/os.cpp -------------------------------------------------------------------------------- /src/core/horizon/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/os.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service_for_administrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service_for_administrator.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service_for_administrator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service_for_administrator.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service_for_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service_for_application.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service_for_application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service_for_application.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service_for_system_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service_for_system_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/account_service_for_system_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/account_service_for_system_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/baas/manager_for_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/baas/manager_for_application.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/baas/manager_for_application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/baas/manager_for_application.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/baas/manager_for_system_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/baas/manager_for_system_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/baas/manager_for_system_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/baas/manager_for_system_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/baas_access_token_accessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/baas_access_token_accessor.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/baas_access_token_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/baas_access_token_accessor.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/internal/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/internal/user.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/internal/user_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/internal/user_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/internal/user_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/internal/user_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/notifier.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/notifier.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/profile.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/account/profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/account/profile.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/all_system_applet_proxies_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/all_system_applet_proxies_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/all_system_applet_proxies_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/all_system_applet_proxies_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/apm_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/apm_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/apm_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/apm_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_creator.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_creator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_creator.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_functions.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_functions.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_proxy.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_proxy.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_proxy_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_proxy_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/application_proxy_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/application_proxy_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/audio_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/audio_controller.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/audio_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/audio_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/common_state_getter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/common_state_getter.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/common_state_getter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/common_state_getter.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/debug_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/debug_functions.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/debug_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/debug_functions.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/display_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/display_controller.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/display_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/display_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/global_state_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/global_state_controller.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/global_state_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/global_state_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/home_menu_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/home_menu_functions.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/home_menu_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/home_menu_functions.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_accessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_accessor.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_accessor.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_creator.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_creator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_creator.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_proxy.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_proxy.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_self_accessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_self_accessor.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/library_applet_self_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/library_applet_self_accessor.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/overlay_applet_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/overlay_applet_proxy.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/overlay_applet_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/overlay_applet_proxy.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/overlay_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/overlay_functions.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/overlay_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/overlay_functions.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/process_winding_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/process_winding_controller.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/process_winding_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/process_winding_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/proxy.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/proxy.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/self_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/self_controller.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/self_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/self_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/session.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/session.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/storage.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/storage.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/storage_accessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/storage_accessor.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/storage_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/storage_accessor.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/system_applet_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/system_applet_proxy.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/system_applet_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/system_applet_proxy.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/window_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/window_controller.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/am/window_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/am/window_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/aocsrv/add_on_content_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/aocsrv/add_on_content_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/aocsrv/add_on_content_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/aocsrv/add_on_content_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/apm/manager_privileged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/apm/manager_privileged.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/apm/manager_privileged.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/apm/manager_privileged.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/apm/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/apm/session.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/apm/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/apm/session.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_device.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_device.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_out.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_out.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_out_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_out_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_out_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_out_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_renderer.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_renderer.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_renderer_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_renderer_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/audio_renderer_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/audio_renderer_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/audio/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/audio/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/codec/hardware_opus_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/codec/hardware_opus_decoder.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/codec/hardware_opus_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/codec/hardware_opus_decoder.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/codec/hardware_opus_decoder_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/codec/hardware_opus_decoder_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/codec/hardware_opus_decoder_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/codec/hardware_opus_decoder_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/err/context/writer_for_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/err/context/writer_for_application.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/err/context/writer_for_application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/err/context/writer_for_application.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fatalsrv/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fatalsrv/service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/fatalsrv/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fatalsrv/service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/friends/friend_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/friends/friend_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/friends/friend_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/friends/friend_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/friends/notification_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/friends/notification_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/friends/notification_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/friends/notification_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/friends/service_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/friends/service_creator.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/friends/service_creator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/friends/service_creator.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/directory.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/directory.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/file.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/file.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/filesystem.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/filesystem.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/filesystem_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/filesystem_proxy.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/filesystem_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/filesystem_proxy.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/save_data_info_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/save_data_info_reader.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/save_data_info_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/save_data_info_reader.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/storage.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/fssrv/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/fssrv/storage.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/active_vibration_device_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/active_vibration_device_list.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/active_vibration_device_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/active_vibration_device_list.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/applet_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/applet_resource.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/applet_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/applet_resource.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/hid_debug_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/hid_debug_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/hid_debug_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/hid_debug_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/hid_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/hid_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/hid_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/hid_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/hid_system_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/hid_system_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/hid/hid_system_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hid/hid_system_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/hosbinder/hos_binder_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hosbinder/hos_binder_driver.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/hosbinder/hos_binder_driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hosbinder/hos_binder_driver.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/hosbinder/parcel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/hosbinder/parcel.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/i2c/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/i2c/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/i2c/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/i2c/manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/i2c/manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/i2c/manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/i2c/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/i2c/session.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/i2c/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/i2c/session.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ins/receiver_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ins/receiver_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ins/receiver_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ins/receiver_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/irsensor/ir_sensor_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/irsensor/ir_sensor_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/irsensor/ir_sensor_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/irsensor/ir_sensor_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/lbl/lbl_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/lbl/lbl_controller.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/lbl/lbl_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/lbl/lbl_controller.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/lm/log_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/lm/log_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/lm/log_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/lm/log_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/lm/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/lm/logger.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/lm/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/lm/logger.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/mii/database_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/mii/database_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/mii/database_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/mii/database_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/mii/static_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/mii/static_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/mii/static_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/mii/static_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/mmnv/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/mmnv/request.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/mmnv/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/mmnv/request.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ncm/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ncm/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ncm/content_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ncm/content_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ncm/content_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ncm/content_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfc/nfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfc/nfc.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfc/nfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfc/nfc.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfc/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfc/user.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfc/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfc/user.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfc/user_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfc/user_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfc/user_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfc/user_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfp/nfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfp/nfp.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfp/nfp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfp/nfp.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfp/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfp/user.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfp/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfp/user.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfp/user_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfp/user_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nfp/user_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nfp/user_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nifm/general_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nifm/general_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nifm/general_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nifm/general_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nifm/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nifm/request.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nifm/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nifm/request.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nifm/static_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nifm/static_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nifm/static_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nifm/static_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/npns/npns_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/npns/npns_system.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/npns/npns_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/npns/npns_system.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ns/application_manager_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ns/application_manager_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ns/application_manager_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ns/application_manager_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ns/const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ns/const.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ns/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ns/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ns/service_getter_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ns/service_getter_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ns/service_getter_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ns/service_getter_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nsd/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nsd/manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nsd/manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nsd/manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/channel_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/channel_base.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/channel_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/channel_base.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/fd_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/fd_base.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvdisp_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvdisp_ctrl.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvdisp_ctrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvdisp_ctrl.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvdisp_disp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvdisp_disp.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvdisp_disp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvdisp_disp.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_as_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_as_gpu.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_as_gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_as_gpu.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl_gpu.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl_gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_ctrl_gpu.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_gpu.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_gpu.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_nvdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_nvdec.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_nvdec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_nvdec.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_nvjpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_nvjpg.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_nvjpg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_nvjpg.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_vic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_vic.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvhost_vic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvhost_vic.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvmap.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvmap.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvsched_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvsched_ctrl.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/ioctl/nvsched_ctrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/ioctl/nvsched_ctrl.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/nvdrv_services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/nvdrv_services.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/nvdrv/nvdrv_services.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/nvdrv/nvdrv_services.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/oe/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/oe/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/omm/operation_mode_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/omm/operation_mode_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/omm/operation_mode_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/omm/operation_mode_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ovln/sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ovln/sender.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ovln/sender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ovln/sender.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ovln/sender_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ovln/sender_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ovln/sender_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ovln/sender_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pctl/parental_control_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pctl/parental_control_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pctl/parental_control_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pctl/parental_control_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pctl/parental_control_service_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pctl/parental_control_service_factory.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pctl/parental_control_service_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pctl/parental_control_service_factory.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pcv/pcv_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pcv/pcv_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pcv/pcv_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pcv/pcv_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pdm/query_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pdm/query_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pdm/query_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pdm/query_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/detail/platform_service_manager_for_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/detail/platform_service_manager_for_system.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/detail/platform_service_manager_for_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/detail/platform_service_manager_for_system.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/internal/shared_font_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/internal/shared_font_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/internal/shared_font_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/internal/shared_font_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/shared_font_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/shared_font_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/shared_font_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/shared_font_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/sharedresource/platform_shared_resource_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/sharedresource/platform_shared_resource_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pl/sharedresource/platform_shared_resource_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pl/sharedresource/platform_shared_resource_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pm/boot_mode_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pm/boot_mode_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pm/boot_mode_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pm/boot_mode_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pm/debug_monitor_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pm/debug_monitor_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pm/debug_monitor_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pm/debug_monitor_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/pm/information_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pm/information_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/pm/information_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/pm/information_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/prepo/prepo_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/prepo/prepo_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/prepo/prepo_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/prepo/prepo_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/psc/pm_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psc/pm_module.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/psc/pm_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psc/pm_module.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/psc/pm_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psc/pm_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/psc/pm_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psc/pm_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/psm/psm_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psm/psm_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/psm/psm_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psm/psm_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/psm/psm_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psm/psm_session.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/psm/psm_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/psm/psm_session.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ro/detail/ro_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ro/detail/ro_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ro/detail/ro_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ro/detail/ro_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/factory_settings_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/factory_settings_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/factory_settings_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/factory_settings_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/nx_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/nx_settings.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/nx_settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/nx_settings.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/settings_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/settings_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/settings_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/settings_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/system_settings_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/system_settings_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/settings/system_settings_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/settings/system_settings_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/sm/user_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/sm/user_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/sm/user_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/sm/user_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/socket/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/socket/client.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/socket/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/socket/client.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/socket/resolver/resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/socket/resolver/resolver.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/socket/resolver/resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/socket/resolver/resolver.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/spl/general_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/spl/general_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/spl/general_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/spl/general_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/spl/random_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/spl/random_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/spl/random_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/spl/random_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/spsm/power_state_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/spsm/power_state_interface.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/spsm/power_state_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/spsm/power_state_interface.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ssl/sf/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ssl/sf/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ssl/sf/ssl_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ssl/sf/ssl_context.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ssl/sf/ssl_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ssl/sf/ssl_context.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ssl/sf/ssl_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ssl/sf/ssl_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ssl/sf/ssl_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ssl/sf/ssl_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/internal/time_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/internal/time_manager.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/internal/time_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/internal/time_manager.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/static_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/static_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/static_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/static_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/steady_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/steady_clock.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/steady_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/steady_clock.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/system_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/system_clock.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/system_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/system_clock.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/time_zone_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/time_zone_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/timesrv/time_zone_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/timesrv/time_zone_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/ts/measurement_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ts/measurement_server.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/ts/measurement_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/ts/measurement_server.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/usb/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/usb/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/usb/hs/client_root_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/usb/hs/client_root_session.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/usb/hs/client_root_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/usb/hs/client_root_session.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/application_display_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/application_display_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/application_display_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/application_display_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/application_root_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/application_root_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/application_root_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/application_root_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/display_service_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/display_service_base.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/display_service_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/display_service_base.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/manager_display_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/manager_display_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/manager_display_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/manager_display_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/manager_root_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/manager_root_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/manager_root_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/manager_root_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/system_display_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/system_display_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/system_display_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/system_display_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/system_root_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/system_root_service.cpp -------------------------------------------------------------------------------- /src/core/horizon/services/visrv/system_root_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/services/visrv/system_root_service.hpp -------------------------------------------------------------------------------- /src/core/horizon/ui/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/ui/const.hpp -------------------------------------------------------------------------------- /src/core/horizon/ui/handler_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/horizon/ui/handler_base.hpp -------------------------------------------------------------------------------- /src/core/hw/generic_mmu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/generic_mmu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/cpu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/cpu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/cpu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/cpu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/memory.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/mmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/mmu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/mmu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/mmu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/thread.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/dynarmic/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/dynarmic/thread.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/cpu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/cpu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/memory.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/mmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/mmu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/mmu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/mmu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/page_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/page_allocator.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/page_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/page_allocator.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/page_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/page_table.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/page_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/page_table.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/thread.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/hypervisor/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/hypervisor/thread.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/memory.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/mmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/mmu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/mmu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/mmu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/thread.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/cpu/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/cpu/thread.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/2d.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/2d.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/3d.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/3d.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/compute.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/compute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/compute.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/copy.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/copy.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/engine_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/engine_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/inline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/inline.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/inline.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/inline_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/inline_base.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/engines/inline_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/engines/inline_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/gmmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/gmmu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/gmmu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/gmmu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/gpu.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/gpu.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/macro/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/macro/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/macro/driver_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/macro/driver_base.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/macro/driver_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/macro/driver_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/macro/interpreter/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/macro/interpreter/driver.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/macro/interpreter/driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/macro/interpreter/driver.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/memory_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/memory_util.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/memory_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/memory_util.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/pfifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/pfifo.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/pfifo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/pfifo.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/buffer_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/buffer_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/buffer_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/buffer_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/buffer_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/buffer_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/const.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/index_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/index_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/index_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/index_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/index_decoders.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/index_decoders.inc -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/blit_pipeline_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/blit_pipeline_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/blit_pipeline_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/blit_pipeline_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/buffer.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/buffer.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/clear_color_pipeline_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/clear_color_pipeline_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/clear_color_pipeline_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/clear_color_pipeline_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/clear_depth_pipeline_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/clear_depth_pipeline_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/clear_depth_pipeline_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/clear_depth_pipeline_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/depth_stencil_state_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/depth_stencil_state_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/depth_stencil_state_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/depth_stencil_state_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/impl.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/maxwell_to_mtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/maxwell_to_mtl.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/maxwell_to_mtl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/maxwell_to_mtl.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/pipeline.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/pipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/pipeline.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/render_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/render_pass.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/render_pass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/render_pass.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/renderer.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/renderer.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/sampler.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/sampler.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/shader.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/shader.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/texture.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/metal/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/metal/texture.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/pipeline_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/pipeline_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/pipeline_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/pipeline_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/pipeline_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/pipeline_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/render_pass_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/render_pass_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/render_pass_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/render_pass_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/render_pass_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/render_pass_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/renderer_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/renderer_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/sampler_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/sampler_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/sampler_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/sampler_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/sampler_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/sampler_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/cfg.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/cfg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/cfg.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/memory_analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/memory_analyzer.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/memory_analyzer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/analyzer/memory_analyzer.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/emitter.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/emitter.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/emitter.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/emitter.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/msl/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/msl/emitter.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/msl/emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/codegen/lang/msl/emitter.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/const.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/const.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decoder/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decoder/decoder.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decoder/decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decoder/decoder.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decoder/tables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decoder/tables.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decompiler.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decompiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/decompiler.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/block.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/builder.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/function.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/instruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/instruction.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/module.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/shader_decompiler/ir/value.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/texture_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/texture_base.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/texture_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/texture_cache.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/texture_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/texture_cache.hpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/texture_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/texture_decoder.cpp -------------------------------------------------------------------------------- /src/core/hw/tegra_x1/gpu/renderer/texture_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/hw/tegra_x1/gpu/renderer/texture_decoder.hpp -------------------------------------------------------------------------------- /src/core/input/apple_gc/controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/apple_gc/controller.hpp -------------------------------------------------------------------------------- /src/core/input/apple_gc/controller.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/apple_gc/controller.mm -------------------------------------------------------------------------------- /src/core/input/apple_gc/device_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/apple_gc/device_list.hpp -------------------------------------------------------------------------------- /src/core/input/apple_gc/device_list.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/apple_gc/device_list.mm -------------------------------------------------------------------------------- /src/core/input/apple_gc/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/apple_gc/keyboard.hpp -------------------------------------------------------------------------------- /src/core/input/apple_gc/keyboard.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/apple_gc/keyboard.mm -------------------------------------------------------------------------------- /src/core/input/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/const.hpp -------------------------------------------------------------------------------- /src/core/input/controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/controller.hpp -------------------------------------------------------------------------------- /src/core/input/cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/cursor.hpp -------------------------------------------------------------------------------- /src/core/input/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/device.hpp -------------------------------------------------------------------------------- /src/core/input/device_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/device_list.hpp -------------------------------------------------------------------------------- /src/core/input/device_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/device_manager.cpp -------------------------------------------------------------------------------- /src/core/input/device_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/device_manager.hpp -------------------------------------------------------------------------------- /src/core/input/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/keyboard.hpp -------------------------------------------------------------------------------- /src/core/input/npad_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/npad_config.cpp -------------------------------------------------------------------------------- /src/core/input/npad_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/input/npad_config.hpp -------------------------------------------------------------------------------- /src/core/title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/core/title.hpp -------------------------------------------------------------------------------- /src/frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /src/frontend/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/Info.plist.in -------------------------------------------------------------------------------- /src/frontend/hydra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/hydra.icns -------------------------------------------------------------------------------- /src/frontend/native/cocoa/native.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/native/cocoa/native.hpp -------------------------------------------------------------------------------- /src/frontend/native/cocoa/native.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/native/cocoa/native.mm -------------------------------------------------------------------------------- /src/frontend/sdl3/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/sdl3/const.hpp -------------------------------------------------------------------------------- /src/frontend/sdl3/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/sdl3/cursor.cpp -------------------------------------------------------------------------------- /src/frontend/sdl3/cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/sdl3/cursor.hpp -------------------------------------------------------------------------------- /src/frontend/sdl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/sdl3/main.cpp -------------------------------------------------------------------------------- /src/frontend/sdl3/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/sdl3/window.cpp -------------------------------------------------------------------------------- /src/frontend/sdl3/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/sdl3/window.hpp -------------------------------------------------------------------------------- /src/frontend/swiftui/Api.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Api.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/ContentView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/EmulationToolbarItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/EmulationToolbarItems.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/EmulationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/EmulationView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Game.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/GameListToolbarItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/GameListToolbarItems.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/GameListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/GameListView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/GamePreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/GamePreview.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/GameStopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/GameStopView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/HydraApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/HydraApp.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/MenuCommands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/MenuCommands.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/MetalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/MetalView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/AudioSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/AudioSettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/CpuSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/CpuSettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/DebugSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/DebugSettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/GeneralSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/GeneralSettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/GraphicsSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/GraphicsSettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/SettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/SystemSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/SystemSettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/UserAvatarEditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/UserAvatarEditorView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/UserAvatarPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/UserAvatarPickerView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/UserAvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/UserAvatarView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/UserEditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/UserEditorView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/UserPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/UserPreview.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/Settings/UserSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/Settings/UserSettingsView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/debugger/DebuggerListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/debugger/DebuggerListView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/debugger/DebuggerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/debugger/DebuggerView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/debugger/DebuggersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/debugger/DebuggersView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/debugger/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/debugger/Message.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/debugger/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/debugger/MessageView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/debugger/ThreadDebuggerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/debugger/ThreadDebuggerView.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/ClickableListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/ClickableListItem.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/EditablePathList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/EditablePathList.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/EditableStringList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/EditableStringList.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/Error.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/GameLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/GameLoader.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/Math.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/Math.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/StringList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/StringList.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/helpers/UrlResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/helpers/UrlResolver.swift -------------------------------------------------------------------------------- /src/frontend/swiftui/macos/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamoZ256/hydra/HEAD/src/frontend/swiftui/macos/AppDelegate.swift --------------------------------------------------------------------------------